.dt-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  background: var(--surface-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.dt-section-soft {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.dt-price {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 800;
}

.dt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  font-weight: 700;
  font-size: 0.82rem;
}

.dt-list {
  padding-left: 0;
  list-style: none;
}

.dt-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.dt-list i {
  color: var(--accent-color);
}

.dt-form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 8px;
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

.dt-table {
  width: 100%;
}

.dt-table th,
.dt-table td {
  padding: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  vertical-align: top;
}

.dt-status {
  border-radius: 999px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.82rem;
  font-weight: 700;
}

.dt-dashboard-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  margin-bottom: 8px;
}

.dt-dashboard-link:hover,
.dt-dashboard-link.active {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.header .logo img.dt-header-logo {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.dt-profile-menu {
  position: relative;
}

.dt-profile-toggle {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.dt-profile-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--heading-color);
  color: var(--contrast-color);
  font-size: 0.82rem;
  font-weight: 800;
  flex: 0 0 30px;
}

.dt-profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 250px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--default-color), transparent 84%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 1000;
}

.dt-profile-menu:hover .dt-profile-dropdown,
.dt-profile-menu:focus-within .dt-profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dt-profile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.dt-profile-head strong,
.dt-profile-head small {
  display: block;
}

.dt-profile-head small {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.8rem;
}

.dt-profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  color: var(--heading-color);
  font-weight: 700;
}

.dt-profile-dropdown a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.dt-profile-dropdown a.dt-profile-logout {
  color: #b42318;
}

.dt-profile-dropdown a.dt-profile-logout:hover {
  color: var(--contrast-color);
  background: #b42318;
}

.footer .footer-about .logo img.dt-footer-icon {
  max-height: 52px;
  width: 52px;
  border-radius: 8px;
}

.footer .footer-about .logo {
  align-items: center;
}

.dt-corporate-footer .footer-top {
  padding-top: 70px;
}

.dt-footer-cta,
.dt-footer-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 26px;
}

.dt-footer-cta span {
  display: block;
  color: color-mix(in srgb, var(--contrast-color), transparent 35%);
  font-size: 0.82rem;
  font-weight: 700;
}

