/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --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.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.description_b054 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.description_b054:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.frame_first_465f {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .frame_first_465f {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .frame_first_465f {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.border_hovered_dcf9):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.border_hovered_dcf9,
header,
.texture-liquid-a04c,
.grid_first_c70d,
.slow-f07d,
.huge_859c,
.tabs-over-dfc4,
.layout-down-a5d0,
.dynamic_fb47 {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.border_hovered_dcf9 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.picture_5b15 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.border_hovered_dcf9.status_green_676e {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.heading-bc53 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.status_3c4c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.first-ace6 img {
  height: 36px;
  width: auto;
  display: block;
}

.out-0e6e {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.search_in_7582 {
  flex: 1;
}

.purple_56f5 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.hidden_ea32 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.hidden_ea32:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.hidden_ea32.fn-active-548f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.tag_green_fa2d {
  position: relative;
}

.down_1f64 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.down_1f64 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.tag_green_fa2d:hover .down_1f64 svg,
.down_1f64[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.right_b1a0 {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.tag_green_fa2d:hover .right_b1a0 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.right_b1a0::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.selected-31c3 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.selected-31c3:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.selected-31c3[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.dirty-d623 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.banner-orange-3261 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.banner-orange-3261:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.banner-orange-3261 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.primary-dark-9ed8 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}

.primary-dark-9ed8:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.primary-dark-9ed8 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.grid_02ed {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.label_5809 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.grid_02ed[aria-expanded="true"] .label_5809:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.grid_02ed[aria-expanded="true"] .label_5809:nth-child(2) {
  opacity: 0;
}

.grid_02ed[aria-expanded="true"] .label_5809:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .search_in_7582 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .search_in_7582::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .search_in_7582.steel-29e2 {
    display: block;
    right: 0;
  }
  
  .purple_56f5 {
    flex-direction: column;
    gap: 0;
  }
  
  .hidden_ea32 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .search_in_7582::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .search_in_7582.steel-29e2::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .search_in_7582 {
    display: none;
  }
  
  .grid_02ed {
    display: flex;
  }
  
  .out-0e6e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .banner-orange-3261,
  .primary-dark-9ed8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tag_green_fa2d {
    position: relative;
  }
  
  .right_b1a0 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .down_1f64[aria-expanded="true"] + .right_b1a0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .selected-31c3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dirty-d623 {
    gap: 8px;
  }
  
  .banner-orange-3261 {
    display: none;
  }
  
  .primary-dark-9ed8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .first-ace6 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .primary-dark-9ed8 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .primary-dark-9ed8 svg {
    width: 14px;
    height: 14px;
  }
  
  .heading-bc53 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.texture-liquid-a04c {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.logo-51b2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.tertiary_tall_9e85 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tertiary_tall_9e85 svg {
  flex-shrink: 0;
}

.tertiary_tall_9e85 a {
  color: var(--color-primary);
  text-decoration: none;
}

.tertiary_tall_9e85 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .logo-51b2 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.grid_first_c70d {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.header-active-5b8a {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-active-5b8a {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.progress-dark-aac7 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.progress-dark-aac7 a {
  color: var(--color-primary);
  text-decoration: none;
}

.progress-dark-aac7 a:hover {
  text-decoration: underline;
}

.disabled_1694 {
  color: var(--color-text-lighter);
}

.border-mini-4525 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .border-mini-4525 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .border-mini-4525 {
    font-size: 1.5rem;
  }
}

.tag-purple-77b9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.accordion_cold_8cea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .accordion_cold_8cea {
    grid-template-columns: 1fr;
  }
}

.gradient-dark-5359 {
  display: flex;
  gap: var(--space-sm);
}

.active_dynamic_28ba {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.last_7bc8 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.last_7bc8 strong {
  font-weight: 600;
  color: var(--color-text);
}

.last_7bc8 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.fast_d1b2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.stone-00f4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_wood_8b7b {
  position: relative;
  text-align: center;
}

.logo_wood_8b7b img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.button_narrow_61b3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.notification_yellow_1fcd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.last-3750 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.bottom-feec {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.component_wide_51be {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.modal-5531 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .header-active-5b8a {
    grid-template-columns: 1fr;
  }
  
  .border-mini-4525 {
    font-size: 1.75rem;
  }
  
  .stone-00f4 {
    order: -1;
    max-width: 100%;
  }
  
  .logo_wood_8b7b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border-mini-4525 {
    font-size: 1.5rem;
  }
  
  .tag-purple-77b9 {
    font-size: 1rem;
  }
  
  .progress-dark-aac7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .logo_wood_8b7b {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.frame-easy-e955 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.table-fresh-7edd {
  background: var(--color-primary);
  color: white;
}

.table-fresh-7edd:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gas-30a7 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.gas-30a7:hover {
  background: var(--color-primary);
  color: white;
}

.box-glass-6c2a {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.box-glass-6c2a:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.dropdown-fixed-5c80 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.left-c5e8 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.slow-f07d {
  padding: var(--space-xl) 0;
  background: white;
}

.button-fresh-ecfe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.disabled_775e {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.disabled_775e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.selected-f02b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.bottom_28de {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hidden_ab45 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.huge_859c {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.motion_97c9 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tag-fresh-1aa6 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.north-5f40 {
  list-style: none;
  counter-reset: toc-counter;
}

.north-5f40 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.north-5f40 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.north-5f40 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.north-5f40 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.tabs-over-dfc4 {
  padding: var(--space-xxl) 0;
}

.slider_bd2b {
  background: var(--color-bg-section);
}

.secondary-smooth-9131 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.aside-f026 {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.shade-red-3013 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.shadow_7299 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.tag-f70a {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .tag-f70a {
    grid-template-columns: 1fr 300px;
  }
}

.status-c445 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.status-c445 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.status-c445 pre,
.status-c445 code {
  overflow-x: auto;
  max-width: 100%;
}

.status-c445 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.status-c445 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.status-c445 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.status-c445 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.status-c445 ul,
.status-c445 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.status-c445 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.status-c445 strong {
  font-weight: 600;
  color: var(--color-text);
}

.status-c445 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.status-c445 a:hover {
  color: var(--color-primary-dark);
}

.component-huge-c649 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.component-huge-c649 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.component-huge-c649 li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .tag-f70a {
    grid-template-columns: 1fr;
  }
  
  .shade-red-3013 {
    font-size: 1.75rem;
  }
  
  .status-c445 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shade-red-3013 {
    font-size: 1.5rem;
  }
  
  .status-c445 h3 {
    font-size: 1.375rem;
  }
  
  .status-c445 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.paragraph-34eb {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.backdrop-over-6737 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.frame-gas-0357 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.wood_cff2 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.main-0411 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.heading-dirty-8761 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.row-wide-25d7 {
  flex-shrink: 0;
}

.south-4ef4 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.medium-e023 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .medium-e023 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.filter-8129,
.image_bright_bc2d,
.dropdown-silver-2618 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.filter-8129 thead,
.image_bright_bc2d thead {
  background: var(--color-primary);
  color: white;
}

.filter-8129 th,
.filter-8129 td,
.image_bright_bc2d th,
.image_bright_bc2d td,
.dropdown-silver-2618 th,
.dropdown-silver-2618 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .filter-8129 th,
  .filter-8129 td,
  .image_bright_bc2d th,
  .image_bright_bc2d td,
  .dropdown-silver-2618 th,
  .dropdown-silver-2618 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .filter-8129,
  .image_bright_bc2d,
  .dropdown-silver-2618 {
    min-width: 600px;
  }
}

.filter-8129 th,
.image_bright_bc2d th,
.dropdown-silver-2618 th {
  font-weight: 600;
}

.filter-8129 tbody tr:hover,
.image_bright_bc2d tbody tr:hover,
.dropdown-silver-2618 tbody tr:hover {
  background: var(--color-bg-alt);
}

.north_5590 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.lower_aa96 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.fast_316d {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.fast_316d h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.element_a8ac {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.element_a8ac h4 {
  color: white;
}

.current_294c {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.purple-391a {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.purple-391a:last-child {
  border-bottom: none;
}

.purple-391a dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.purple-391a dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.glass-1d63 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.status-e014 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.status-e014:hover {
  text-decoration: underline;
}

.notification_9448 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.hero-de8a {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.hero-de8a span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.plasma-16aa {
  font-weight: 600;
  color: white;
}

.link_9898 {
  list-style: none;
  padding: 0;
}

.link_9898 li {
  padding: var(--space-xs) 0;
}

.list-out-0494 {
  color: #4caf50;
}

.active-dim-8eb9 {
  color: #ff9800;
}

.fluid_25a1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.border_67cf {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.large-e2a3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.active-east-4ca6 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.header-hovered-66b9 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.top_cc1b {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.clean-f823 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .clean-f823 {
    grid-template-columns: 1fr;
  }
}

.list_dirty_ea1a {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.list_dirty_ea1a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.logo-fluid-a9d3 {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.3;
}

.list_dirty_ea1a h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.list_dirty_ea1a p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.aside_smooth_4edb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.plasma-16aa {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.button-c36a {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.tabs-large-9f96 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.tabs-large-9f96 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.panel_full_10d8 {
  max-width: 900px;
  margin: 0 auto;
}

.box-silver-04e6 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.breadcrumb-warm-b62b {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .breadcrumb-warm-b62b {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.dynamic_45dd {
  margin-top: var(--space-xxl);
}

.dynamic_45dd h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.module-inner-e9fb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .module-inner-e9fb {
    grid-template-columns: 1fr;
  }
}

.stale_68e8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.green-0e8f {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.popup_8764 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.stale_68e8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.stale_68e8 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.stale_68e8 li {
  padding: var(--space-xs) 0;
  color: white;
}

.stale_68e8 .frame-easy-e955 {
  width: 100%;
  background: white;
}

.green-0e8f .frame-easy-e955 {
  color: #667eea;
}

.popup_8764 .frame-easy-e955 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.mini-5d55 {
  max-width: 900px;
  margin: 0 auto;
}

.column-82df {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.article-tall-c6a6 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.feature-cba8 {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.article-tall-c6a6 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.status-3639 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .article-tall-c6a6 {
    padding: var(--space-md);
  }
  
  .status-3639 {
    padding: var(--space-md);
  }
  
  .nav-b1f0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.module-motion-0014 ol,
.module-motion-0014 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.module-motion-0014 li {
  margin-bottom: var(--space-sm);
}

.module-motion-0014 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.detail-large-a9b2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.button-south-dd63 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.nav-b1f0 {
  margin-top: var(--space-lg);
  text-align: center;
}

.nav-b1f0 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.sort_middle_496e,
.hidden-north-19a6,
.tertiary-643c,
.list_inner_e426 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.secondary_b162 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.fixed-4fcd {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.icon-4ec8 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .icon-4ec8 {
    font-size: 0.625rem;
  }
}

.background_motion_50ba {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.background_motion_50ba:hover {
  background: var(--color-primary-dark);
}

.purple-9821 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.purple-9821 h4 {
  margin-bottom: var(--space-md);
}

.disabled_basic_a165 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.east_53bf {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.panel_warm_1618 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .panel_warm_1618 {
    grid-template-columns: 1fr;
  }
}

.element-hard-0549 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.avatar_west_353f {
  border-color: var(--color-success);
}

.solid_a103 {
  border-color: var(--color-warning);
}

.banner_slow_d1df {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.avatar_west_353f .banner_slow_d1df {
  background: #e8f5e9;
  color: var(--color-success);
}

.solid_a103 .banner_slow_d1df {
  background: #fff3e0;
  color: var(--color-warning);
}

.element-hard-0549 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.element-hard-0549 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.tooltip-11a4 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.avatar-short-a205 {
  margin: var(--space-xxl) 0;
}

.avatar-short-a205 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.avatar-short-a205 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.hovered-dd8d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .hovered-dd8d {
    grid-template-columns: 1fr;
  }
}

.footer_steel_361a {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.footer_steel_361a h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.text_out_5cf5 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.text_out_5cf5 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.hard_1454 {
  margin-top: var(--space-xxl);
}

.component_wood_bcb4 {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-smooth-aabb {
  text-align: center;
}

.sidebar_4d6c {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.sidebar-wide-316e {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.sidebar_4d6c .plasma-16aa {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.border-active-08a6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.filter_445f p {
  margin-bottom: var(--space-md);
}

.status_7661 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .component_wood_bcb4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.outline-tiny-7d5b {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.cold-73c6 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.search-bronze-ca83 {
  margin-bottom: var(--space-xl);
}

.element-in-c854 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.wrapper_fast_52ce {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.gradient-a830 {
  color: var(--color-text-light);
}

.form-cba8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.slider_54cd {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.logo-next-f4f3 {
  font-weight: 600;
  color: var(--color-text);
}

.menu_west_9a8f {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.article_de6e {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.container-2aac {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.border_short_fe16 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.rough_1e9e {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.hovered-2db3 {
  border: 2px solid #4caf50;
}

.hover-new-3aa1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.notification-current-51d6 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.light_c8e4 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.active_92cd {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.breadcrumb-e7bf {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.column-mini-ad43 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.menu_dim_bac3 {
  text-align: right;
}

.menu_dim_bac3 .small-9a36 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.avatar_old_696e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.paragraph-c090 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.paragraph-c090 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.shade-3a35 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.texture_new_d2ec {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-4556 {
  background: #e8f5e9;
  color: #2e7d32;
}

.nav-wide-be80 {
  background: #e3f2fd;
  color: #1565c0;
}

.dirty_a286 {
  background: #fff3e0;
  color: #e65100;
}

.medium_247c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.medium_247c span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.bronze_8cb7 {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.bronze_8cb7:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.button_f1bb {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.list-small-0049 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.list-small-0049 strong {
  color: var(--color-primary);
}

.mask-564c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.gallery-yellow-5978 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.column_cd3b {
  max-width: 900px;
  margin: 0 auto;
}

.hover-2cef {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.dark_dbf6 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dark_dbf6:hover {
  background: var(--color-bg-alt);
}

.breadcrumb-stone-9c43 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dark_dbf6[aria-expanded="true"] .breadcrumb-stone-9c43 {
  transform: rotate(180deg);
}

.sort_59aa {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.sort_59aa h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.sort_59aa ul,
.sort_59aa ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.sort_59aa li {
  margin-bottom: var(--space-xs);
}

.slider_e555 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.column_under_8f30 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.slider_e555 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.plasma_1d21 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.wrapper-iron-7387 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.over-0b90 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.stone-9ddf {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.clean-1c48 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .clean-1c48 {
    grid-template-columns: 1fr;
  }
}

.right_58b0,
.wrapper_basic_14fb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.right_58b0 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.wrapper_basic_14fb {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.right_58b0 h4,
.wrapper_basic_14fb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.right_58b0 ul,
.wrapper_basic_14fb ul {
  list-style: none;
  padding: 0;
}

.right_58b0 li,
.wrapper_basic_14fb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.west-3e57 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .west-3e57 {
    grid-template-columns: 1fr;
  }
}

.gallery-e150 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.red_9303 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.surface_d917 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.gallery-e150 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.gallery-e150 ul {
  list-style: none;
  padding: 0;
}

.gallery-e150 li {
  padding: var(--space-xs) 0;
  color: white;
}

.form-wood-b107 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.form-wood-b107 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-wood-b107 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.bright-a999 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.accordion_new_90a7 {
  font-style: italic;
}

.plasma-2533 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.chip_69d7 {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.chip_69d7 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.chip_69d7 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.preview-dirty-370e {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.layout-down-a5d0 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.dark_93b0 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.solid-4c31 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .solid-4c31 {
    grid-template-columns: 1fr;
  }
}

.cold_0918 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

.cold_0918:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dirty-8c2f {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.cold_0918 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.cold_0918 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.dynamic_fb47 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.popup_dark_e07e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer variant: footer-content (subpages) */
.basic-1306 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.breadcrumb_65e2 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.breadcrumb_65e2 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.next-951a {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-951a li {
  margin-bottom: var(--space-xs);
}

.next-951a a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.next-951a a:hover {
  color: white;
}

.wood-1935 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.wood-1935 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.wood-1935 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.left-da6b {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.left-da6b a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.left-da6b a:hover {
  color: white;
}

.secondary_b5ef > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .popup_dark_e07e,
  .basic-1306 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.hovered-db0f h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.south-e412 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.under_70c1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.under_70c1 .gradient-dark-5359 {
  color: #4caf50;
  font-size: 0.875rem;
}

.row-6402 {
  list-style: none;
  padding: 0;
}

.row-6402 li {
  margin-bottom: var(--space-xs);
}

.row-6402 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.row-6402 a:hover {
  color: white;
}

.narrow-3e29 {
  list-style: none;
  padding: 0;
}

.narrow-3e29 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.narrow-3e29 a {
  color: #b0b0b0;
  text-decoration: none;
}

.narrow-3e29 a:hover {
  color: white;
}

.secondary_b5ef {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.selected-936b p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.selected-936b a {
  color: #4caf50;
  text-decoration: none;
}

.brown-4836 {
  font-size: 0.75rem;
  color: #666666;
}

.full_2940 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.full_2940 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.full_2940 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.popup_f557 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.popup_f557:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .secondary_b5ef {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .border-mini-4525 {
    font-size: 2rem;
  }
  
  .shade-red-3013 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .header-active-5b8a,
  .tag-f70a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .clean-f823,
  .panel_warm_1618,
  .module-inner-e9fb,
  .hovered-dd8d,
  .clean-1c48,
  .west-3e57,
  .solid-4c31,
  .popup_dark_e07e,
  .basic-1306 {
    grid-template-columns: 1fr;
  }
  
  .button-fresh-ecfe {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tabs-over-dfc4 {
    padding: var(--space-lg) 0;
  }
  
  .north-5f40 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .north-5f40 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .frame-easy-e955 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .button-fresh-ecfe {
    grid-template-columns: 1fr;
  }
  
  .fast_d1b2,
  .preview-dirty-370e,
  .disabled_basic_a165 {
    flex-direction: column;
    width: 100%;
  }
  
  .dropdown-fixed-5c80,
  .left-c5e8,
  .fast_d1b2 .frame-easy-e955,
  .preview-dirty-370e .frame-easy-e955 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border-mini-4525 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .shade-red-3013 {
    font-size: 1.375rem;
  }
  
  .selected-f02b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .disabled_775e,
  .list_dirty_ea1a,
  .fast_316d,
  .rough_1e9e,
  .column-82df {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .icon-4ec8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .logo-51b2 {
    gap: var(--space-xs);
  }
  
  .tertiary_tall_9e85 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hero-de8a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .sidebar_4d6c {
    width: 150px;
    height: 150px;
  }
  
  .sidebar-wide-316e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .border_hovered_dcf9,
  .texture-liquid-a04c,
  .fast_d1b2,
  .chip_69d7,
  .layout-down-a5d0,
  .dynamic_fb47,
  .grid_02ed {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tabs-over-dfc4 {
    page-break-inside: avoid;
  }
}

/* css-noise: f860 */
.ghost-box-h6 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
