@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --hc-ff-heading: 'Inter', sans-serif;
  --hc-ff-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth !important;
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY RULES FOR HELP CENTER MODULE
   All Body Text & Headings: 'Inter', sans-serif
   ========================================================================== */
*,
body,
.munnottu-help-main,
.hc-navbar-wrapper,
.hc-footer-section,
.tp-footer-redesign,
.hc-article-wrapper,
.hc-article-body,
.hc-category-card,
.hc-breadcrumb,
.hc-search-input,
.hc-search-btn,
.hc-search-tags,
.hc-toc-sidebar,
.hc-feedback-box,
.hc-changelog-item,
h1, h2, h3, h4, h5, h6,
.munnottu-help-main h1,
.munnottu-help-main h2,
.munnottu-help-main h3,
.munnottu-help-main h4,
.munnottu-help-main h5,
.munnottu-help-main h6,
.hc-hero-title,
.hc-category-title,
.hc-article-main-title,
.hc-suggest-title,
.hc-wati-card-title,
.footer-slogan,
.footer-column-title,
.footer-follow-us-text {
  font-family: 'Inter', sans-serif !important;
}

html {
  scroll-behavior: smooth !important;
}

/* --------------------------------------------------------------------------
   1. HERO SMART SEARCH SECTION
   -------------------------------------------------------------------------- */
.hc-hero-section {
  position: relative;
  background: linear-gradient(110deg, #e7eae8 0%, #e3ede7 35%, #d1eada 75%, #c8ebd7 100%) !important;
  padding: 140px 0 65px;
  overflow: hidden;
  color: #0f172a;
  font-family: var(--hc-ff-body);
  border-bottom: 1px solid #dcdfe3;
}

.hc-category-main-content {
  padding-top: 120px !important;
}

@media (max-width: 991px) {
  .hc-hero-section {
    padding: 130px 0 50px !important;
  }
  .hc-category-main-content {
    padding-top: 110px !important;
  }
}

@media (max-width: 575px) {
  .hc-hero-section {
    padding: 100px 0 40px !important;
  }
  .hc-category-main-content {
    padding-top: 90px !important;
  }
}

.hc-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hc-hero-title {
  font-family: var(--hc-ff-heading, inherit) !important;
  font-size: 2.25rem;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hc-hero-subtitle {
  font-family: var(--hc-ff-body, inherit);
  font-size: 1rem;
  color: #475569;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* Hero Search Container & Auto-suggestions */
.hc-search-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hc-search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff !important;
  border: 1px solid rgba(203, 213, 225, 0.7) !important;
  border-radius: 50px !important;
  padding: 4px 6px 4px 20px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-search-input-group:focus-within {
  border-color: #000000 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09) !important;
}

.hc-search-icon {
  width: 18px;
  height: 18px;
  color: #64748b;
  margin-right: 10px;
  flex-shrink: 0;
}

.hc-search-input {
  flex: 1 !important;
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: var(--hc-ff-body, 'Inter', sans-serif);
  font-size: 0.925rem;
  color: #0f172a !important;
  padding: 5px 0 !important;
  margin: 0 !important;
  height: 50px !important;
}

.hc-search-input::placeholder {
  color: #94a3b8 !important;
  opacity: 1;
}

.hc-search-btn {
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 7px 22px !important;
  border-radius: 30px !important;
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  cursor: pointer;
  flex-shrink: 0;
}

.hc-search-btn:hover {
  background: #1e293b !important;
  transform: translateY(-1px);
}

/* Live Auto-suggestion Dropdown */
.hc-suggest-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  z-index: 1000;
  max-height: 360px;
  overflow-y: auto;
  display: none;
  font-family: var(--hc-ff-body, inherit);
}

.hc-suggest-dropdown.active {
  display: block;
  animation: hcFadeDown 0.2s ease;
}

@keyframes hcFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hc-suggest-item {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s ease;
}

.hc-suggest-item:last-child {
  border-bottom: none;
}

.hc-suggest-item:hover {
  background: #f8fafc;
}

.hc-suggest-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.hc-suggest-title {
  font-family: var(--hc-ff-heading, inherit) !important;
  font-weight: 300 !important;
  font-size: 0.925rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.hc-suggest-meta {
  font-size: 0.8rem;
  color: #64748b;
}

/* Quick Search Tags */
.hc-search-tags {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #475569;
}

.hc-search-tag-link {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hc-search-tag-link:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* Language Switcher Bar */
.hc-lang-switcher-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.hc-lang-switcher-bar label {
  color: #0f172a !important;
}

.hc-lang-select {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 20px !important;
  padding: 5px 14px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  outline: none !important;
  cursor: pointer;
  font-family: var(--hc-ff-body, inherit) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
}

.hc-lang-select option {
  background: #ffffff !important;
  color: #0f172a !important;
}

/* --------------------------------------------------------------------------
   2. CATEGORIES & CARDS GRID (USING NATIVE WEBSITE CARDS)
   -------------------------------------------------------------------------- */
.hc-category-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.hc-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.hc-category-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}

.hc-category-title {
  font-family: var(--tp-ff-heading, inherit);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.hc-category-desc {
  font-family: var(--tp-ff-body, inherit);
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.hc-category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  font-size: 0.85rem;
  color: #000000;
  font-weight: 600;
}

.hc-category-count {
  background: #f1f5f9;
  color: #0f172a;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.775rem;
}

/* --------------------------------------------------------------------------
   3. ARTICLE VIEW, SIDEBAR & DYNAMIC TOC
   -------------------------------------------------------------------------- */
.hc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 20px;
  font-family: var(--tp-ff-body, inherit);
}

.hc-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hc-breadcrumb a,
.hc-breadcrumb span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hc-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hc-breadcrumb a:hover {
  color: #000000;
}

.hc-breadcrumb-sep {
  color: #cbd5e1;
  padding: 0 2px;
  user-select: none;
}

.hc-article-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.hc-article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: #000000;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hc-article-main-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hc-article-meta-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem !important;
  color: #64748b !important;
  flex-wrap: wrap;
}

/* Mobile / Tablet Sticky Top TOC Accordion Bar */
.hc-mobile-toc-wrapper {
  position: sticky;
  top: 60px;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #ffffff;
  /* border-top: 1px dashed #cbd5e1; */
  border-bottom: 1px dashed #cbd5e1;
}

.hc-mobile-toc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  cursor: pointer;
  user-select: none;
}

.hc-mobile-toc-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif);
  font-size: clamp(0.92rem, 1vw + 0.8rem, 1.08rem) !important;
  font-weight: 700;
  color: #0f172a;
}

