.text-green {
  color: #1ba431 !important;
}

.bg-green {
  background-color: #1ba431 !important;
}

.border-green {
  border-color: #1ba431 !important;
}

.bg-label-green {
  background-color: rgba(27, 164, 49, 0.16) !important;
  color: #1ba431 !important;
}

.btn-green {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1ba431;
  --bs-btn-border-color: #1ba431;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #178e2a;
  --bs-btn-hover-border-color: #158127;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #158127;
  --bs-btn-active-border-color: #147824;
}

.btn-outline-green {
  --bs-btn-color: #1ba431;
  --bs-btn-border-color: #1ba431;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1ba431;
  --bs-btn-hover-border-color: #1ba431;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #178e2a;
  --bs-btn-active-border-color: #158127;
}

.btn-label-green {
  --bs-btn-color: #1ba431;
  --bs-btn-bg: rgba(27, 164, 49, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: rgba(27, 164, 49, 0.24);
  --bs-btn-hover-color: #1ba431;
  --bs-btn-active-bg: rgba(27, 164, 49, 0.32);
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0a3622;
}
.alert-success h1,
.alert-success h2,
.alert-success h3,
.alert-success h4,
.alert-success h5,
.alert-success h6,
.alert-success .h1,
.alert-success .h2,
.alert-success .h3,
.alert-success .h4,
.alert-success .h5,
.alert-success .h6 {
  color: #0f5132;
}

.card {
  border-radius: 1rem;
}

.card-popular {
  overflow: visible !important;
}

.portal-section {
  background-color: #f4f7fb;
  border-radius: 1.5rem;
}

.portal-section .container {
  max-width: 960px;
}

.account-section {
  background-color: #f4f7fb;
  border-radius: 1.5rem;
}

.account-section .container {
  max-width: 960px;
}

.portal-choices {
  margin-left: auto;
  margin-right: auto;
}

.portal-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-card .card-body {
  min-height: 100%;
}

.portal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(15, 23, 42, 0.35);
}

.portal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  font-size: 2rem;
  line-height: 1;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
}

.portal-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}

.portal-icon-carrier {
  background-color: rgba(var(--bs-warning-rgb), 0.18);
  color: var(--bs-warning);
}

.portal-icon-shipper {
  background-color: rgba(var(--bs-info-rgb), 0.18);
  color: var(--bs-info);
}

.portal-register a {
  font-weight: 600;
}

.gradient-card {
  --gradient-card-base-rgb: var(--bs-info-rgb);
  --gradient-card-accent-rgb: var(--bs-primary-rgb);
  --gradient-card-highlight-opacity: 0.12;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #fff;
  background-image: linear-gradient(140deg, rgba(var(--gradient-card-base-rgb), 0.16) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(var(--gradient-card-accent-rgb), 0.08) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1rem 2.5rem -1.5rem rgba(15, 23, 42, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 110% -10%, rgba(var(--gradient-card-base-rgb), 0.35), rgba(var(--gradient-card-base-rgb), 0.05) 65%, transparent 75%);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gradient-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0) 20%, rgba(var(--gradient-card-base-rgb), var(--gradient-card-highlight-opacity)) 90%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gradient-card > * {
  position: relative;
  z-index: 1;
}

.gradient-card:hover,
.gradient-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(15, 23, 42, 0.32);
}

.gradient-card:hover::after,
.gradient-card:focus-within::after {
  opacity: 0.6;
}

.gradient-card--primary {
  --gradient-card-base-rgb: var(--bs-primary-rgb);
  --gradient-card-accent-rgb: var(--bs-primary-rgb);
}

.gradient-card--success {
  --gradient-card-base-rgb: var(--bs-success-rgb);
  --gradient-card-accent-rgb: var(--bs-success-rgb);
}

.gradient-card--warning {
  --gradient-card-base-rgb: var(--bs-warning-rgb);
  --gradient-card-accent-rgb: var(--bs-warning-rgb);
  --gradient-card-highlight-opacity: 0.18;
}

.gradient-card--danger {
  --gradient-card-base-rgb: var(--bs-danger-rgb);
  --gradient-card-accent-rgb: var(--bs-danger-rgb);
}

.gradient-card--info {
  --gradient-card-base-rgb: var(--bs-info-rgb);
  --gradient-card-accent-rgb: var(--bs-primary-rgb);
}

