/* ============================================
   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 */
.simple-8b25 p,
.tooltip-bright-80d4,
.link-action-e199,
.tabs-92ca,
.popup_3873,
.west_8c07,
.in-e5e5,
.banner-fresh-1ab3 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.dynamic_1428 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.dynamic_1428 > *,
.menu_clean_9c21,
.simple-8b25,
.bottom-b24e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .dynamic_1428 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .dynamic_1428 {
    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 === */
.cold-5d45 {
  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 */
.cold-5d45.red_64cb {
  box-shadow: var(--shadow-md);
}

.badge_light_7ad1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.overlay_complex_8b26 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.picture_967b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.dark_ac69 {
  display: none;
}

/* Hide mobile actions on desktop */
.grid_action_1aeb {
  display: none;
}

.widget_first_f3b2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.widget_first_f3b2 a:hover,
.widget_first_f3b2 a.fn-active-0540 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.texture_cold_0751 {
  margin-left: 1rem;
}

.hot-3a93 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tooltip_e2b8,
.dynamic-ed2c {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.tooltip_e2b8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tooltip_e2b8: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;
}

.dynamic-ed2c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.dynamic-ed2c:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.tooltip_e2b8 svg,
.dynamic-ed2c svg {
  flex-shrink: 0;
}

.west_5072 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.primary-gas-aceb {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.primary-gas-aceb::before,
.primary-gas-aceb::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.primary-gas-aceb::before {
  top: -7px;
}

.primary-gas-aceb::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hot_8316 {
  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 === */
.bronze_3ce5 {
  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);
}

.iron_443c {
  margin: 0 0 2rem;
  text-align: center;
}

.hard-c0e5 {
  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;
}

.hard-c0e5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.container_5698 {
  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);
}

.container_5698 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.stale-dad2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.element_selected_5523 {
  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;
}

.element_selected_5523:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.solid-2ad3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.yellow_0d67 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.fast-c526 {
  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);
}

.fast-c526 .white-4d1f {
  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;
}

.fast-c526 .white-4d1f svg {
  flex-shrink: 0;
}

.fast-c526 .sort-82ef {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.fast-c526 .sort-82ef: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);
}

.fast-c526 .selected-412b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.fast-c526 .selected-412b: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) {
  .bronze_3ce5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hard-c0e5 {
    max-width: 100%;
  }

  .stale-dad2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .element_selected_5523 {
    padding: 1rem;
  }

  .solid-2ad3 {
    font-size: 1.5rem;
  }

  .yellow_0d67 {
    font-size: 0.75rem;
  }

  .container_5698 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .fast-c526 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .fast-c526 .white-4d1f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stale-dad2 {
    grid-template-columns: 1fr;
  }
}