.dt-footer-cta strong {
  display: block;
  color: var(--contrast-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.dt-footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dt-footer-cta-actions a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 0.82rem;
  font-weight: 800;
}

.dt-footer-assurance {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.dt-footer-seal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 800;
}

.dt-footer-seal i {
  color: var(--accent-color);
  font-size: 1rem;
  flex: 0 0 auto;
}

.dt-footer-main {
  padding-top: 10px;
}

.dt-footer-info-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.dt-footer-info-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.dt-footer-links-small h4 {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.dt-footer-links-small ul li {
  padding: 4px 0;
}

.dt-footer-links-small ul a {
  font-size: 0.84rem;
}

.dt-footer-contact-strip {
  margin-top: 32px;
  margin-bottom: 0;
  align-items: flex-start;
}

.dt-footer-contact-strip > div {
  display: flex;
  gap: 9px;
  min-width: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
  font-size: 0.84rem;
}

.dt-footer-contact-strip i {
  color: var(--accent-color);
  flex: 0 0 auto;
}

.dt-footer-contact-strip a {
  color: color-mix(in srgb, var(--contrast-color), transparent 12%);
}

.refund-hero,
.refund-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.refund-hero h2,
.refund-cta h2 {
  color: var(--heading-color);
  font-weight: 800;
}

.refund-hero-note {
  display: flex;
  gap: 12px;
  max-width: 360px;
  padding: 18px;
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-weight: 700;
}

.refund-hero-note i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.refund-policy-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.refund-policy-card > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.refund-policy-card h3,
.refund-timeline-step h3,
.refund-rule-list h3 {
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.refund-policy-card p,
.refund-timeline-step p,
.refund-rule-list p {
  margin-bottom: 0;
}

.refund-timeline {
  display: grid;
  gap: 16px;
}

.refund-timeline-step {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.refund-timeline-step > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 800;
  flex: 0 0 34px;
}

.refund-rule-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.refund-rule-list > div {
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.refund-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.policy-hero,
.policy-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.policy-hero h2,
.policy-cta h2 {
  color: var(--heading-color);
  font-weight: 800;
}

.policy-hero-note {
  display: flex;
  gap: 12px;
  max-width: 360px;
  padding: 18px;
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-weight: 700;
}

.policy-hero-note i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.policy-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.policy-card > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.policy-card h3,
.policy-list-item h3 {
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.policy-card p,
.policy-list-item p {
  margin-bottom: 0;
}

.policy-list {
  display: grid;
  gap: 16px;
}

.policy-list-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.policy-list-item > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 800;
  flex: 0 0 34px;
}

.policy-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-hero,
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-hero h2,
.faq-cta h2 {
  color: var(--heading-color);
  font-weight: 800;
}

.faq-hero-note {
  display: flex;
  gap: 12px;
  max-width: 360px;
  padding: 18px;
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-weight: 700;
}

.faq-hero-note i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.faq-category-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  color: var(--default-color);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.faq-category-card > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 1.25rem;
  flex: 0 0 46px;
}

.faq-category-card h3 {
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-category-card p {
  margin-bottom: 0;
}

.faq-category-card:hover {
  transform: translateY(-3px);
  color: var(--default-color);
}

.faq-search-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.faq-search-box > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 1.15rem;
}

.faq-search-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-empty {
  text-align: center;
}

.faq-empty > i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.faq-empty h3 {
  color: var(--heading-color);
  font-weight: 800;
}

.faq-empty-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-groups {
  display: grid;
  gap: 24px;
}

.faq-group {
  scroll-margin-top: 110px;
}

.faq-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.faq-group-head p {
  margin-bottom: 0;
  max-width: 520px;
  text-align: right;
}

.faq-accordion .accordion-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-accordion .accordion-button {
  color: var(--heading-color);
  font-weight: 800;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.faq-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-menu-bottom .section-title {
  padding-bottom: 25px;
}

.about-hero,
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-hero h2,
.about-cta h2 {
  color: var(--heading-color);
  font-weight: 800;
}

.about-hero-panel {
  min-width: 330px;
  display: grid;
  gap: 12px;
}

.about-hero-panel > div {
  padding: 16px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.about-hero-panel span,
.about-metric-card span,
.about-info-table span {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.86rem;
  font-weight: 700;
}

.about-hero-panel strong,
.about-metric-card strong,
.about-info-table strong {
  display: block;
  color: var(--heading-color);
  font-weight: 800;
  word-break: break-word;
}

.about-hero-actions,
.about-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-cta-actions {
  justify-content: flex-end;
}

.about-service-card,
.about-metric-card {
  height: 100%;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.about-service-card > i,
.about-metric-card > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.about-service-card h3 {
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.about-service-card p {
  margin-bottom: 0;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-info-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-info-table > div {
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.contact-hero,
.contact-quick-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-hero h2,
.contact-quick-links h2,
.contact-form-card h2 {
  color: var(--heading-color);
  font-weight: 800;
}

.contact-hero-note {
  display: flex;
  gap: 12px;
  max-width: 360px;
  padding: 18px;
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-weight: 700;
}

.contact-hero-note i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact-method-card {
  display: block;
  padding: 24px;
  border-radius: 8px;
  color: var(--default-color);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.contact-method-card > i,
.contact-topic > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 1.25rem;
  flex: 0 0 46px;
}

.contact-method-card span {
  display: block;
  margin-top: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-method-card strong {
  display: block;
  color: var(--heading-color);
  font-weight: 800;
  word-break: break-word;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  color: var(--default-color);
}

.contact-topic-list {
  display: grid;
  gap: 14px;
}

.contact-topic {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.contact-topic h3 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 800;
}

.contact-topic p {
  margin-bottom: 0;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-label i {
  color: var(--accent-color);
}

.contact-link-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.auth-section .container {
  max-width: 1060px;
}

.auth-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.auth-shell-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.auth-panel,
.auth-card {
  border-radius: 8px;
}

.auth-panel {
  padding: 34px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.auth-panel h2,
.auth-card h2 {
  color: var(--heading-color);
  font-weight: 800;
}

.auth-card-head {
  margin-bottom: 20px;
}

.auth-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 800;
  margin-bottom: 8px;
}

.auth-label i {
  color: var(--accent-color);
}

.auth-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-weight: 700;
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
  font-weight: 700;
}

.admin-users-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.admin-users-metrics .dashboard-metric {
  min-height: 145px;
  padding: 18px;
}

.admin-users-metrics .dashboard-metric-icon {
  width: 44px;
  height: 44px;
}

.admin-users-metrics .dashboard-metric strong {
  font-size: 1.75rem;
}

.admin-users-metrics .dashboard-metric .status-text {
  font-size: 0.86rem;
}

.admin-users-list {
  display: grid;
  gap: 14px;
}

.admin-users-row {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) minmax(120px, 1fr) minmax(92px, 0.7fr) minmax(92px, 0.7fr) minmax(110px, 0.9fr);
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.admin-users-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.admin-users-avatar {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 800;
  flex: 0 0 42px;
}

.admin-users-main h4 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-users-main span,
.admin-users-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-users-main span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-users-meta {
  min-width: 0;
}

.admin-users-meta span {
  display: block;
  margin-bottom: 4px;
}

.admin-users-meta strong {
  display: inline-flex;
  color: var(--heading-color);
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-users-meta .dt-status {
  justify-content: center;
  white-space: nowrap;
}

.admin-catalog-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-catalog-metrics .dashboard-metric {
  min-height: 145px;
  padding: 18px;
}

.admin-catalog-metrics .dashboard-metric-icon {
  width: 44px;
  height: 44px;
}

.admin-catalog-metrics .dashboard-metric strong {
  font-size: 1.75rem;
}

.admin-catalog-metrics .dashboard-metric .status-text {
  font-size: 0.86rem;
}

.admin-catalog-form-grid {
  display: grid;
  gap: 18px;
}

.admin-catalog-form-section {
  padding: 18px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.admin-catalog-form-section h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.admin-catalog-form-section h4 i,
.admin-catalog-label i {
  color: var(--accent-color);
}

.admin-catalog-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 800;
  margin-bottom: 8px;
}

.admin-catalog-list {
  display: grid;
  gap: 14px;
}

.admin-catalog-row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.admin-product-row {
  grid-template-columns: minmax(260px, 2fr) minmax(110px, 1fr) minmax(110px, 0.9fr) minmax(70px, 0.6fr) minmax(110px, 0.9fr) minmax(92px, 0.7fr);
}

.admin-coupon-row {
  grid-template-columns: minmax(220px, 2fr) minmax(110px, 1fr) minmax(110px, 1fr) minmax(92px, 0.8fr) minmax(110px, 0.9fr);
}

.admin-catalog-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.admin-catalog-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  flex: 0 0 42px;
}

.admin-catalog-main h4 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.admin-catalog-main span,
.admin-catalog-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-catalog-main p {
  margin: 8px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.admin-catalog-meta {
  min-width: 0;
}

.admin-catalog-meta span {
  display: block;
  margin-bottom: 4px;
}

.admin-catalog-meta strong {
  display: inline-flex;
  color: var(--heading-color);
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.admin-catalog-meta .dt-status {
  justify-content: center;
  white-space: nowrap;
}

.cart-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cart-progress-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  font-weight: 700;
}

.cart-progress-step i {
  color: var(--accent-color);
}

.cart-progress-step.active {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.cart-progress-step.active i {
  color: var(--contrast-color);
}

.cart-empty-icon,
.cart-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.cart-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  font-size: 2rem;
}

.cart-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 0.8fr 120px 0.8fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 98%);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-product-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  font-size: 1.4rem;
}

.cart-product h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cart-meta span,
.cart-line-total span,
.cart-qty label,
.summary-line span,
.cart-safe-note,
.cart-note {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
}

.cart-meta,
.cart-line-total {
  display: grid;
  gap: 6px;
}

.cart-meta strong,
.cart-line-total strong {
  color: var(--heading-color);
}

.cart-qty label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-weight: 700;
}

.cart-qty .dt-form-control {
  min-height: 42px;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cart-summary {
  position: sticky;
  top: 96px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.summary-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.summary-total strong {
  font-size: 1.35rem;
}

.checkout-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.checkout-info-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 98%);
}

.checkout-info-card i {
  color: var(--accent-color);
  font-size: 1.35rem;
}

.checkout-info-card span,
.checkout-help-text,
.checkout-item span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
}

.checkout-info-card strong {
  color: var(--heading-color);
  overflow-wrap: anywhere;
}

.checkout-total-card {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.checkout-total-card i,
.checkout-total-card span,
.checkout-total-card strong {
  color: var(--contrast-color);
}

.checkout-items {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.checkout-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.checkout-item div {
  display: grid;
  gap: 4px;
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color));
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.dashboard-hero h2 {
  margin-bottom: 10px;
}

.dashboard-hero p {
  margin-bottom: 0;
  max-width: 680px;
}

.dashboard-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 280px;
}

.dashboard-metric {
  display: grid;
  gap: 10px;
  min-height: 160px;
}

.dashboard-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  font-size: 1.45rem;
}

.dashboard-metric span,
.dashboard-activity-row span,
.dashboard-empty p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.92rem;
}

.dashboard-metric strong {
  color: var(--heading-color);
  font-size: 2rem;
  line-height: 1;
}

.dashboard-metric .status-text {
  font-size: 1.15rem;
}

.dashboard-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-card-head a {
  font-weight: 700;
}

.dashboard-activity-list {
  display: grid;
  gap: 12px;
}

.dashboard-activity-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.dashboard-activity-row > div {
  display: grid;
  gap: 5px;
}

.dashboard-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 16px;
  text-align: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.dashboard-empty i {
  color: var(--accent-color);
  font-size: 2rem;
}

.dashboard-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dashboard-action-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--default-color), transparent 98%);
  font-weight: 700;
}

.dashboard-action-card i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.dashboard-action-card:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.dashboard-action-card:hover i {
  color: var(--contrast-color);
}

.dashboard-security-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-color: color-mix(in srgb, #ffc107, transparent 50%);
  background: color-mix(in srgb, #ffc107, transparent 90%);
}

.dashboard-security-notice i {
  color: #9a6a00;
  font-size: 1.8rem;
}

.orders-list {
  display: grid;
  gap: 14px;
}

.orders-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(4, minmax(96px, 0.7fr)) minmax(110px, 0.7fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 98%);
}

.admin-orders-row {
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 1.2fr) minmax(110px, 0.7fr) minmax(120px, 0.75fr) minmax(150px, 0.9fr);
}

.orders-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.orders-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 8px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  font-size: 1.35rem;
}