.hc-mobile-toc-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   RESPONSIVE TOC STICKY ALIGNMENT & ANIMATED SLIDE-DOWN (Mobile & Tablet: max-width: 991px)
   ========================================================================== */
@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes headerSlideDown {
  0% {
    -webkit-transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

/* Offcanvas Mobile Navigation Drawer Stacking Fix (Must sit above all sticky elements) */
.tp-offcanvas-area,
.tp-offcanvas-wrapper {
  z-index: 999999 !important;
}

.body-overlay.opened {
  z-index: 99999 !important;
}

@media (max-width: 991px) {
  /* Ensure header navigation sits on top of all page elements */
  #header-sticky {
    z-index: 1005 !important;
  }

  /* Eliminate initial top padding gap on mobile & tablet */
  main.py-5,
  .hc-article-page {
    padding-top: 0 !important;
  }

  main.py-5 > .container,
  .container.container-1230 {
    padding-top: 0 !important;
  }

  /* Seamless zero-gap sticky alignment directly underneath the sticky Navbar */
  .hc-mobile-toc-wrapper {
    position: sticky !important;
    top: 52px !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    z-index: 999 !important; /* Must be higher than backdrop z-index (990) so TOC is NOT dimmed */
    background: #ffffff !important;
    border-top: 1px dashed #cbd5e1 !important;
    border-bottom: 1px dashed #cbd5e1 !important;
  }

  /* Animated Slide Down effect when sticky on scroll */
  .hc-mobile-toc-wrapper.toc-sticky {
    top: 52px !important;
    animation: 0.45s ease-out 0s 1 normal forwards running headerSlideDown !important;
    -webkit-animation: 0.45s ease-out 0s 1 normal forwards running headerSlideDown !important;
  }

  .hc-mobile-toc-bar {
    background: #ffffff !important;
  }

  .hc-mobile-toc-backdrop {
    z-index: 990 !important;
  }

  .hc-mobile-toc-dropdown {
    z-index: 1000 !important;
    background: #ffffff !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18) !important;
  }

  /* Heading scroll offset so clicked anchors stop cleanly below navbar & sticky TOC bar */
  .hc-article-body h1[id],
  .hc-article-body h2[id],
  .hc-article-body h3[id],
  .hc-article-body h4[id],
  .hc-article-body h5[id],
  .hc-article-body h6[id],
  [id^="heading-"] {
    scroll-margin-top: 100px !important;
  }
}

@media (max-width: 575px) {
  .hc-mobile-toc-wrapper,
  .hc-mobile-toc-wrapper.toc-sticky {
    top: 48px !important; /* Flush under compact mobile navbar */
  }

  .hc-article-body h1[id],
  .hc-article-body h2[id],
  .hc-article-body h3[id],
  .hc-article-body h4[id],
  .hc-article-body h5[id],
  .hc-article-body h6[id],
  [id^="heading-"] {
    scroll-margin-top: 95px !important;
  }
}

/* Dark Dim Backdrop Overlay */
.hc-mobile-toc-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 990 !important;
}