.pink-280f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.aside-stale-fda8 {
  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 === */
.cold-2342 {
  margin-bottom: 2.5rem;
}

.photo_e666 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.pink-280f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.list_bronze_9b28 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-bottom-df52 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.highlight-93e1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.description_gold_0b31 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.secondary_00fd {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.image_5dc0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover_283e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover_283e svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.gallery-52bd {
  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);
}

.avatar-16e2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.west_fb8a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.image-slow-b180 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.motion_32d1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.panel_active_b9d3 {
  display: grid;
  gap: 1rem;
}

.bright_febc {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.lower-b1b3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.detail-black-6b0a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.cold_44e6 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.soft-912e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.info-e744 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.info-e744 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tooltip-bright-80d4 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.tabs_0610 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.paragraph_prev_b009 {
  display: grid;
  gap: 2rem;
}

.pattern-9146 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.article-bottom-df52 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.list_bronze_9b28 {
  flex: 1;
}

.description_gold_0b31 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.description_gold_0b31 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal_77be {
  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;
}

.secondary_00fd {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.huge-754a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.huge-754a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.breadcrumb_a559 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.breadcrumb_a559 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.soft-2225 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.soft-2225 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.soft-2225 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.soft-2225 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.disabled_cool_0eee {
  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 === */
.detail_warm_cea9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.panel_77e3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.overlay_2255 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.widget_148d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.widget_148d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.widget_148d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.widget_148d 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;
}

.widget_148d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.widget_148d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.simple-8b25 {
  padding: 3rem 0 5rem;
}

.bottom-b24e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.bottom-b24e.narrow_1678 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.link-action-e199 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.sort_624d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.slow_a2b1 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.slow_a2b1 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.photo_0626 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.slider-warm-d27b {
  text-align: center;
}

.heading-lite-5074 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.secondary_active_9aa5 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.alert_old_aa93 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.west_8c07 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.tabs-92ca {
  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;
}

.tabs-92ca * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tabs-92ca:hover {
  box-shadow: var(--shadow-lg);
}

.tabs-92ca.backdrop-2303 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tabs-92ca h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tabs-92ca ul {
  margin: 1rem 0;
}

.tabs-92ca li {
  margin-bottom: 0.75rem;
}

.feature_right_829e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.soft_8bfc {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.soft_8bfc a {
  font-weight: 600;
}

/* === Data Tables === */
.footer-basic-a8d3 {
  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;
}

.footer-basic-a8d3 table {
  width: 100%;
  min-width: 600px;
}

.footer-basic-a8d3 thead {
  background-color: var(--primary-color);
  color: white;
}

.footer-basic-a8d3 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer-basic-a8d3 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-basic-a8d3 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.footer-basic-a8d3 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.gold-f631 {
  list-style: none;
  margin: 1.5rem 0;
}

.gold-f631 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.gold-f631 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.detail_focused_0651::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-0540::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 === */
.left_8207 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.primary-41ae {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.primary-41ae img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.primary-41ae strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.primary-41ae span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.left_8207 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.in-e5e5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.in-e5e5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.green-96a3 {
  position: relative;
  margin-bottom: 3rem;
}

.list_8f04 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.list_8f04 .gradient_6e25 {
  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;
}

.cold_dbdf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.cold_dbdf h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.cold_dbdf ul {
  margin: 1rem 0;
}

.cold_dbdf li {
  margin-bottom: 0.75rem;
}

.feature-narrow-ff59 {
  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 === */
.frame_smooth_f523 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.frame_smooth_f523 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.out-8d3a {
  list-style: none;
  margin: 1.5rem 0;
}

.out-8d3a li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.out-8d3a a {
  font-weight: 600;
}

.avatar-short-b756 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.banner-fresh-1ab3 {
  margin: 2.5rem 0;
}

.video-8a94 {
  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;
}

.video-8a94:hover {
  box-shadow: var(--shadow-lg);
}

.video-8a94.icon-0510 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.active-east-a601 {
  flex-shrink: 0;
}

.active-east-a601 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);
}

.detail-39f9 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.button_add5,
.surface-blue-065c,
.component-ae65 {
  width: 100%;
  margin: 1.5rem 0;
}

.button_71fa {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.button_71fa strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.bottom_5c5d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.bottom_5c5d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.banner-9287 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.banner-9287 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.section-79dc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.mini_65c1 {
  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;
}

.mini_65c1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.mini_65c1.tall_433f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.mini_65c1 .item-6452 {
  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;
}

.mini_65c1 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.main-east-5ab1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.avatar-ed1f {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.avatar-ed1f label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.accent_6eef {
  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 === */
.white-4d1f {
  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;
}

.sort-82ef {
  background-color: var(--primary-color);
  color: white;
}

.sort-82ef:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.selected-412b {
  background-color: var(--text-secondary);
  color: white;
}

.selected-412b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.filter-87a6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-87a6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.photo-f7a4 {
  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;
}

.photo-f7a4:hover {
  background-color: var(--primary-dark);
}

.shade_2279 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.caption-8d96 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.photo-thick-6181 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.module_iron_03eb {
  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 === */
.action-6437 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.outline_1bc0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.outline_1bc0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.advanced-de94 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.filter_fixed_6de1 {
  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;
}

.mask_9633 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.light_f662 {
  list-style: none;
  counter-reset: rank-counter;
}

.light_f662 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.light_f662 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;
}

.popup_23f6 {
  list-style: none;
}

.popup_23f6 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.fluid-07d9 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.gallery-b535 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gallery-b535 .header_4fc5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.gallery-b535 .paragraph-7d10 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pattern-2cca {
  margin-top: 3rem;
}

.icon_6a2a {
  width: 100%;
}

.south-dacf {
  background-color: #fef3c7;
}

.under_76a2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.south_b3e5 {
  margin: 3rem 0;
}

.modal_purple_de90 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.north-61ec {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.north-61ec:hover {
  box-shadow: var(--shadow-lg);
}

.north-61ec.heading-current-97f2 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.shade_3850 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-yellow-b309 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.form-yellow-b309 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.static_1f86 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.north-61ec blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.title-selected-f17e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.highlight-orange-105f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.avatar-8346 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.wide-0212 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.outline-df31 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.narrow_4111 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.caption_dim_219d {
  max-width: 900px;
  margin: 0 auto;
}

.fixed-2339 {
  margin: 2rem 0;
}

.alert-5655 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.alert-5655 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.alert-5655 summary::-webkit-details-marker {
  display: none;
}

.alert-5655 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hard-e691 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.alert-5655[open] .hard-e691 {
  transform: rotate(45deg);
}

.shadow-top-ca92 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow-top-ca92 p:last-child {
  margin-bottom: 0;
}

.column-dim-2716 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.brown_e8ce {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.fluid-b7fb {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.fluid-b7fb p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.fluid-b7fb .white-4d1f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.main_iron_2244 {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail_b501 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.motion-086d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.motion-086d.fn-success-0540 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.feature_warm_0269 {
  font-size: 3rem;
  line-height: 1;
}

.mask_4275 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.module_e0b5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.caption_12b3,
.fluid-9fa3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.caption_12b3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.fluid-9fa3 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.west_716f,
.modal_copper_a37b {
  margin: 1.5rem 0;
}

.west_716f li,
.modal_copper_a37b li {
  margin-bottom: 1rem;
}

.slider_north_50a4 {
  margin: 3rem 0;
}

.pagination_825b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.pagination_825b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pagination_825b ol {
  margin: 1rem 0;
}

.pagination_825b li {
  margin-bottom: 0.75rem;
}

.red_9e71 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.aside_97b8 {
  margin: 2rem 0;
}

.clean-2dbc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.surface-33ac {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.tiny_0b41 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.texture-green-d03d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tag_green_feda {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.accordion-c69f {
  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;
}

.accordion-c69f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.highlight-93e1 {
  flex: 1;
}

.highlight-93e1 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.motion_bc66 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.item-easy-8601 p {
  margin-bottom: 1rem;
}

.main-e1a3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.nav_72b9 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.article-9036 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.article-9036 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.paragraph_8cf5 h3 {
  margin-bottom: 1.5rem;
}

.slider-lite-0ab4 {
  display: grid;
  gap: 2rem;
}

.active-3492 {
  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;
}

.active-3492 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.active-3492 h4 {
  margin: 0 0 0.25rem;
}

.active-3492 p {
  margin: 0;
  font-size: 0.9375rem;
}

.button_9f81 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.section-8230 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.section-8230 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.section-8230 ul {
  margin: 1.5rem 0;
}

.section-8230 li {
  margin-bottom: 0.75rem;
}

.caption-7179 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.image-clean-d688 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.selected-3cf7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.container_19f1 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.container_19f1 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.media_dfca {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.media_dfca a {
  color: rgba(255, 255, 255, 0.8);
}

.over_8ae6 {
  list-style: none;
}

.over_8ae6 li {
  margin-bottom: 0.75rem;
}

.over_8ae6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.over_8ae6 a:hover {
  color: white;
}

.tabs-advanced-3520 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-complex-e596 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.wrapper-slow-f615 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.mini_fe0d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.caption-7d87 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .dynamic_1428 {
    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;
  }

  .iron_daf6 {
    font-size: 1.5rem !important;
  }

  .photo_e666 {
    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 */
  .tabs-92ca,
  .popup_3873,
  .cold_dbdf,
  .detail-39f9,
  .shade_3850,
  .north-61ec,
  .shadow-top-ca92,
  .container_5698,
  .tooltip-bright-80d4,
  .link-action-e199 {
    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 */
  .pink-280f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .list_bronze_9b28 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .article-bottom-df52 {
    flex-shrink: 0;
  }

  .highlight-93e1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .description_gold_0b31,
  .secondary_00fd {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .secondary_00fd {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .picture_967b {
    display: none;
  }

  /* Show mobile actions */
  .grid_action_1aeb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .section-bc51 {
    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;
  }

  .section-bc51 svg {
    flex-shrink: 0;
  }

  .section-bc51 .main_fluid_b20a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .section-bc51 .progress_b9ed {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .progress_glass_7f5f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .wrapper-ba21 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .section-bc51:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .dark_ac69 {
    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;
  }

  .dark_ac69.fn-active-0540 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dark_ac69 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dark_ac69 li:last-child {
    border-bottom: none;
  }

  .dark_ac69 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .widget_first_f3b2 {
    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;
  }

  .widget_first_f3b2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .widget_first_f3b2 li:last-child {
    border-bottom: none;
  }

  .widget_first_f3b2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .texture_cold_0751 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .hot-3a93 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tooltip_e2b8,
  .dynamic-ed2c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tooltip_e2b8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .dynamic-ed2c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .widget_first_f3b2.fn-active-0540 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .west_5072 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .cold-5d45 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .badge_light_7ad1 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hot_8316 {
    margin-top: 0;
  }

  /* Hero section */
  .hot_8316 {
    padding: 2rem 0 1.5rem;
  }

  .photo_e666 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tooltip-bright-80d4 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .bronze_3ce5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hard-c0e5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .stale-dad2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .element_selected_5523 {
    padding: 1rem;
  }

  .solid-2ad3 {
    font-size: 1.5rem;
  }

  .yellow_0d67 {
    font-size: 0.75rem;
  }

  .container_5698 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .fast-c526 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .fast-c526 .white-4d1f {
    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 */
  .overlay_2255 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .video-8a94 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .active-east-a601 {
    margin-bottom: 1rem;
  }

  /* Author */
  .pattern-9146 {
    flex-direction: column;
  }

  .accordion-c69f {
    flex-direction: column;
  }

  /* Quotes */
  .shade_3850 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .module_e0b5 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .texture-green-d03d {
    flex-direction: column;
  }

  .texture-green-d03d .white-4d1f {
    width: 100%;
  }

  /* Version comparison */
  .section-79dc {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .action-6437 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .selected-3cf7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wrapper-slow-f615 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .footer-basic-a8d3,
  .surface-blue-065c,
  .component-6ea7,
  .icon_6a2a,
  .button_add5,
  .component-ae65 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer-basic-a8d3 table,
  .surface-blue-065c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .accent_6eef {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .dynamic_1428 {
    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;
  }

  .iron_daf6 {
    font-size: 1.25rem !important;
  }

  .photo_e666 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .cold-5d45 {
    position: fixed;
  }

  .badge_light_7ad1 {
    padding: 0.625rem 0;
  }

  .overlay_complex_8b26 img {
    height: 26px;
  }

  .widget_first_f3b2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dark_ac69 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .section-bc51 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .section-bc51 svg {
    width: 18px;
    height: 18px;
  }

  .section-bc51 .main_fluid_b20a {
    font-size: 0.7rem;
  }

  .section-bc51 .progress_b9ed {
    font-size: 0.65rem;
  }

  .tooltip_e2b8,
  .dynamic-ed2c {
    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, .dynamic_1428, .menu_clean_9c21, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .bronze_3ce5 {
    padding: 1rem;
  }

  .stale-dad2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .element_selected_5523 {
    padding: 0.875rem;
  }

  .solid-2ad3 {
    font-size: 1.25rem;
  }

  .fast-c526 .white-4d1f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .photo_e666 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .white-4d1f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .shade_2279 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .video-8a94 {
    padding: 1rem;
  }

  .active-east-a601 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .tabs-92ca,
  .tertiary-3eeb,
  .block_2e43,
  .tertiary_20f5 {
    padding: 1rem;
  }
}

@media print {
  .cold-5d45,
  .detail_warm_cea9,
  .west_5072,
  .white-4d1f,
  .image-clean-d688 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .dynamic_1428 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.footer-fbd3 {
  margin-bottom: 3rem;
  text-align: center;
}

.iron_daf6 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.large-f1e5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.info-stale-b0f4,
.article_hard_7044 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.summary_bd95 {
  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;
}

.summary_bd95:hover {
  transform: translateY(-5px);
}

.summary_bd95 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.summary_bd95 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.texture-dafe {
  margin: 3rem 0;
}

.active-56ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cool_dae6 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cool_dae6:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.highlight-gold-34e0 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.title_easy_3a15 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.easy-e80f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.header_1d61 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.picture-1b65 {
  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;
}

.picture-1b65:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.picture-1b65.header_smooth_5db1 {
  border-left: 4px solid var(--primary-color);
}

.west-87ad {
  flex-shrink: 0;
}

.west-87ad svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.accent-solid-315c {
  flex: 1;
}

.accent-solid-315c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.notification-b455 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.table_lite_e2d7,
.pro_3ec9,
.hover_white_fde7 {
  margin-bottom: 1.5rem;
}

.table_lite_e2d7 h4,
.pro_3ec9 h4,
.hover_white_fde7 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.table_lite_e2d7 ul,
.pro_3ec9 ul,
.hover_white_fde7 ul {
  list-style: none;
  padding: 0;
}

.table_lite_e2d7 li,
.pro_3ec9 li,
.hover_white_fde7 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.table_lite_e2d7 li:before,
.pro_3ec9 li:before,
.hover_white_fde7 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.media-tiny-36c6 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.media-tiny-36c6 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;
}

.media-tiny-36c6 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.focused_c785 { margin: 2rem 0; }
.gallery_stone_0603 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gallery_stone_0603 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.logo-first-0a08 p { margin-bottom: 1rem; line-height: 1.7; }
.logo-first-0a08 strong { color: var(--text-primary); }
.logo-first-0a08 ul { list-style: none; padding-left: 0; }
.logo-first-0a08 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.logo-first-0a08 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.main_947a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.menu-dynamic-0313 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.menu-dynamic-0313:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.primary_next_c6de { font-size: 3rem; margin-bottom: 1rem; }
.menu-dynamic-0313 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.menu-dynamic-0313 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.breadcrumb_fixed_da38 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.breadcrumb_fixed_da38 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.widget-fast-a52b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.pink-c58a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.primary_3b76 { text-align: center; }
.aside_plasma_0b7b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.notification-d113 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.media_huge_457f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.popup-orange-cdf1 { margin: 2rem 0; }
.gradient-706f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient-706f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gradient-706f p, .gradient-706f ul { line-height: 1.7; }
.gradient-706f ul { list-style: none; padding-left: 0; }
.gradient-706f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient-706f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.button_8dfd { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.caption-smooth-baf4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.text-north-aeef { text-align: center; }
.paragraph_40ef { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.container-c5e8 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.progress-south-b53b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.tabs-rough-6a6f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.status_448d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.status_448d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.status_448d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.status_448d p, .status_448d ul { line-height: 1.7; }
.status_448d ul { list-style: none; padding-left: 0; }
.status_448d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.status_448d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0cf4 */
.promo-block-x7 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.1;
}