.orders-main h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.orders-main span,
.orders-money span,
.orders-customer span,
.orders-customer small {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
}

.orders-money,
.orders-customer {
  display: grid;
  gap: 5px;
}

.orders-money strong,
.orders-customer strong {
  color: var(--heading-color);
}

.orders-total strong {
  color: var(--accent-color);
}

.orders-status {
  display: flex;
  justify-content: flex-start;
}

.orders-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.invoice-list,
.payment-admin-list {
  display: grid;
  gap: 14px;
}

.invoice-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(110px, 0.75fr)) minmax(170px, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 98%);
}

.invoice-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.invoice-main h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.invoice-main span,
.invoice-meta span,
.invoice-locked {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
}

.invoice-meta {
  display: grid;
  gap: 5px;
}

.invoice-meta strong {
  color: var(--heading-color);
  overflow-wrap: anywhere;
}

.invoice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.invoice-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.invoice-detail-grid > div,
.invoice-note,
.panel-admin-box {
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.invoice-detail-grid span {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.delivery-track {
  display: grid;
  gap: 12px;
}

.delivery-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  font-weight: 700;
}

.delivery-step i {
  color: var(--accent-color);
}

.delivery-step.active,
.delivery-step.done {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.delivery-step.active i,
.delivery-step.done i {
  color: var(--contrast-color);
}

.panel-login-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.panel-login-card {
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 98%);
}

.panel-login-card h4 {
  margin-bottom: 12px;
}

.panel-login-card p {
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.payment-admin-card .dt-price {
  font-size: 1.45rem;
}

.support-category-card {
  display: grid;
  gap: 12px;
}

.support-category-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  font-size: 1.5rem;
}

.support-category-card h3 {
  margin: 0;
}

.support-help-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-help-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  font-size: 0.86rem;
  font-weight: 700;
}