.gradient-card--dark {
  --gradient-card-base-rgb: var(--bs-dark-rgb);
  --gradient-card-accent-rgb: var(--bs-dark-rgb);
  --gradient-card-highlight-opacity: 0.1;
}

.gradient-card--blue {
  --gradient-card-base-rgb: 38, 128, 190;
  --gradient-card-accent-rgb: 30, 90, 160;
  --gradient-card-highlight-opacity: 0.15;
}

.gradient-card--green {
  --gradient-card-base-rgb: 27, 164, 49;
  --gradient-card-accent-rgb: 20, 120, 35;
  --gradient-card-highlight-opacity: 0.15;
}

@media (prefers-reduced-motion: reduce) {
  .gradient-card {
    transition: none;
  }
  .gradient-card::before,
  .gradient-card::after {
    transition: none;
  }
}
.register-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.register-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 3rem;
  color: #6c757d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.register-tab i {
  font-size: 1rem;
}
.register-tab:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.15);
}
.register-tab.active {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  border-color: var(--bs-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.3);
}

@media (max-width: 575.98px) {
  .register-tabs {
    gap: 0.5rem;
  }
  .register-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .register-tab i {
    font-size: 0.85rem;
  }
}
.shipping-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.shipping-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 3rem;
  color: #6c757d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.shipping-tab i {
  font-size: 1rem;
}
.shipping-tab:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.15);
}
.shipping-tab.active {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  border-color: var(--bs-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.3);
}

@media (max-width: 575.98px) {
  .shipping-tabs {
    gap: 0.5rem;
  }
  .shipping-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .shipping-tab i {
    font-size: 0.85rem;
  }
}
.register-split-panel {
  display: flex;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  min-height: 600px;
}

.register-form-side {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-marketing-side {
  flex: 1;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  color: white;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.register-marketing-side::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.marketing-content {
  position: relative;
  z-index: 1;
}

.marketing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffab00;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(255, 171, 0, 0.2);
}

.marketing-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #fff;
}

.marketing-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: #fff;
}

.benefit-text strong {
  font-weight: 600;
  margin-bottom: 0.125rem;
  color: #fff;
}

.benefit-text span {
  opacity: 0.85;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.marketing-stats {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.marketing-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.marketing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .register-split-panel {
    flex-direction: column;
  }
  .register-form-side {
    padding: 1.5rem;
  }
  .register-marketing-side {
    padding: 1.5rem;
    order: -1;
  }
  .marketing-title {
    font-size: 1.35rem;
  }
  .benefits-list {
    display: none;
  }
  .marketing-stats {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .register-split-panel {
    border-radius: 1rem;
  }
  .register-form-side {
    padding: 1.25rem;
  }
  .register-marketing-side {
    padding: 1.25rem;
  }
  .marketing-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  .marketing-title {
    font-size: 1.15rem;
  }
  .marketing-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .marketing-stats {
    gap: 1rem;
    padding-top: 1rem;
  }
  .stat-number {
    font-size: 1.25rem;
  }
}
.smaller {
  font-size: 0.75rem;
}

.profile-avatar-preview {
  display: flex;
  flex-direction: column;
}

.profile-avatar-preview__frame {
  width: 160px;
  height: 160px;
  border-radius: 1rem;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  background-color: #f7f8fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0.75rem;
}

.profile-avatar-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  display: none;
}

.profile-avatar-preview__frame.is-loaded .profile-avatar-preview__image {
  display: block;
}

.profile-avatar-preview__frame.is-loaded .profile-avatar-preview__placeholder {
  display: none;
}

.profile-breadcrumbs .breadcrumb {
  margin-bottom: 0;
  font-size: 0.85rem;
}
.profile-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: #94a3b8;
}
.profile-breadcrumbs a {
  color: #0f172a;
  text-decoration: none;
}
.profile-breadcrumbs a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}

.profile-page-top {
  margin-bottom: 1.5rem;
}

.faq-hero {
  position: relative;
}