.hc-mobile-toc-backdrop.show {
  display: block;
}

.hc-mobile-toc-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  max-height: 360px;
  overflow-y: auto;
  z-index: 100;
}

.hc-mobile-toc-dropdown.show {
  display: block;
}

.hc-mobile-toc-dropdown .hc-toc-list a {
  padding: 8px 10px !important;
  font-size: clamp(0.85rem, 0.4vw + 0.75rem, 0.92rem) !important;
  border-left: 2px solid transparent;
  color: #475569;
}

.hc-mobile-toc-dropdown .hc-toc-list a:hover,
.hc-mobile-toc-dropdown .hc-toc-list a.active {
  color: #0f172a !important;
  border-left-color: #0f172a !important;
  background: #f8fafc !important;
  font-weight: 600 !important;
}

/* Dynamic Table of Contents (TOC) Sidebar */
.hc-toc-sidebar {
  position: sticky;
  top: 100px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  font-family: var(--tp-ff-body, 'Inter', sans-serif);
}

.hc-toc-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: clamp(0.8rem, 0.4vw + 0.72rem, 0.875rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
}

.hc-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-toc-list li {
  margin-bottom: 6px;
}

.hc-toc-list a {
  display: block;
  font-size: clamp(0.82rem, 0.4vw + 0.72rem, 0.875rem) !important;
  color: #64748b;
  text-decoration: none;
  padding: 6px 10px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  border-radius: 0 6px 6px 0;
}

.hc-toc-list a:hover,
.hc-toc-list a.active {
  color: #0f172a !important;
  border-left-color: #0f172a !important;
  background: #ffffff !important;
  font-weight: 600 !important;
}

.hc-toc-list li.toc-h3 {
  padding-left: 10px;
}

/* Article Body Typography & Rich Content */
.hc-article-body,
.hc-article-body p,
.hc-article-body li,
.hc-article-body td,
.hc-article-body blockquote {
  font-family: var(--tp-ff-body, 'Inter', sans-serif);
  font-size: 1.02rem !important;
  line-height: 1.7;
  color: #334155;
}

.hc-article-body h2 {
  font-family: var(--tp-ff-heading, 'Inter', sans-serif);
  font-size: 1.6rem !important;
  font-weight: 700;
  color: #0f172a;
  margin: 34px 0 14px;
  scroll-margin-top: 110px;
  letter-spacing: -0.01em;
}

.hc-article-body h3 {
  font-family: var(--tp-ff-heading, 'Inter', sans-serif);
  font-size: 1.3rem !important;
  font-weight: 600;
  color: #0f172a;
  margin: 24px 0 10px;
  scroll-margin-top: 110px;
}

.hc-article-body p {
  margin-bottom: 18px;
}