.support-ticket-list,
.support-admin-list {
  display: grid;
  gap: 14px;
}

.support-ticket-card,
.support-admin-card {
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 98%);
}

.support-ticket-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.support-ticket-head h4 {
  margin: 0 0 6px;
}

.support-ticket-head span,
.support-reply span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
}

.support-reply,
.support-message-box {
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.support-reply p,
.support-message-box p {
  margin: 8px 0 0;
}

.settings-info-text {
  font-size: 1rem !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere;
}

.settings-help-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.88rem;
}

.settings-group-card {
  scroll-margin-top: 110px;
}

.settings-group-head p {
  margin-bottom: 0;
}

.settings-actions-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 575px) {
  .header .logo img.dt-header-logo {
    max-height: 40px;
  }
}

@media (max-width: 991px) {
  .dt-footer-cta,
  .dt-footer-contact-strip {
    display: block;
  }

  .dt-footer-cta-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .dt-footer-assurance {
    grid-template-columns: repeat(2, 1fr);
  }

  .dt-footer-contact-strip > div + div {
    margin-top: 12px;
  }

  .refund-hero,
  .refund-cta,
  .policy-hero,
  .policy-cta,
  .faq-hero,
  .faq-cta,
  .faq-group-head {
    display: block;
  }

  .refund-hero-note,
  .refund-cta-actions,
  .policy-hero-note,
  .policy-cta-actions,
  .faq-hero-note,
  .faq-cta-actions {
    margin-top: 18px;
    max-width: none;
  }

  .refund-cta-actions,
  .policy-cta-actions,
  .faq-cta-actions {
    justify-content: flex-start;
  }

  .faq-group-head p {
    text-align: left;
    margin-top: 12px;
  }

  .about-hero,
  .about-cta {
    display: block;
  }

  .about-hero-panel,
  .about-cta-actions {
    margin-top: 20px;
    min-width: 0;
  }

  .about-cta-actions {
    justify-content: flex-start;
  }

  .about-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero,
  .contact-quick-links {
    display: block;
  }

  .contact-hero-note,
  .contact-link-actions {
    margin-top: 20px;
    max-width: none;
  }

  .contact-link-actions {
    justify-content: flex-start;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .admin-users-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-catalog-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-users-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-product-row,
  .admin-coupon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-users-main,
  .admin-catalog-main {
    grid-column: 1 / -1;
  }

  .cart-progress {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-section-head {
    display: block;
  }

  .cart-section-head .btn {
    margin-top: 16px;
    width: 100%;
  }

  .cart-item-row {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .dashboard-hero {
    display: block;
    padding: 22px;
  }

  .dashboard-hero-actions {
    justify-content: flex-start;
    min-width: 0;
    margin-top: 18px;
  }

  .dashboard-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orders-row,
  .admin-orders-row {
    grid-template-columns: 1fr 1fr;
  }

  .orders-main,
  .orders-actions {
    grid-column: 1 / -1;
  }

  .invoice-card {
    grid-template-columns: 1fr 1fr;
  }

  .invoice-main,
  .invoice-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .dt-footer-assurance {
    grid-template-columns: 1fr;
  }

  .dt-footer-cta-actions a {
    width: 100%;
    text-align: center;
  }

  .dt-profile-welcome {
    display: none;
  }

  .dt-profile-toggle {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dt-profile-dropdown {
    right: -6px;
    min-width: min(250px, calc(100vw - 24px));
  }

  .checkout-payment-grid {
    grid-template-columns: 1fr;
  }

  .checkout-item {
    display: grid;
  }

  .dashboard-hero-actions .btn,
  .dashboard-actions-grid {
    width: 100%;
  }

  .dashboard-hero {
    padding: 18px;
  }

  .dashboard-actions-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-activity-row {
    display: grid;
  }

  .dashboard-activity-row .text-end {
    text-align: left !important;
  }

  .orders-row,
  .admin-orders-row {
    grid-template-columns: 1fr;
  }

  .orders-status,
  .orders-actions .btn {
    width: 100%;
  }

  .invoice-card,
  .invoice-detail-grid,
  .panel-login-grid {
    grid-template-columns: 1fr;
  }

  .invoice-actions .btn {
    width: 100%;
  }

  .support-ticket-head {
    display: grid;
  }

  .settings-actions-grid {
    grid-template-columns: 1fr;
  }

  .cart-progress {
    grid-template-columns: 1fr;
  }

  .cart-progress-step {
    justify-content: flex-start;
  }

  .refund-cta-actions .btn,
  .policy-cta-actions .btn,
  .faq-cta-actions .btn {
    width: 100%;
  }

  .faq-category-card {
    display: block;
  }

  .faq-category-card > i {
    margin-bottom: 16px;
  }

  .faq-search-box {
    grid-template-columns: 1fr;
  }

  .faq-search-box > i {
    display: none;
  }

  .faq-search-meta {
    display: grid;
  }

  .faq-search-box .btn,
  .faq-empty-actions .btn,
  .about-hero-actions .btn,
  .about-cta-actions .btn,
  .contact-link-actions .btn,
  .auth-row-link {
    width: 100%;
  }

  .auth-panel {
    padding: 24px;
  }

  .auth-row-link {
    display: block;
    text-align: right;
  }

  .about-metrics-grid,
  .about-info-table {
    grid-template-columns: 1fr;
  }

  .admin-users-metrics,
  .admin-catalog-metrics,
  .admin-users-row {
    grid-template-columns: 1fr;
  }

  .admin-product-row,
  .admin-coupon-row {
    grid-template-columns: 1fr;
  }

  .admin-users-main h4 {
    white-space: normal;
  }

  .admin-catalog-form-section {
    padding: 14px;
  }
}

.fintech-api-section {
  background: #f7fbff;
}

.fintech-api-section h2 {
  color: #022269;
  font-weight: 800;
}

.fintech-api-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(1, 143, 238, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(2, 34, 105, 0.08);
}

.fintech-api-price span {
  color: #018fee;
  font-size: 24px;
  font-weight: 800;
}

.fintech-api-price small {
  color: #5e6b85;
  font-weight: 700;
}

.fintech-api-panel {
  padding: 24px;
  border: 1px solid rgba(2, 34, 105, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(2, 34, 105, 0.1);
}

.fintech-api-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fintech-api-feature {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(1, 143, 238, 0.12);
  border-radius: 14px;
  background: #f8fbff;
}

.fintech-api-feature i {
  color: #018fee;
  font-size: 24px;
}

.fintech-api-feature strong {
  color: #022269;
}

.fintech-api-feature span {
  color: #5e6b85;
  font-size: 14px;
}

.fintech-api-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fintech-api-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #eef7ff;
}

.fintech-api-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #018fee;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
}

.fintech-api-step p {
  margin: 0;
  color: #022269;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .fintech-api-feature-grid,
  .fintech-api-steps {
    grid-template-columns: 1fr;
  }

  .fintech-api-panel {
    padding: 16px;
  }

  .fintech-api-section .btn {
    width: 100%;
  }
}

.api-docs-hero {
  padding-top: 140px;
  background: #f7fbff;
}

.api-docs-hero h1 {
  color: #022269;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 850;
  line-height: 1.05;
}

.api-docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.api-docs-card {
  padding: 26px;
  border: 1px solid rgba(1, 143, 238, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(2, 34, 105, 0.1);
}

.api-docs-card h3 {
  color: #022269;
  font-weight: 800;
  margin-bottom: 18px;
}

.api-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(2, 34, 105, 0.08);
}

.api-auth-row:last-child {
  border-bottom: 0;
}

.api-auth-row span {
  color: #5e6b85;
  font-size: 14px;
}

.api-auth-row strong,
.api-auth-row code,
.api-auth-row a {
  color: #022269;
  font-weight: 800;
}

.api-docs-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.api-docs-metrics div,
.api-flow-card {
  padding: 20px;
  border: 1px solid rgba(1, 143, 238, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(2, 34, 105, 0.06);
}

.api-docs-metrics i,
.api-flow-card i {
  color: #018fee;
  font-size: 28px;
}

.api-docs-metrics strong {
  display: block;
  color: #022269;
  font-size: 26px;
  font-weight: 850;
  margin-top: 10px;
}

.api-docs-metrics span,
.api-flow-card p {
  color: #5e6b85;
}

.api-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.api-flow-card h4 {
  color: #022269;
  font-weight: 800;
  margin-top: 14px;
}

.api-endpoint-group {
  border: 1px solid rgba(2, 34, 105, 0.1);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 26px rgba(2, 34, 105, 0.05);
}

.api-endpoint-group .accordion-button {
  display: grid;
  gap: 4px;
  background: #ffffff;
  color: #022269;
  font-weight: 850;
  box-shadow: none;
}

.api-endpoint-group .accordion-button small {
  color: #5e6b85;
  font-weight: 500;
}

.api-endpoint-list {
  display: grid;
  gap: 12px;
}

.api-endpoint-row {
  display: grid;
  grid-template-columns: 86px minmax(190px, 260px) 1fr;
  align-items: start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #f8fbff;
}

.api-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
}

.api-method-get {
  background: #018fee;
}

.api-method-post {
  background: #12a661;
}

.api-method-patch {
  background: #e09b14;
}

.api-endpoint-row code {
  color: #022269;
  white-space: normal;
  word-break: break-word;
}

.api-endpoint-row strong {
  color: #022269;
}

.api-endpoint-row p {
  margin: 4px 0 0;
  color: #5e6b85;
  font-size: 14px;
}

.api-swagger-shell {
  overflow: hidden;
  border: 1px solid rgba(2, 34, 105, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(2, 34, 105, 0.1);
}

.api-swagger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(2, 34, 105, 0.08);
  background: #022269;
  color: #ffffff;
}

.api-swagger-head strong,
.api-swagger-head span {
  display: block;
}

.api-swagger-head span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.api-swagger-head a {
  color: #ffffff;
  font-weight: 800;
}

.api-swagger-loading {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: #5e6b85;
}

.api-swagger-loading i {
  color: #018fee;
  font-size: 34px;
}

#swagger-ui {
  min-height: 360px;
}

#swagger-ui .swagger-ui .topbar {
  display: none;
}

@media (max-width: 991px) {
  .api-docs-metrics,
  .api-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .api-endpoint-row {
    grid-template-columns: 76px 1fr;
  }

  .api-endpoint-row > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .api-docs-actions .btn,
  .api-docs-metrics,
  .api-flow-grid {
    width: 100%;
  }

  .api-docs-metrics,
  .api-flow-grid,
  .api-endpoint-row {
    grid-template-columns: 1fr;
  }

  .api-swagger-head {
    display: grid;
  }
}

.home-api-promo {
  background: #f7fbff;
}

.home-api-feature {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(1, 143, 238, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.92)),
    #ffffff;
  box-shadow: 0 28px 80px rgba(2, 34, 105, 0.12);
}