.faq-search-panel {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.faq-search-panel .form-label {
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.faq-search-panel .form-control,
.faq-search-panel .form-select {
  border-radius: 0.875rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.25s ease;
}
.faq-search-panel .form-control:focus,
.faq-search-panel .form-select:focus {
  border-color: rgba(54, 49, 244, 0.4);
  box-shadow: 0 0 0 0.2rem rgba(54, 49, 244, 0.12);
}
.faq-search-panel .form-control-lg {
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
}

.faq-language {
  margin-top: 1rem;
}
.faq-language .form-select {
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.faq-content {
  padding-block-start: var(--front-hero-content-gap, 1.5rem);
  padding-block-end: 3rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, #fff 100%);
}

.faq-sidebar {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: sticky;
  top: 6rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1.25rem 3rem -1rem rgba(15, 23, 42, 0.12), 0 0 1px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.faq-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(54, 49, 244, 0.8) 0%, rgba(14, 165, 233, 0.8) 100%);
}
.faq-sidebar .card-body {
  padding: 1.75rem;
  position: relative;
}
.faq-sidebar h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.6);
}

.faq-sidebar .btn {
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.faq-sidebar .btn.btn-outline-primary {
  border-color: rgba(54, 49, 244, 0.25);
}
.faq-sidebar .btn.btn-outline-primary:hover {
  background: rgba(54, 49, 244, 0.08);
  border-color: rgba(54, 49, 244, 0.4);
}
.faq-sidebar .btn.btn-outline-secondary {
  border-color: rgba(15, 23, 42, 0.15);
}
.faq-sidebar .btn.btn-outline-secondary:hover {
  background: rgba(15, 23, 42, 0.06);
}

.faq-category-option {
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.faq-category-option:hover {
  background: rgba(54, 49, 244, 0.04);
  transform: translateX(4px);
}
.faq-category-option .form-check-input {
  margin-top: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-category-option .form-check-input:checked {
  background-color: #3631f4;
  border-color: #3631f4;
}
.faq-category-option .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(54, 49, 244, 0.15);
}
.faq-category-option .small {
  font-weight: 500;
  transition: color 0.2s ease;
}

.faq-category-option:focus-within {
  box-shadow: 0 0 0 0.15rem rgba(54, 49, 244, 0.08);
}

.faq-category-option.is-active {
  background: linear-gradient(135deg, rgba(54, 49, 244, 0.06) 0%, rgba(14, 165, 233, 0.04) 100%);
}
.faq-category-option.is-active .small {
  color: #0f172a;
  font-weight: 600;
}

.faq-category-option.is-active .faq-category-count {
  background: linear-gradient(135deg, rgba(54, 49, 244, 0.18) 0%, rgba(14, 165, 233, 0.12) 100%);
  color: #3631f4;
  font-weight: 700;
}

.faq-category-count {
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.6);
  transition: all 0.25s ease;
}

.faq-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}
.faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(54, 49, 244, 0.6) 0%, rgba(14, 165, 233, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-card .card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.faq-card .badge {
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  letter-spacing: 0.02em;
}
.faq-card h5 {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}
.faq-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.65);
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem -1rem rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(54, 49, 244, 0.1);
  border-color: rgba(54, 49, 244, 0.15);
}
.faq-card:hover::before {
  opacity: 1;
}
.faq-card:hover h5 {
  color: #3631f4;
}

.faq-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-item.d-none {
  opacity: 0;
  transform: scale(0.95);
}

.faq-detail-hero {
  position: relative;
}

.faq-detail-nav {
  align-items: center;
  margin-bottom: 1rem;
}

.faq-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.5rem -0.75rem rgba(15, 23, 42, 0.2);
  transition: all 0.25s ease;
}
.faq-detail-back span[aria-hidden] {
  transition: transform 0.2s ease;
}
.faq-detail-back:hover {
  background: #fff;
  color: #3631f4;
  box-shadow: 0 0.75rem 2rem -0.5rem rgba(15, 23, 42, 0.2);
  transform: translateX(-3px);
}
.faq-detail-back:hover span[aria-hidden] {
  transform: translateX(-3px);
}