.hc-article-body strong,
.hc-article-body b {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.hc-article-body em,
.hc-article-body i,
.hc-article-body span,
.hc-article-body mark,
.hc-article-body a {
  font-size: inherit !important;
  line-height: inherit !important;
}

.hc-article-body ul, .hc-article-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.hc-article-body li {
  margin-bottom: 6px;
}

.hc-article-body pre {
  background: #9ea29e42;
  color: #000000;
  padding: 16px 20px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 0.875rem;
  margin: 20px 0;
}

/* Medium Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hc-article-main-title {
    font-size: 1.95rem !important;
  }
  .hc-article-body,
  .hc-article-body p,
  .hc-article-body li,
  .hc-article-body td,
  .hc-article-body blockquote {
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
  }
  .hc-article-body h2 {
    font-size: 1.45rem !important;
  }
  .hc-article-body h3 {
    font-size: 1.22rem !important;
  }
}

/* Tablet Devices (576px - 991px) */
@media (min-width: 576px) and (max-width: 991px) {
  .hc-breadcrumb {
    font-size: 0.85rem;
  }
  .hc-article-main-title {
    font-size: 1.65rem !important;
  }
  .hc-article-meta-info {
    font-size: 0.82rem !important;
  }
  .hc-article-body,
  .hc-article-body p,
  .hc-article-body li,
  .hc-article-body td,
  .hc-article-body blockquote {
    font-size: 0.93rem !important;
    line-height: 1.65 !important;
  }
  .hc-article-body h2 {
    font-size: 1.32rem !important;
  }
  .hc-article-body h3 {
    font-size: 1.15rem !important;
  }
  .hc-article-body pre {
    font-size: 0.82rem;
  }
  .hc-toc-list a {
    font-size: 0.82rem !important;
  }
}

/* Mobile Devices (< 576px) */
@media (max-width: 575px) {
  .hc-breadcrumb {
    font-size: 0.8rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hc-breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .hc-breadcrumb > span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: bottom;
  }
  .hc-article-category-badge {
    font-size: 0.74rem !important;
  }
  .hc-article-main-title {
    font-size: 1.38rem !important;
    line-height: 1.3 !important;
  }
  .hc-article-meta-info {
    font-size: 0.78rem !important;
    gap: 10px;
  }
  .hc-article-body,
  .hc-article-body p,
  .hc-article-body li,
  .hc-article-body td,
  .hc-article-body blockquote {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }
  .hc-article-body h2 {
    font-size: 1.18rem !important;
    margin: 26px 0 10px;
  }
  .hc-article-body h3 {
    font-size: 1.06rem !important;
    margin: 20px 0 8px;
  }
  .hc-article-body pre {
    padding: 12px 14px;
    font-size: 0.78rem;
  }
  .hc-feedback-question {
    font-size: 0.92rem !important;
  }
  .hc-feedback-btn {
    font-size: 0.82rem !important;
    padding: 6px 14px !important;
  }
  .hc-article-support-box {
    padding: 22px 16px !important;
  }
  .hc-article-support-title {
    font-size: 1.15rem !important;
  }
  .hc-article-support-desc {
    font-size: 0.85rem !important;
  }
}

/* Fallback Support CTA Box */
.hc-article-support-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 30px 24px !important;
}

.hc-article-support-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: clamp(1.1rem, 1.5vw + 0.7rem, 1.4rem) !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
}

.hc-article-support-desc {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: clamp(0.84rem, 0.6vw + 0.65rem, 0.96rem) !important;
  color: #64748b !important;
  margin-bottom: 18px !important;
  line-height: 1.5 !important;
}

/* --------------------------------------------------------------------------
   4. INTERACTIVE FEEDBACK MECHANISM (YES / NO VOTE)
   -------------------------------------------------------------------------- */
.hc-feedback-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 32px 24px !important;
  margin-top: 40px !important;
  text-align: center !important;
  font-family: var(--tp-ff-body, 'Inter', sans-serif);
}

.hc-feedback-question {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: clamp(1.05rem, 1.2vw + 0.8rem, 1.25rem) !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 18px !important;
}

.hc-feedback-btn-group {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.hc-feedback-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-weight: 600 !important;
  font-size: clamp(0.85rem, 0.4vw + 0.75rem, 0.92rem) !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15) !important;
}