.home-api-feature:before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(1, 143, 238, 0.12);
}

.home-api-feature p {
  color: #42526e;
  font-size: 17px;
}

.home-api-promo h2,
.finapi-hero h1,
.finapi-business h2,
.finapi-docs-panel h2,
.finapi-buy h2 {
  color: #022269;
  font-weight: 850;
}

.home-api-promo-actions,
.finapi-hero-actions,
.finapi-docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.finapi-buy-inline {
  display: inline-flex;
  margin: 0;
}

.finapi-buy-inline .btn {
  white-space: nowrap;
}

.home-api-promo-card {
  padding: 26px;
  border: 1px solid rgba(1, 143, 238, 0.14);
  border-radius: 20px;
  background: #f8fbff;
  box-shadow: 0 18px 44px rgba(2, 34, 105, 0.08);
}

.home-api-promo-card > span,
.finapi-buy-card > .dt-badge {
  color: #018fee;
  font-weight: 800;
}

.home-api-promo-card strong {
  display: block;
  color: #022269;
  font-size: 30px;
  font-weight: 900;
  margin-top: 8px;
}

.home-api-promo-card small {
  color: #5e6b85;
  font-weight: 700;
}

.home-api-flow-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-api-flow-chart:before {
  content: "";
  position: absolute;
  inset: 42px 42px;
  border: 1px dashed rgba(1, 143, 238, 0.35);
  border-radius: 22px;
}