.breadcrumb-wrapper {
  padding: 0.5rem 0;
}
.breadcrumb-wrapper .breadcrumb {
  font-size: 0.875rem;
  background: transparent;
  margin-bottom: 0;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  color: rgba(15, 23, 42, 0.5);
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  color: rgba(15, 23, 42, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a:hover {
  color: #3631f4;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item.active {
  color: #0f172a;
  font-weight: 600;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(15, 23, 42, 0.3);
}

.faq-detail-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 1rem 3rem -1.5rem rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.faq-detail-card .card-body {
  padding: 2rem;
}
.faq-detail-card .card-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 1.25rem;
}
.faq-detail-card .card-body p:last-child {
  margin-bottom: 0;
}
.faq-detail-card .card-body a {
  color: #3631f4;
  text-decoration: underline;
  text-decoration-color: rgba(54, 49, 244, 0.3);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}
.faq-detail-card .card-body a:hover {
  text-decoration-color: #3631f4;
}
.faq-detail-card .card-body ul,
.faq-detail-card .card-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.faq-detail-card .card-body ul li,
.faq-detail-card .card-body ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.faq-detail-sidebar {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(14, 165, 233, 0.03) 100%);
  box-shadow: 0 1rem 2.5rem -1.5rem rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.faq-detail-sidebar .card-body {
  padding: 1.5rem;
}
.faq-detail-sidebar .card-body h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 1rem;
}
.faq-detail-sidebar .card-body hr {
  border-color: rgba(15, 23, 42, 0.08);
  margin: 1.25rem 0;
}
.faq-detail-sidebar .card-body .small {
  font-size: 0.875rem;
  line-height: 1.6;
}
.faq-detail-sidebar .btn {
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  transition: all 0.25s ease;
}
.faq-detail-sidebar .btn.btn-primary {
  box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(54, 49, 244, 0.4);
}
.faq-detail-sidebar .btn.btn-primary:hover {
  box-shadow: 0 0.75rem 2rem -0.5rem rgba(54, 49, 244, 0.5);
  transform: translateY(-2px);
}
.faq-detail-sidebar .btn.btn-outline-primary:hover {
  transform: translateY(-2px);
}

.faq-detail-related {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 1rem 2.5rem -1.5rem rgba(15, 23, 42, 0.08);
}
.faq-detail-related .card-body {
  padding: 1.5rem;
}
.faq-detail-related .card-body h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 1rem;
}

.faq-related-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none;
  background: linear-gradient(145deg, #fff 0%, rgba(248, 250, 252, 0.8) 100%);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.faq-related-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(54, 49, 244, 0.5) 0%, rgba(14, 165, 233, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.faq-related-link .fw-semibold {
  font-size: 0.925rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}
.faq-related-link .small {
  font-size: 0.8rem;
  opacity: 0.7;
}

.faq-related-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(54, 49, 244, 0.15);
}

.faq-related-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem -0.75rem rgba(15, 23, 42, 0.15);
  border-color: rgba(54, 49, 244, 0.15);
}
.faq-related-link:hover::before {
  opacity: 1;
}
.faq-related-link:hover .fw-semibold {
  color: #3631f4;
}

.faq-related-articles h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 42, 0.5);
}

.faq-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-related-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}
.faq-related-item:last-child {
  border-bottom: none;
}
.faq-related-item:hover {
  background: rgba(54, 49, 244, 0.04);
  color: #3631f4;
  padding-left: 1.25rem;
}
.faq-related-item:focus-visible {
  outline: none;
  background: rgba(54, 49, 244, 0.06);
  color: #3631f4;
}

.faq-detail-body {
  padding-top: 0;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, #fff 100%);
}

#faq-empty {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid rgba(14, 165, 233, 0.15);
  color: rgba(15, 23, 42, 0.7);
}

@media (max-width: 991.98px) {
  .faq-sidebar {
    position: static;
    margin-bottom: 1.5rem;
  }
  .faq-sidebar::before {
    display: none;
  }
  .faq-sidebar .card-body {
    padding: 1.25rem;
  }
  .faq-detail-card .card-body {
    padding: 1.5rem;
  }
  .faq-detail-card .card-body p {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .faq-search-panel {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  .faq-card .card-body {
    padding: 1.25rem;
  }
  .faq-card .card-body h5 {
    font-size: 1rem;
  }
  .faq-detail-sidebar .card-body,
  .faq-detail-related .card-body {
    padding: 1.25rem;
  }
  .faq-related-link {
    padding: 0.875rem 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-card,
  .faq-category-option,
  .faq-related-link,
  .faq-detail-back,
  .faq-sidebar .btn {
    transition: none;
  }
  .faq-card:hover,
  .faq-related-link:hover {
    transform: none;
  }
}