.hc-feedback-btn:hover {
  background: #ffffff !important;
  border-color: #0f172a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.hc-feedback-btn.btn-yes:hover,
.hc-feedback-btn.btn-yes.voted {
  background: #dcfce7 !important;
  color: #15803d !important;
  border-color: #86efac !important;
  box-shadow: none !important;
}

.hc-feedback-btn.btn-no:hover,
.hc-feedback-btn.btn-no.voted {
  background: #fee2e2 !important;
  color: #991b1b !important;
  border-color: #fca5a5 !important;
  box-shadow: none !important;
}

.hc-feedback-comment-form {
  display: none;
  margin-top: 20px !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hc-feedback-comment-form.active {
  display: block !important;
}

.hc-feedback-textarea {
  width: 100% !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font-size: clamp(0.85rem, 0.4vw + 0.75rem, 0.9rem) !important;
  line-height: 1.5 !important;
  color: #0f172a !important;
  background: #ffffff !important;
  outline: none !important;
  margin-bottom: 8px !important;
  resize: vertical !important;
  font-family: var(--tp-ff-body, 'Inter', sans-serif) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.hc-feedback-textarea:focus {
  border-color: #0f172a !important;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08) !important;
}

/* --------------------------------------------------------------------------
   5. RELEASE NOTES & CHANGELOG
   -------------------------------------------------------------------------- */
.hc-changelog-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 36px;
  border-left: 2px solid #e2e8f0;
}

.hc-changelog-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.hc-version-tag {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.hc-change-type-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 6px;
}

.hc-change-type-badge.type-feature { background: #dcfce7; color: #15803d; }
.hc-change-type-badge.type-improvement { background: #dbeafe; color: #1d4ed8; }
.hc-change-type-badge.type-fix { background: #fef3c7; color: #b45309; }

/* --------------------------------------------------------------------------
   6. RTL LAYOUT SUPPORT
   -------------------------------------------------------------------------- */
[dir="rtl"] .hc-search-icon {
  margin-right: 0;
  margin-left: 12px;
}

[dir="rtl"] .hc-suggest-icon {
  margin-right: 0;
  margin-left: 12px;
}

[dir="rtl"] .hc-toc-list a {
  border-left: none;
  border-right: 2px solid transparent;
}

[dir="rtl"] .hc-toc-list a:hover,
[dir="rtl"] .hc-toc-list a.active {
  border-right-color: #000000;
}

[dir="rtl"] .hc-changelog-item {
  padding-left: 0;
  padding-right: 32px;
  border-left: none;
  border-right: 2px solid #e2e8f0;
}

[dir="rtl"] .hc-changelog-item::before {
  left: auto;
  right: -7px;
}

/* --------------------------------------------------------------------------
   7. HELP CENTER DEDICATED FOOTER (MATCHES MAIN SITE EXACTLY)
   -------------------------------------------------------------------------- */
.hc-footer-section {
  background-color: #f4f8fffa !important;
  color: #000000 !important;
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 10;
}

.border-dashed-bottom,
.hc-footer-section .border-dashed-bottom {
  border-bottom: 1px dashed #0e0f117d !important;
}

.hc-footer-section .footer-follow-us-bar {
  border-bottom: 1px dashed #0e0f117d !important;
  padding-bottom: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.hc-footer-section .footer-follow-us-text {
  font-size: 16px;
  font-weight: 600;
  color: #000000 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--hc-ff-heading, 'Phudu', serif) !important;
}

.hc-footer-section .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hc-footer-section .footer-social-icons a {
  color: #000000 !important;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.hc-footer-section .footer-social-icons a:hover {
  color: #00df89 !important;
  transform: translateY(-2px);
}

.hc-footer-section .hc-footer-link {
  font-size: 16px;
  font-weight: 500;
  color: #000000 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hc-footer-section .hc-footer-link:hover {
  color: #0284c7 !important;
  text-decoration: underline;
}

.hc-footer-section .footer-bottom-bar {
  border-top: 1px dashed #0e0f117d !important;
  padding-top: 24px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-footer-section .footer-copyright-text {
  font-size: 14px;
  color: #475569;
  font-family: var(--hc-ff-body, 'Inter', sans-serif);
}

/* --------------------------------------------------------------------------
   8. WATI-STYLE CATEGORY CARD & ARTICLE LIST DESIGN (RESPONSIVE TYPOGRAPHY)
   -------------------------------------------------------------------------- */
.hc-wati-cat-grid-card {
  border: 1px dashed rgba(14, 15, 17, 0.26) !important;
  border-radius: 12px !important;
  padding: 20px 24px !important;
  background: #ffffff !important;
  transition: all 0.25s ease !important;
  min-height: 94px;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.hc-wati-card-title {
  font-size: clamp(0.95rem, 1.1vw + 0.65rem, 1.125rem) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: #0f172a !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.hc-wati-cat-grid-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
  border-color: #cbd5e1 !important;
  transform: translateY(-2px);
}

.hc-wati-cat-grid-card:hover .hc-cat-icon-wrapper {
  background-color: #e2e8f0;
  color: #0284c7 !important;
}

.hc-cat-page-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2.10rem) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
}

.hc-cat-page-desc {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: clamp(0.9rem, 0.8vw + 0.7rem, 1.05rem) !important;
  color: #475569 !important;
  line-height: 1.5 !important;
}

.footer-slogan {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: clamp(1.25rem, 2vw + 0.7rem, 1.65rem) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0f172a !important;
}

.footer-subslogan {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: clamp(0.85rem, 0.6vw + 0.65rem, 0.98rem) !important;
  color: #64748b !important;
}

.hc-wati-category-card {
  background: #ffffff !important;
  border: 1px dashed rgba(14, 15, 17, 0.26) !important;
  border-radius: 12px !important;
  padding: 22px 26px !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.hc-wati-category-card:hover {
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important; */
  border-color: #cbd5e1 !important;
}

.hc-cat-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: #f1f5f9;
  color: #0f172a !important;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.hc-cat-svg-icon {
  width: 22px;
  height: 22px;
}

/* Desktop View (>= 992px) */
@media (min-width: 992px) {
  .hc-wati-cat-grid-card {
    padding: 22px 26px !important;
    min-height: 98px;
  }
  .hc-wati-card-title {
    font-size: 1.1rem !important;
  }
  .hc-cat-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  .hc-cat-svg-icon {
    width: 22px;
    height: 22px;
  }
}

/* Tablet View (576px - 991px) */
@media (max-width: 991px) and (min-width: 576px) {
  .hc-wati-cat-grid-card {
    padding: 18px 20px !important;
    min-height: 88px;
    gap: 14px !important;
  }
  .hc-wati-card-title {
    font-size: 1.02rem !important;
  }
  .hc-cat-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .hc-cat-svg-icon {
    width: 20px;
    height: 20px;
  }
}

/* Mobile View (< 576px) */
@media (max-width: 575px) {
  .hc-wati-cat-grid-card {
    padding: 14px 16px !important;
    min-height: 76px;
    gap: 12px !important;
  }
  .hc-wati-card-title {
    font-size: 0.94rem !important;
  }
  .hc-cat-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .hc-cat-svg-icon {
    width: 18px;
    height: 18px;
  }
}

.hc-wati-category-card:hover .hc-cat-icon-wrapper {
  background-color: #e2e8f0;
  color: #0284c7 !important;
}

.hc-cat-svg-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.hc-wati-card-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  color: #0f172a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.hc-wati-card-title a {
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.hc-wati-card-title a:hover {
  color: #059669 !important;
}

.hc-wati-article-list {
  display: flex !important;
  flex-direction: column !important;
}

.hc-wati-article-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #f8fafc !important;
  text-decoration: none !important;
  color: #334155 !important;
  transition: all 0.2s ease !important;
}

.hc-wati-article-item:last-child {
  border-bottom: none !important;
}

.hc-wati-article-title {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  color: #334155 !important;
  line-height: 1.5 !important;
  transition: color 0.2s ease !important;
}

.hc-empty-subcat-text {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #64748b !important;
  line-height: 1.5 !important;
}

.hc-wati-article-arrow {
  color: #059669 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 16px !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.hc-wati-article-item:hover .hc-wati-article-title {
  color: #059669 !important;
  font-weight: 500 !important;
}

.hc-wati-article-item:hover .hc-wati-article-arrow {
  transform: translateX(4px) !important;
  color: #10b981 !important;
}

/* --------------------------------------------------------------------------
   9. STILL NEED ASSISTANCE CTA SECTION (MATCHES USER SCREENSHOTS 1, 2, 3)
   -------------------------------------------------------------------------- */
.hc-assistance-section {
  background-color: #20252b !important;
  padding: 60px 20px !important;
}

.hc-assistance-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
}

.hc-assistance-subtitle {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 1rem !important;
  color: #94a3b8 !important;
  max-width: 580px !important;
  margin: 0 auto 28px !important;
  line-height: 1.5 !important;
}

.hc-assistance-btn-group {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.hc-btn-support {
  background: #ffffff !important;
  color: #0f172a !important;
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  border: 1.5px solid #ffffff !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
  min-width: 190px !important;
  text-align: center !important;
}

.hc-btn-support:hover {
  background: #f8fafc !important;
  color: #059669 !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2) !important;
}

.hc-btn-demo {
  background: transparent !important;
  color: #ffffff !important;
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
  min-width: 190px !important;
  text-align: center !important;
}

.hc-btn-demo:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Mobile Responsive Adjustments (Matches Screenshot 1) */
@media (max-width: 575.98px) {
  .hc-assistance-section {
    padding: 45px 16px !important;
  }

  .hc-assistance-title {
    font-size: 1.75rem !important;
  }

  .hc-assistance-subtitle {
    font-size: 0.925rem !important;
    margin-bottom: 22px !important;
  }

  .hc-assistance-btn-group {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hc-btn-support,
  .hc-btn-demo {
    width: 100% !important;
    max-width: 320px !important;
    padding: 12px 20px !important;
  }
}

/* --------------------------------------------------------------------------
   10. FEATURED ARTICLES & PRODUCT UPDATES OPTIMIZATION (MATCHES SCREENSHOTS 1 & 2)
   -------------------------------------------------------------------------- */
.hc-section-header {
  margin-bottom: 24px !important;
}

.hc-section-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: 1.625rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
}

.hc-section-subtitle {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.95rem !important;
  color: #64748b !important;
  font-weight: 400 !important;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
}

.hc-card-feature {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 24px 28px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.hc-card-feature:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
  border-color: #cbd5e1 !important;
  transform: translateY(-2px) !important;
}

.hc-card-meta-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 12px !important;
}

.hc-badge-pill {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.725rem !important;
  font-weight: 700 !important;
  background: #0f172a !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 4px 12px !important;
  text-transform: none !important;
}

.hc-card-views,
.hc-card-date {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.8rem !important;
  color: #94a3b8 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.hc-card-feature-title {
  font-family: var(--hc-ff-heading, 'Inter', sans-serif) !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  margin-top: 4px !important;
  margin-bottom: 10px !important;
}

.hc-card-feature-title a {
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.hc-card-feature-title a:hover {
  color: #059669 !important;
}

.hc-card-feature-excerpt {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.85rem !important;
  color: #64748b !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
}

.hc-card-read-link {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  margin-top: auto !important;
  transition: color 0.2s ease !important;
}

.hc-card-read-link svg {
  transition: transform 0.2s ease !important;
}

.hc-card-read-link:hover {
  color: #059669 !important;
}

.hc-card-read-link:hover svg {
  transform: translateX(4px) !important;
}

.hc-btn-all-updates {
  font-family: var(--hc-ff-body, 'Inter', sans-serif) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  border: 1.5px solid #0f172a !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.hc-btn-all-updates:hover {
  background: #0f172a !important;
  color: #ffffff !important;
}
/* Arrow Rotation for Accordions */
.hc-accordion-arrow svg {
    transition: transform 0.3s ease;
}
[aria-expanded="true"] .hc-accordion-arrow svg {
    transform: rotate(180deg);
}

/* Category Hover & Pointer Effects */
.cursor-pointer {
    cursor: pointer;
}
.hover-primary:hover {
    color: #0284c7 !important;
}