.home-api-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 104px;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(1, 143, 238, 0.14);
  border-radius: 18px;
  background: #ffffff;
  color: #022269;
  text-align: center;
  font-weight: 850;
  box-shadow: 0 16px 40px rgba(2, 34, 105, 0.08);
}

.home-api-node i {
  color: #018fee;
  font-size: 26px;
}

.home-api-node span {
  color: #5e6b85;
  font-size: 13px;
  font-weight: 700;
}

.home-api-node.node-main {
  grid-column: 1 / -1;
  min-height: 120px;
  color: #ffffff;
  background: #022269;
}

.home-api-node.node-main i,
.home-api-node.node-main span {
  color: #ffffff;
}

.home-api-mini-stats {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.home-api-mini-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
}

.home-api-mini-stats b {
  color: #018fee;
  font-weight: 900;
}

.home-api-mini-stats span {
  color: #5e6b85;
  font-size: 13px;
  font-weight: 700;
}

.fintech-api-sales-page .section {
  scroll-margin-top: 90px;
}

.finapi-hero {
  padding-top: 140px;
  background:
    linear-gradient(135deg, rgba(1, 143, 238, 0.08), rgba(2, 34, 105, 0.04)),
    #f7fbff;
}

.finapi-hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
}

.finapi-hero .lead {
  color: #42526e;
  font-size: 18px;
}

.finapi-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.finapi-quick-stats div {
  padding: 14px;
  border: 1px solid rgba(1, 143, 238, 0.14);
  border-radius: 14px;
  background: #ffffff;
}

.finapi-quick-stats strong,
.finapi-quick-stats span {
  display: block;
}

.finapi-quick-stats strong {
  color: #022269;
  font-weight: 850;
}

.finapi-quick-stats span {
  color: #5e6b85;
  font-size: 13px;
  margin-top: 3px;
}

.finapi-visual {
  position: relative;
  min-height: 520px;
}

.finapi-visual-img {
  width: 86%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(2, 34, 105, 0.18);
}

.finapi-code-card {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(430px, 92%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #071d3f;
  color: #dcecff;
  box-shadow: 0 26px 70px rgba(2, 34, 105, 0.28);
}

.finapi-code-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.finapi-code-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #018fee;
}

.finapi-code-head span:nth-child(2) {
  background: #12a661;
}

.finapi-code-head span:nth-child(3) {
  background: #e09b14;
}

.finapi-code-head strong {
  margin-left: auto;
  color: #ffffff;
  font-size: 13px;
}

.finapi-code-card pre {
  margin: 0;
  padding: 18px;
  color: #dcecff;
  font-size: 14px;
  white-space: pre-wrap;
}

.finapi-floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #022269;
  font-weight: 850;
  box-shadow: 0 16px 40px rgba(2, 34, 105, 0.14);
}

.finapi-floating-card i {
  color: #018fee;
}

.finapi-card-one {
  top: 34px;
  right: 44px;
}

.finapi-card-two {
  left: 28px;
  bottom: 84px;
}

.finapi-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.finapi-chip,
.finapi-service-card,
.finapi-secure-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(1, 143, 238, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #022269;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(2, 34, 105, 0.05);
}

.finapi-chip i,
.finapi-service-card i,
.finapi-secure-card i {
  color: #018fee;
  font-size: 20px;
}

.finapi-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.finapi-service-card {
  justify-content: center;
  min-height: 92px;
  text-align: center;
  flex-direction: column;
}

.finapi-benefit-card,
.finapi-group-card,
.finapi-business-card,
.finapi-sdk-panel,
.finapi-buy-card,
.finapi-faq-item {
  border: 1px solid rgba(1, 143, 238, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(2, 34, 105, 0.07);
}

.finapi-benefit-card,
.finapi-group-card,
.finapi-business-card,
.finapi-sdk-panel,
.finapi-buy-card {
  padding: 22px;
}

.finapi-benefit-card i,
.finapi-group-card > i {
  color: #018fee;
  font-size: 32px;
}

.finapi-benefit-card h3,
.finapi-group-card h3,
.finapi-business-card h3,
.finapi-buy-card h3 {
  color: #022269;
  font-size: 19px;
  font-weight: 850;
  margin-top: 16px;
}

.finapi-benefit-card p,
.finapi-business-card p,
.finapi-buy-card p {
  color: #5e6b85;
}

.finapi-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.finapi-timeline-item {
  position: relative;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(2, 34, 105, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(2, 34, 105, 0.06);
}

.finapi-timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #018fee;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 18px;
}

.finapi-timeline-item h3 {
  color: #022269;
  font-size: 17px;
  font-weight: 850;
}

.finapi-timeline-item p {
  color: #5e6b85;
  font-size: 14px;
}

.finapi-group-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #5e6b85;
}

.finapi-business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.finapi-sdk-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.finapi-sdk-list span {
  padding: 10px 12px;
  border-radius: 999px;
  background: #eef7ff;
  color: #022269;
  font-weight: 800;
}

.finapi-docs-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(1, 143, 238, 0.14);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(2, 34, 105, 0.1);
}

.finapi-secure-card {
  min-height: 100px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.finapi-buy {
  background: #ffffff;
}

.finapi-buy-card {
  position: sticky;
  top: 104px;
}

.finapi-buy-price {
  padding: 18px;
  border-radius: 16px;
  background: #f7fbff;
  margin: 18px 0;
}

.finapi-buy-price strong,
.finapi-buy-price span {
  display: block;
}

.finapi-buy-price strong {
  color: #018fee;
  font-size: 30px;
  font-weight: 900;
}

.finapi-buy-price span {
  color: #5e6b85;
  font-weight: 700;
}

.finapi-faq-item {
  overflow: hidden;
  margin-bottom: 12px;
}

.finapi-faq-item .accordion-button {
  color: #022269;
  font-weight: 850;
  box-shadow: none;
}

.finapi-faq-item .accordion-body {
  color: #5e6b85;
}

@media (max-width: 1199px) {
  .finapi-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .finapi-service-grid,
  .finapi-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .finapi-visual {
    min-height: 460px;
  }

  .home-api-feature {
    padding: 24px;
  }

  .finapi-quick-stats,
  .finapi-chip-grid,
  .finapi-service-grid,
  .finapi-business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finapi-docs-panel {
    display: grid;
  }

  .finapi-buy-card {
    position: static;
  }
}

@media (max-width: 575px) {
  .home-api-promo-actions .btn,
  .finapi-buy-inline,
  .finapi-buy-inline .btn,
  .finapi-hero-actions .btn,
  .finapi-docs-actions .btn {
    width: 100%;
  }

  .home-api-feature {
    padding: 18px;
    border-radius: 20px;
  }

  .home-api-flow-chart {
    grid-template-columns: 1fr;
  }

  .home-api-flow-chart:before {
    display: none;
  }

  .finapi-quick-stats,
  .finapi-chip-grid,
  .finapi-service-grid,
  .finapi-timeline,
  .finapi-business-grid {
    grid-template-columns: 1fr;
  }

  .finapi-visual {
    min-height: auto;
  }

  .finapi-visual-img {
    width: 100%;
    min-height: 280px;
  }

  .finapi-code-card,
  .finapi-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .finapi-docs-panel,
  .finapi-buy-card {
    padding: 20px;
  }
}
