@font-face {
  font-family: "SGFanoos";
  src: url("SGFanoos-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SGFanoos";
  src: url("SGFanoos-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #4285f4;
  --ink: #0f172a;
  --muted: #475569;
  --panel: rgba(2, 6, 23, 0.03);
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --g-blue: #4285f4;
  --g-red: #ea4335;
  --g-yellow: #fbbc05;
  --g-green: #34a853;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  background: #f8fafc;
  color: var(--ink);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Background grid */
.bg-grid {
  background-image:
    radial-gradient(circle at 30% 10%, rgba(66, 133, 244, 0.12), transparent 46%),
    radial-gradient(circle at 90% 0%, rgba(66, 133, 244, 0.08), transparent 45%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.03), transparent 35%),
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: auto, auto, auto, 44px 44px, 44px 44px;
  background-position: 0 0, 0 0, 0 0, -1px -1px, -1px -1px;
}


.hero-section {
  background-color: #ffffff;
}

.section {
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.section-alt {
  background: #ffffff;
}

.section-warm {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 255, 255, 0.9));
}

.glow {
  position: relative;
  overflow: hidden;
}

.glow::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 186, 120, 0.22), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(66, 133, 244, 0.16), transparent 45%);
  z-index: -1;
  filter: blur(6px);
}

.google-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-blue { background: var(--g-blue); }
.dot-red { background: var(--g-red); }
.dot-yellow { background: var(--g-yellow); }
.dot-green { background: var(--g-green); }

.ads-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ads-mark img {
  width: 26px;
  height: 26px;
  display: block;
}

.hero-media {
  position: relative;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 20% 10%, rgba(66, 133, 244, 0.16), transparent 60%),
    radial-gradient(420px 260px at 85% 15%, rgba(52, 168, 83, 0.14), transparent 60%),
    radial-gradient(320px 220px at 80% 85%, rgba(251, 188, 5, 0.12), transparent 55%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.03), transparent 40%);
  pointer-events: none;
}

.hero-media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.service-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(66, 133, 244, 0.35);
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.service-tag {
  font-size: 11px;
  color: var(--primary);
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.15);
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}

.service-desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

.service-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.service-list div::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.8);
  margin-left: 8px;
  vertical-align: middle;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-item:hover {
  color: var(--ink);
  background: #f1f5f9;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 8px;
  display: none;
  z-index: 30;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
}

.dropdown-link:hover {
  background: #f8fafc;
  color: var(--ink);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(66, 133, 244, 0.15);
  background: rgba(66, 133, 244, 0.08);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--primary);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.section-lead {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 52ch;
}

.stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.stat-title {
  font-size: 12px;
  color: var(--muted);
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.step-grid {
  display: grid;
  gap: 12px;
}

.step-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-index {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.step-desc {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.link-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.link-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.link-card-desc {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.link-card-action {
  font-size: 12px;
  color: var(--primary);
  white-space: nowrap;
}

.price-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.price-tag {
  font-size: 11px;
  color: var(--primary);
  border: 1px solid rgba(66, 133, 244, 0.2);
  background: rgba(66, 133, 244, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  width: fit-content;
}

.price-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.price-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid var(--slate-200);
  padding: 10px 12px;
  text-align: right;
}

.pricing-table th {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 700;
}

.cta-banner {
  border: 1px solid var(--slate-200);
  background: linear-gradient(120deg, rgba(66, 133, 244, 0.08), rgba(255, 255, 255, 0.9));
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.cta-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 6px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
}

.tag-pill.is-active {
  border-color: rgba(66, 133, 244, 0.45);
  background: rgba(66, 133, 244, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.post-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.post-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.post-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.post-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
}

.post-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.post-link {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(66, 133, 244, 0.35);
  background: #f8fafc;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(66, 133, 244, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card--whatsapp .contact-card-icon {
  background: #e9f9ef;
  color: #25d366;
}

.contact-card--ticket .contact-card-icon {
  background: #eef2ff;
  color: #6366f1;
}

.contact-card--email .contact-card-icon {
  background: #fef3c7;
  color: #f59e0b;
}

.contact-card--phone .contact-card-icon {
  background: #e0f2fe;
  color: #0ea5e9;
}

.contact-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.contact-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-card-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.form-panel {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.form-panel--compact {
  padding: 20px;
  gap: 12px;
}

.form-panel--compact .form-stack {
  gap: 12px;
}

.form-panel--compact .form-input,
.form-panel--compact .form-textarea {
  padding: 10px 12px;
  font-size: 12px;
}

.form-panel--compact .form-label {
  font-size: 11px;
}

.form-panel--compact .form-submit {
  padding: 10px 16px;
  font-size: 12px;
}

.form-header {
  display: grid;
  gap: 6px;
}

.form-stack {
  margin-top: 8px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  color: var(--muted);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(66, 133, 244, 0.45);
}

.method-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-pill {
  position: relative;
  display: inline-flex;
}

.method-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.method-pill span {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--muted);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.method-pill input:checked + span {
  border-color: rgba(66, 133, 244, 0.45);
  background: rgba(66, 133, 244, 0.12);
  color: var(--ink);
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.form-help {
  font-size: 12px;
  color: var(--muted);
}

.form-submit {
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.form-submit:hover {
  filter: brightness(0.95);
}

.info-panel {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-title {
  font-size: 12px;
  color: var(--muted);
}

.info-meta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.info-note {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px dashed var(--slate-200);
  padding-top: 12px;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #cbd5f5;
  background: #ffffff;
  transition: all 0.2s ease;
}

.radio-text {
  transition: color 0.2s ease;
}

.radio-pill input:checked + .radio-dot {
  border-color: var(--g-blue);
  background: var(--g-blue);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.12);
}

.radio-pill input:checked + .radio-dot + .radio-text {
  color: var(--ink);
}

.range-wrap {
  width: 100%;
}

.range-wrap input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66,133,244,0.9), rgba(66,133,244,0.2));
  outline: none;
}

.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--g-blue);
}

.range-wrap input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--g-blue);
}

.result-card {
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 16px;
}

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

.faq-row {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: right;
  background: transparent;
  border: none;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: var(--primary);
  line-height: 1;
}

.faq-row.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}

.seo-box {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: #ffffff;
  padding: 16px;
}

.seo-content {
  max-height: 110px;
  overflow: hidden;
  position: relative;
}

.seo-content.is-open {
  max-height: none;
}

.seo-content.is-open .seo-fade {
  display: none;
}

.seo-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}

.seo-toggle {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
}

.cert-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-icon {
  width: 40px;
  height: auto;
}

footer {
  width: 100%;
}

footer > div:first-child {
  width: 100%;
  text-align: center;
}

footer > div:last-child {
  width: 100%;
  justify-content: center;
}

.cert-row {
  width: 100%;
  justify-content: center;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.seo-table th,
.seo-table td {
  border: 1px solid var(--slate-200);
  padding: 10px;
  text-align: right;
}

.seo-table th {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 700;
}

.seo-figure {
  max-width: 360px;
  margin: 14px auto;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
}

.seo-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.seo-list {
  margin: 10px 0 0;
  padding: 0 18px 0 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.seo-list li {
  list-style: disc;
}

.client-logo {
  height: 24px;
  width: auto;
  opacity: 0.6;
  color: var(--g-blue);
  display: block;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.logo-item {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 16px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.logo-grid .logo-item:nth-child(4n+1) .client-logo { color: var(--g-blue); }
.logo-grid .logo-item:nth-child(4n+2) .client-logo { color: var(--g-green); }
.logo-grid .logo-item:nth-child(4n+3) .client-logo { color: var(--g-yellow); }
.logo-grid .logo-item:nth-child(4n+4) .client-logo { color: var(--g-red); }

.testimonial-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Utilities */
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.inset-0 { inset: 0; }
.z-40 { z-index: 40; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none !important; }

.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-auto { margin-top: auto; }

.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-12 { padding-top: 3rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.h-1\.5 { height: 0.375rem; }
.w-1\.5 { width: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-9 { height: 2.25rem; }
.w-9 { width: 2.25rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.max-w-6xl { max-width: 72rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }
.max-w-\[52ch\] { max-width: 52ch; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.border { border: 1px solid var(--slate-200); }
.border-b { border-bottom: 1px solid var(--slate-200); }
.border-t { border-top: 1px solid var(--slate-200); }

.hover\:bg-slate-50:hover { background: #f8fafc; }
.hover\:brightness-95:hover { filter: brightness(0.95); }
.hover\:text-ink:hover { color: var(--ink); }

@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:text-\[14px\] { font-size: 14px; }
  .md\:text-\[15px\] { font-size: 15px; }
  .md\:text-\[26px\] { font-size: 26px; }
  .md\:text-\[40px\] { font-size: 40px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
}

.shadow-soft { box-shadow: none; }
.shadow-line { box-shadow: none; }

.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-\[1\.25\] { line-height: 1.25; }
.leading-\[1\.35\] { line-height: 1.35; }
.tracking-tight { letter-spacing: -0.02em; }

.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[22px\] { font-size: 22px; }
.text-\[30px\] { font-size: 30px; }

.text-primary { color: var(--primary); }
.text-ink { color: var(--ink); }
.text-muted { color: var(--muted); }
.text-white { color: #ffffff; }

.bg-primary { background-color: var(--primary); }
.bg-primary\/5 { background-color: rgba(66, 133, 244, 0.05); }
.bg-primary\/8 { background-color: rgba(66, 133, 244, 0.08); }
.bg-primary\/10 { background-color: rgba(66, 133, 244, 0.10); }
.bg-primary\/12 { background-color: rgba(66, 133, 244, 0.12); }
.bg-primary\/45 { background-color: rgba(66, 133, 244, 0.45); }
.bg-primary\/55 { background-color: rgba(66, 133, 244, 0.55); }
.bg-primary\/70 { background-color: rgba(66, 133, 244, 0.70); }
.bg-primary\/80 { background-color: rgba(66, 133, 244, 0.80); }

.bg-slate-100 { background-color: var(--slate-100); }
.bg-white { background-color: #ffffff; }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.70); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.80); }
.bg-warm { background-color: #fff7ed; }

.border-slate-200 { border-color: var(--slate-200); }
.border-slate-200\/70 { border-color: rgba(226, 232, 240, 0.70); }
.border-primary\/15 { border-color: rgba(66, 133, 244, 0.15); }
.border-primary\/20 { border-color: rgba(66, 133, 244, 0.20); }

.underline { text-decoration: underline; }
.decoration-primary\/30 { text-decoration-color: rgba(66, 133, 244, 0.30); }

.whitespace-nowrap { white-space: nowrap; }

.backdrop-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.transition { transition: all 0.2s ease; }

.hover\:bg-slate-50:hover { background-color: var(--slate-50); }
.hover\:brightness-95:hover { filter: brightness(0.95); }
.hover\:shadow-soft:hover { box-shadow: none; }
.hover\:text-ink:hover { color: var(--ink); }

.group:hover .group-hover\:bg-primary\/12 { background-color: rgba(66, 133, 244, 0.12); }
.group:hover .group-hover\:decoration-primary\/60 { text-decoration-color: rgba(66, 133, 244, 0.60); }

.w-\[78\%\] { width: 78%; }
.w-\[85\%\] { width: 85%; }
.w-\[88\%\] { width: 88%; }

.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:inline-flex { display: inline-flex; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-footer { flex-direction: row; align-items: center; justify-content: space-between; }
  footer > div:first-child {
    width: auto;
    text-align: right;
  }
  footer > div:last-child {
    width: auto;
  }
  .cert-row {
    width: auto;
    justify-content: flex-end;
  }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:items-end { align-items: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:text-\[14px\] { font-size: 14px; }
  .md\:text-\[15px\] { font-size: 15px; }
  .md\:text-\[26px\] { font-size: 26px; }
  .md\:text-\[40px\] { font-size: 40px; }
  .cert-icon { width: 56px; }
  .client-logo { height: 28px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
}

/* Auth + Dashboard */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.98));
}

.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.98));
}

.auth-card {
  width: min(420px, 92vw);
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}

.auth-brand {
  display: flex;
  justify-content: center;
}

.auth-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.auth-brand-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.auth-brand-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
}

.auth-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.auth-tab {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--muted);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  cursor: pointer;
}

.auth-tab.is-active {
  border-color: rgba(66, 133, 244, 0.45);
  color: var(--primary);
  background: rgba(66, 133, 244, 0.08);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form.hidden {
  display: none;
}

.auth-panel {
  display: grid;
  gap: 14px;
}

.auth-panel.hidden {
  display: none;
}

.auth-message {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534;
  font-size: 12px;
}

.password-meter {
  display: grid;
  gap: 6px;
}

.password-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.password-bar span {
  display: block;
  height: 100%;
  width: 0%;
  transition: width 0.2s ease;
}

.password-bar span.weak { background: #ef4444; }
.password-bar span.medium { background: #f59e0b; }
.password-bar span.strong { background: #10b981; }

.password-strength {
  font-size: 11px;
  color: var(--muted);
}

.auth-field {
  display: grid;
  gap: 7px;
  margin: 0;
}

.auth-field label {
  font-size: 11px;
  color: var(--muted);
}

.auth-field input,
.auth-field select {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
  min-height: 42px;
  font-size: 12px;
  color: var(--ink);
  font-family: inherit;
}

.auth-field textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
  min-height: 96px;
  font-size: 12px;
  color: var(--ink);
  font-family: inherit;
  resize: vertical;
}

.auth-field--full {
  grid-column: 1 / -1;
}

.dash-sheba-input {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 12px;
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.dash-sheba-input > span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.dash-sheba-input > input {
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  width: 100%;
  direction: ltr;
  text-align: left;
}

.dash-sheba-input > input:focus {
  outline: none;
}

.auth-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 4px;
}

.auth-form > .auth-btn,
.auth-panel > .auth-btn {
  margin-top: 4px;
}

.auth-btn {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.auth-btn--primary {
  background: var(--primary);
  border-color: transparent;
  color: #ffffff;
}

.auth-btn--whatsapp {
  background: #25d366;
  border-color: transparent;
  color: #ffffff;
}

.auth-btn--danger {
  background: #ef4444;
  border-color: transparent;
  color: #ffffff;
}

.auth-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.auth-btn.is-loading {
  position: relative;
  padding-inline-start: 34px;
}

.auth-btn.is-loading::before {
  content: "";
  position: absolute;
  inset-inline-start: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-inline-end-color: transparent;
  animation: dashSpin 0.85s linear infinite;
}

.auth-footer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.auth-success {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.auth-success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.auth-success-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.auth-success-brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.auth-success-dots {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 28px;
}

.auth-success-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
  animation: authDotBounce 0.9s ease-in-out infinite;
}

.auth-success-dot--blue {
  background: #4285f4;
  animation-delay: 0s;
}

.auth-success-dot--red {
  background: #ea4335;
  animation-delay: 0.12s;
}

.auth-success-dot--yellow {
  background: #fbbc05;
  animation-delay: 0.24s;
}

.auth-success-dot--green {
  background: #34a853;
  animation-delay: 0.36s;
}

.auth-success-text {
  font-size: 13px;
  color: var(--muted);
}

.auth-admin-choice {
  position: fixed;
  inset: 0;
  z-index: 121;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(248, 250, 252, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-admin-choice-card {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
  padding: 24px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.auth-admin-choice-kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.auth-admin-choice-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.auth-admin-choice-card p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
}

.auth-admin-choice-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .auth-admin-choice-card {
    border-radius: 24px;
    padding: 20px;
  }

  .auth-admin-choice-card h3 {
    font-size: 19px;
  }
}

.dash-body {
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(66, 133, 244, 0.12), transparent 65%),
    radial-gradient(720px 360px at 10% -20%, rgba(52, 168, 83, 0.08), transparent 60%),
    #f8fafc;
  color: var(--ink);
  overflow-x: clip;
}

body.dash-mobile-menu-open {
  overflow: hidden;
}

.dash-body .dash-shell {
  min-height: 100vh;
  display: grid;
  gap: 16px;
  padding: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-content: start;
  min-width: 0;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-top-user,
.dash-date {
  min-height: 42px;
  border-radius: 16px;
}

.dash-top-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 14px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.96));
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.dash-top-user-avatar,
.dash-mobile-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.dash-top-user-copy,
.dash-mobile-user-copy {
  display: grid;
  gap: 1px;
  line-height: 1.3;
  min-width: 0;
}

.dash-top-user-copy strong,
.dash-mobile-user-copy strong {
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-top-user-copy small,
.dash-mobile-user-copy small {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-mobile-user-card {
  display: none;
}

.dash-support-quick {
  display: none;
  position: relative;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: #334155;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dash-support-quick-badge {
  position: absolute;
  top: -4px;
  inset-inline-start: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(254, 202, 202, 0.82);
  color: #dc2626;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dash-menu-toggle {
  display: none;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--ink);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dash-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  padding: 6px 10px 6px 13px;
}

.dash-date-icon {
  width: 18px;
  height: 18px;
  color: #4285f4;
  flex: 0 0 auto;
}

.dash-date-copy {
  display: grid;
  gap: 1px;
  line-height: 1.25;
}

.dash-date-copy strong {
  font-size: 11px;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

.dash-date-copy small {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  white-space: nowrap;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.dash-brand-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.dash-brand-mark {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}

.dash-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dash-layout {
  display: grid;
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.dash-mobile-backdrop {
  display: none;
}

.dash-sidebar {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 8px;
  min-width: 0;
}

@media (min-width: 1024px) {
  .dash-sidebar {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 28px);
    overflow: auto;
  }
}

.dash-link {
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  background: #f8fafc;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.dash-link-badge {
  margin-inline-start: auto;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(254, 202, 202, 0.45);
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.dash-link.is-active {
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  border: 1px solid rgba(66, 133, 244, 0.2);
}

.dash-link--danger {
  margin-top: 10px;
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(254, 242, 242, 0.8);
  color: #b91c1c;
}

.dash-link--danger .text-muted {
  color: #b91c1c;
}

.dash-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.dash-view {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.dash-view.hidden {
  display: none;
}

.dash-view.is-entering {
  animation: dashFadeUp 0.22s ease;
}

.dash-section {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.dash-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.dash-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dash-inline-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-load-more {
  margin-top: 10px;
}

.dash-list-pagination {
  margin-top: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: linear-gradient(180deg, #fcfdff, #ffffff);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-list-pagination__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px;
}

.dash-list-pagination__nums {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.dash-list-pagination__nav,
.dash-list-pagination__page {
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: #fff;
  color: #1f2937;
  border-radius: 10px;
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.dash-list-pagination__page.is-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.24);
}

.dash-list-pagination__dots {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1;
}

.dash-list-pagination__nav[disabled],
.dash-list-pagination__page[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .dash-list-pagination__controls {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 4px;
  }

  .dash-list-pagination__nav {
    min-width: 28px;
    height: 30px;
    padding: 0 7px;
  }
}

.dash-main-grid {
  display: grid;
  gap: 16px;
}

.dash-stack {
  display: grid;
  gap: 16px;
}

.dash-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.dash-card--accent {
  border-color: rgba(66, 133, 244, 0.3);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.08), #ffffff 65%);
}

.dash-full {
  width: 100%;
}

.dash-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dash-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.dash-card--rates {
  display: grid;
  gap: 10px;
}

.dash-rate-list {
  display: grid;
  gap: 8px;
}

.dash-rate-item {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #f8fafc;
}

.dash-rate-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.dash-rate-item strong {
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
}

.dash-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px dashed var(--slate-200);
}

.dash-row:last-child {
  border-bottom: none;
}

.dash-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.dash-pill--success {
  background: rgba(16, 185, 129, 0.16);
  color: #047857;
}

.dash-pill--warning {
  background: rgba(251, 146, 60, 0.16);
  color: #c2410c;
}

.dash-pill--info {
  background: rgba(59, 130, 246, 0.16);
  color: #1d4ed8;
}

.dash-pill--muted {
  background: rgba(148, 163, 184, 0.2);
  color: #64748b;
}

.dash-pill--danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.dash-pill.dash-pill--danger {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.dash-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

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

.dash-services {
  display: grid;
  gap: 12px;
}

.dash-service {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.dash-service--premium {
  border-color: rgba(66, 133, 244, 0.2);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.05), #ffffff 70%);
}

.dash-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-service-stats {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.dash-service-stat {
  border: 1px dashed var(--slate-200);
  border-radius: 14px;
  padding: 10px;
  font-size: 11px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.dash-service-stat strong {
  font-size: 12px;
  color: var(--ink);
}

.dash-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dash-radio-group--stack {
  display: grid;
  gap: 10px;
}

.dash-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  font-size: 12px;
  color: var(--muted);
}

.dash-radio strong {
  display: block;
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
}

.dash-radio small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.dash-radio input {
  accent-color: var(--primary);
}

.dash-new-service {
  border: 1px solid rgba(66, 133, 244, 0.2);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.dash-new-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-new-service-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.dash-new-service-form {
  display: grid;
  gap: 14px;
}

.dash-order-stepper {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dash-order-step {
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  color: var(--muted);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  cursor: default;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dash-order-step-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.dash-order-step.is-active {
  border-color: rgba(66, 133, 244, 0.5);
  background: rgba(66, 133, 244, 0.08);
  color: var(--primary);
}

.dash-order-step.is-done {
  border-color: rgba(52, 168, 83, 0.35);
  background: rgba(52, 168, 83, 0.08);
  color: #166534;
}

.dash-order-step.is-active .dash-order-step-icon {
  border-color: transparent;
  background: var(--primary);
  color: #ffffff;
}

.dash-order-step.is-done .dash-order-step-icon {
  border-color: transparent;
  background: #22c55e;
  color: #ffffff;
}

.dash-order-stage {
  display: grid;
  gap: 14px;
}

.dash-stage-block {
  display: grid;
  gap: 12px;
}

.dash-stage-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.dash-stage-note {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.dash-order-grid {
  display: grid;
  gap: 10px;
}

.dash-order-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.dash-order-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dash-order-option {
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 4px;
  text-align: right;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dash-order-option strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}

.dash-order-option small {
  font-size: 12px;
  color: var(--muted);
}

.dash-order-option.is-selected {
  border-color: rgba(66, 133, 244, 0.5);
  background: rgba(66, 133, 244, 0.08);
}

.dash-order-option.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.dash-order-option--service {
  padding: 10px 11px;
  border-radius: 12px;
  gap: 6px;
  min-height: 74px;
}

.dash-order-option-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #ffffff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-order-option--service strong {
  font-size: 13px;
  line-height: 1.4;
}

.dash-order-option--service small {
  width: fit-content;
  border-radius: 999px;
  padding: 2px 7px;
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  font-size: 11px;
}

.dash-order-option--service.is-disabled small {
  background: rgba(148, 163, 184, 0.2);
  color: #64748b;
}

.dash-amount-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.dash-currency-switch {
  display: inline-flex;
  gap: 8px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 4px;
  background: #f8fafc;
}

.dash-currency-pill {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dash-currency-pill.is-selected {
  background: #ffffff;
  border-color: rgba(66, 133, 244, 0.3);
  color: var(--primary);
}

.dash-deposit-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.dash-deposit-methods .dash-currency-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-color: var(--slate-200);
  background: #ffffff;
  color: var(--ink);
}

.dash-deposit-methods .dash-currency-pill.is-selected {
  background: rgba(66, 133, 244, 0.1);
  border-color: rgba(66, 133, 244, 0.4);
  color: var(--primary);
}

.dash-live-preview {
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.08), #ffffff 80%);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.dash-live-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.dash-live-preview-head small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.dash-live-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.dash-live-preview-row strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
}

.dash-live-preview-row--total {
  border-top: 1px dashed var(--slate-200);
  padding-top: 8px;
  margin-top: 2px;
}

.dash-live-preview-row--total strong {
  color: var(--primary);
}

.dash-amount-chip {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  cursor: pointer;
}

.dash-amount-chip.is-selected {
  background: var(--primary);
  border-color: transparent;
  color: #ffffff;
}

.dash-order-fields {
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .dash-order-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.dash-invoice-option {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink);
  width: fit-content;
}

.dash-order-warning {
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.12);
  color: #92400e;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.9;
}

.dash-billing-preview {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.06), #ffffff 80%);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.dash-discount-box {
  border: 1px dashed rgba(66, 133, 244, 0.32);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.9);
  padding: 10px 12px;
}

.dash-discount-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  cursor: pointer;
  text-align: right;
}

.dash-discount-toggle-title {
  display: grid;
  gap: 3px;
}

.dash-discount-toggle-title strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.dash-discount-toggle-title small {
  font-size: 11px;
  color: #64748b;
  line-height: 1.8;
}

.dash-discount-toggle svg {
  color: #64748b;
  transition: transform 0.2s ease;
}

.dash-discount-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.dash-discount-body {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.dash-discount-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-discount-inline input {
  flex: 1 1 220px;
  min-width: 180px;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: #ffffff;
  padding: 0 12px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dash-discount-inline input:focus {
  border-color: rgba(66, 133, 244, 0.5);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.14);
}

.dash-discount-inline input::placeholder {
  color: #94a3b8;
}

.dash-billing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.dash-billing-row span:last-child {
  color: var(--ink);
}

.dash-billing-row--total {
  border-top: 1px dashed var(--slate-200);
  padding-top: 8px;
  margin-top: 4px;
  font-weight: 700;
}

.dash-billing-row--total span {
  color: var(--ink);
}

.dash-billing-row--wallet {
  border-top: 1px dashed rgba(148, 163, 184, 0.3);
  padding-top: 8px;
  margin-top: 2px;
}

.dash-billing-row--wallet span:last-child {
  color: #0f172a;
  font-weight: 700;
}

.dash-billing-row--wallet-total {
  border-top: 1px dashed rgba(59, 130, 246, 0.3);
  padding-top: 8px;
  margin-top: 2px;
  font-weight: 800;
}

.dash-billing-row--wallet-total span {
  color: #1d4ed8;
}

.dash-wallet-pay-note {
  margin-top: 2px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  color: #1e3a8a;
  font-size: 11px;
  line-height: 1.8;
  padding: 8px 10px;
}

.dash-active-account-head {
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.08), #ffffff 82%);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-active-account-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.dash-active-account-mark img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dash-active-account-meta {
  display: grid;
  gap: 2px;
}

.dash-active-account-meta strong {
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.6;
}

.dash-active-account-meta small {
  font-size: 11px;
  color: var(--muted);
}

.dash-inline-rules {
  border: 1px solid rgba(245, 158, 11, 0.34);
  background: #fffbeb;
  color: #92400e;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 6px;
}

.dash-inline-rules strong {
  font-size: 12px;
}

.dash-inline-rules p {
  margin: 0;
  font-size: 11px;
  line-height: 1.9;
}

.dash-inline-rules a {
  color: #c2410c;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}

.dash-modal-footer--split {
  justify-content: space-between;
}

.dash-modal-footer-anchor {
  margin-inline-end: auto;
}

.dash-modal-footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dash-rules-toggle {
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(254, 243, 199, 0.72);
}

.dash-tool-confirm-head {
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.08), #ffffff 82%);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-tool-confirm-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
}

.dash-tool-confirm-head strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
}

.dash-tool-confirm-head small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.dash-order-summary {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #f8fafc;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}

.dash-order-summary strong {
  color: var(--ink);
}

.dash-new-service-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.dash-radio--card {
  width: 100%;
  border-radius: 14px;
  padding: 10px 12px;
  align-items: flex-start;
}

.dash-radio--card:has(input:checked) {
  border-color: rgba(66, 133, 244, 0.45);
  background: rgba(66, 133, 244, 0.08);
}

.dash-slider {
  display: grid;
  gap: 8px;
}

.dash-slider--card {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 12px;
  background: #ffffff;
}

.dash-slider-head {
  font-size: 12px;
  color: var(--muted);
}

.dash-slider input[type="range"] {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.4), rgba(66, 133, 244, 0.12));
  outline: none;
}

.dash-slider-labels {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
}

.dash-slider-labels span {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  white-space: nowrap;
  cursor: pointer;
}

.dash-slider-labels span.is-active {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
}

.dash-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.15);
  cursor: pointer;
}

.dash-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.15);
  cursor: pointer;
}

.dash-total {
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--ink);
  display: grid;
  gap: 6px;
}

.dash-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.dash-total-row span:last-child {
  color: var(--ink);
}

.dash-total-row--final {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed var(--slate-200);
  font-weight: 700;
}

.dash-total-row--final span {
  color: var(--ink);
}

.dash-service-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.dash-service-meta {
  font-size: 12px;
  color: var(--muted);
}

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

.dash-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}

.dash-table-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr 0.7fr 0.7fr;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 10px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #ffffff;
  min-width: 680px;
  align-items: center;
}

.dash-table-row > * {
  display: flex;
  align-items: center;
}

.dash-order-title-cell,
.dash-order-title-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}

.dash-order-title-cell--tagged,
.dash-order-title-inline--tagged {
  position: relative;
  padding-top: 10px;
}

.dash-order-title-cell--stack,
.dash-order-title-inline--stack {
  align-items: flex-start;
  flex-direction: column;
}

.dash-order-title-text {
  min-width: 0;
}

.dash-order-mobile-icon,
.dash-order-inline-icon,
.dash-order-action-icon,
.dash-service-mobile-icon,
.dash-service-inline-icon,
.dash-service-action-icon,
.dash-finance-mobile-icon,
.dash-finance-inline-icon,
.dash-finance-action-icon,
.dash-deposit-mobile-icon,
.dash-deposit-inline-icon,
.dash-ticket-mobile-icon,
.dash-ticket-inline-icon,
.dash-ticket-action-icon,
.dash-ticket-mobile-kicker,
.dash-ticket-date-label {
  display: none;
}

.dash-table-row--followup {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.04);
  overflow: visible;
}

.dash-order-floating-badge {
  position: absolute;
  top: -26px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.92));
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.dash-cell-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.dash-cell-actions .auth-btn {
  width: 146px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dash-cell--center {
  justify-content: center;
  text-align: center;
}

.dash-table-head {
  background: #f8fafc;
  font-weight: 700;
  color: var(--ink);
}

.dash-table--services .dash-table-row {
  grid-template-columns: 1.8fr 1fr 1.2fr 0.8fr 0.95fr;
  min-width: 760px;
}

.dash-table--orders .dash-table-row {
  grid-template-columns: 1.5fr 1.05fr 1fr 0.8fr 0.9fr;
  min-width: 760px;
}

.dash-table--finance .dash-table-row {
  grid-template-columns: 0.95fr 1.1fr 1fr 1fr 0.9fr;
  min-width: 740px;
}

.dash-table--tickets .dash-table-row {
  grid-template-columns: 1.55fr 1fr 0.95fr 0.75fr;
  min-width: 700px;
}

.dash-table--deposit-slips .dash-table-row {
  grid-template-columns: 1.05fr 0.85fr 0.95fr 0.95fr 0.75fr;
  min-width: 760px;
}

@media (max-width: 900px) {
  .dash-table .dash-table-row.dash-table-head {
    display: none !important;
  }

  .dash-table--order-list {
    overflow-x: visible !important;
    gap: 10px;
  }

  .dash-table--order-list .dash-table-row {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "date status"
      "title title"
      "amount action";
    column-gap: 12px;
    row-gap: 9px;
    padding: 12px;
    border-radius: 14px;
    border-color: rgba(203, 213, 225, 0.86);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
    align-items: start;
  }

  .dash-table--order-list .dash-table-row > * {
    min-width: 0;
    display: flex;
    padding: 0;
    border: 0;
    text-align: right;
    color: var(--ink);
  }

  .dash-table--order-list .dash-table-row > *::before {
    content: none;
  }

  .dash-table--order-list .dash-order-title-cell {
    grid-area: title;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .dash-table--order-list .dash-order-mobile-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--g-blue);
  }

  .dash-table--order-list .dash-order-mobile-icon svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
  }

  .dash-table--order-list .dash-status-cell {
    grid-area: status;
    align-self: start;
    justify-content: flex-end;
  }

  .dash-table--order-list .dash-order-title-cell--tagged {
    padding-top: 22px;
  }

  .dash-table--order-list .dash-order-title-text {
    font-weight: 800;
    line-height: 1.65;
    word-break: break-word;
    color: #0f172a;
    font-size: 12.5px;
    padding-top: 3px;
  }

  .dash-table--order-list .dash-order-floating-badge {
    top: -1px;
    right: 38px;
    transform: none;
    min-height: 19px;
    padding: 0 8px;
    font-size: 9px;
  }

  .dash-table--order-list .dash-status-cell .dash-pill {
    width: fit-content;
    max-width: 112px;
    min-height: 25px;
    padding-inline: 8px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }

  .dash-table--order-list .dash-status-cell .dash-pill.dash-pill--danger {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
  }

  .dash-table--order-list .dash-order-date-cell {
    grid-area: date;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.7;
    align-items: center;
    gap: 5px;
  }

  .dash-table--order-list .dash-order-amount-cell {
    grid-area: amount;
    align-self: center;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.6;
    align-items: center;
    gap: 6px;
  }

  .dash-table--order-list .dash-order-inline-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #94a3b8;
    stroke: currentColor;
  }

  .dash-table--order-list .dash-cell-actions {
    grid-area: action;
    align-self: center;
    justify-content: flex-end;
  }

  .dash-table--order-list .dash-cell-actions .auth-btn {
    width: auto;
    min-width: 108px;
    min-height: 34px;
    padding-inline: 11px;
    border-radius: 10px;
    gap: 6px;
  }

  .dash-table--order-list .dash-order-action-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    stroke: currentColor;
  }

  .dash-table--services {
    overflow-x: visible !important;
    gap: 10px;
  }

  .dash-table--services .dash-table-row {
    min-width: 0 !important;
    max-width: 100%;
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "account currency"
      "id type"
      "action action";
    column-gap: 12px;
    row-gap: 9px;
    padding: 12px;
    border-radius: 14px;
    border-color: rgba(203, 213, 225, 0.86);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
    align-items: start;
  }

  .dash-table--services .dash-table-row > * {
    min-width: 0;
    display: flex;
    padding: 0;
    border: 0;
    color: var(--ink);
    text-align: right;
  }

  .dash-table--services .dash-service-account-cell {
    grid-area: account;
    align-items: flex-start;
    gap: 8px;
  }

  .dash-table--services .dash-service-mobile-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ecfdf5;
    color: #047857;
  }

  .dash-table--services .dash-service-mobile-icon svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
  }

  .dash-table--services .dash-service-account-name {
    min-width: 0;
    padding-top: 3px;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.65;
    word-break: break-word;
  }

  .dash-table--services .dash-service-id-cell {
    grid-area: id;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.7;
    padding-right: 0;
    direction: ltr;
    justify-content: flex-end;
  }

  .dash-table--services .dash-service-inline-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #94a3b8;
    stroke: currentColor;
  }

  .dash-table--services .dash-service-type-cell,
  .dash-table--services .dash-service-currency-cell {
    width: fit-content;
    min-height: 25px;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.5;
  }

  .dash-table--services .dash-service-type-cell {
    grid-area: type;
    justify-self: start;
    background: #f1f5f9;
    color: #475569;
  }

  .dash-table--services .dash-service-currency-cell {
    grid-area: currency;
    justify-self: end;
    background: #eff6ff;
    color: var(--g-blue);
  }

  .dash-table--services .dash-service-action-cell {
    grid-area: action;
    justify-content: flex-start;
  }

  .dash-table--services .dash-service-action-cell .auth-btn {
    width: auto;
    min-width: 128px;
    min-height: 36px;
    border-radius: 10px;
    gap: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dash-table--services .dash-service-action-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    align-self: center;
    stroke: currentColor;
  }

  .dash-table--finance {
    overflow-x: visible !important;
    gap: 10px;
  }

  .dash-table--finance .dash-table-row {
    min-width: 0 !important;
    max-width: 100%;
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "number invoice"
      "date invoice"
      "amount detail";
    column-gap: 12px;
    row-gap: 9px;
    padding: 12px;
    border-radius: 14px;
    border-color: rgba(203, 213, 225, 0.86);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
    align-items: start;
  }

  .dash-table--finance .dash-table-row > * {
    min-width: 0;
    display: flex;
    padding: 0;
    border: 0;
    color: var(--ink);
    text-align: right;
  }

  .dash-table--finance .dash-finance-number-cell {
    grid-area: number;
    align-items: flex-start;
    gap: 8px;
  }

  .dash-table--finance .dash-finance-mobile-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--g-blue);
  }

  .dash-table--finance .dash-finance-mobile-icon svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
  }

  .dash-table--finance .dash-finance-number-text {
    min-width: 0;
    padding-top: 3px;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 900;
    line-height: 1.65;
    word-break: break-word;
  }

  .dash-table--finance .dash-finance-date-cell {
    grid-area: date;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.7;
  }

  .dash-table--finance .dash-finance-amount-cell {
    grid-area: amount;
    align-self: center;
    align-items: center;
    gap: 6px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.6;
  }

  .dash-table--finance .dash-finance-inline-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #94a3b8;
    stroke: currentColor;
  }

  .dash-table--finance .dash-finance-invoice-cell {
    grid-area: invoice;
    align-self: start;
    justify-content: flex-end;
  }

  .dash-table--finance .dash-finance-invoice-cell .auth-btn {
    width: auto;
    min-width: 124px;
    min-height: 34px;
    padding-inline: 10px;
    border-radius: 10px;
    font-size: 10.5px;
    line-height: 1.5;
  }

  .dash-table--finance .dash-finance-invoice-cell .dash-pill {
    width: fit-content;
    min-height: 25px;
    padding-inline: 9px;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.5;
  }

  .dash-table--finance .dash-finance-detail-cell {
    grid-area: detail;
    align-self: center;
    justify-content: flex-start;
  }

  .dash-table--finance .dash-finance-detail-cell .auth-btn {
    width: auto;
    min-width: 96px;
    min-height: 34px;
    padding-inline: 11px;
    border-radius: 10px;
    gap: 6px;
  }

  .dash-table--finance .dash-finance-action-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    align-self: center;
    stroke: currentColor;
    transform: translateY(2px);
  }

  .dash-table--deposit-slips {
    overflow-x: visible !important;
    gap: 10px;
  }

  .dash-table--deposit-slips .dash-table-row {
    min-width: 0 !important;
    max-width: 100%;
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "date status"
      "tracking method"
      "amount amount";
    column-gap: 12px;
    row-gap: 9px;
    padding: 12px;
    border-radius: 14px;
    border-color: rgba(203, 213, 225, 0.86);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
    align-items: start;
  }

  .dash-table--deposit-slips .dash-table-row > * {
    min-width: 0;
    display: flex;
    padding: 0;
    border: 0;
    color: var(--ink);
    text-align: right;
  }

  .dash-table--deposit-slips .dash-deposit-date-cell {
    grid-area: date;
    align-items: flex-start;
    gap: 8px;
  }

  .dash-table--deposit-slips .dash-deposit-mobile-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ecfdf5;
    color: #047857;
  }

  .dash-table--deposit-slips .dash-deposit-mobile-icon svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
  }

  .dash-table--deposit-slips .dash-deposit-date-text {
    min-width: 0;
    padding-top: 3px;
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.65;
    word-break: break-word;
  }

  .dash-table--deposit-slips .dash-deposit-status-cell {
    grid-area: status;
    justify-self: end;
    align-self: start;
    width: fit-content;
    min-height: 25px;
    padding-inline: 9px;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.5;
  }

  .dash-table--deposit-slips .dash-deposit-method-cell {
    grid-area: method;
    justify-self: end;
    width: fit-content;
    min-height: 25px;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--g-blue);
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.5;
  }

  .dash-table--deposit-slips .dash-deposit-tracking-cell {
    grid-area: tracking;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.7;
    direction: ltr;
    justify-content: flex-end;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dash-table--deposit-slips .dash-deposit-amount-cell {
    grid-area: amount;
    align-self: center;
    align-items: center;
    gap: 6px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.6;
  }

  .dash-table--deposit-slips .dash-deposit-inline-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #94a3b8;
    stroke: currentColor;
  }

  .dash-view[data-view="finance"] .dash-finance-wallet-transactions {
    display: none !important;
  }

  .dash-table--tickets {
    overflow-x: visible !important;
    gap: 10px;
  }

  .dash-table--tickets .dash-table-row {
    min-width: 0 !important;
    max-width: 100%;
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "subject status"
      "date date"
      "action action";
    column-gap: 12px;
    row-gap: 10px;
    padding: 13px;
    border-radius: 16px;
    border-color: rgba(203, 213, 225, 0.86);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.055);
    align-items: start;
  }

  .dash-table--tickets .dash-table-row.is-unread {
    border-color: rgba(37, 99, 235, 0.28);
    background: linear-gradient(180deg, #ffffff 0%, rgba(239, 246, 255, 0.72) 100%);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.055), inset 3px 0 0 rgba(37, 99, 235, 0.72);
  }

  .dash-table--tickets .dash-table-row > * {
    min-width: 0;
    display: flex;
    padding: 0;
    border: 0;
    color: var(--ink);
    text-align: right;
  }

  .dash-table--tickets .dash-ticket-subject {
    grid-area: subject;
    align-items: flex-start;
    gap: 9px;
  }

  .dash-table--tickets .dash-ticket-mobile-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--g-blue);
  }

  .dash-table--tickets .dash-ticket-mobile-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
  }

  .dash-table--tickets .dash-ticket-subject-wrap {
    min-width: 0;
    display: grid;
    gap: 2px;
  }

  .dash-table--tickets .dash-ticket-mobile-kicker {
    display: block;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.5;
  }

  .dash-table--tickets .dash-ticket-subject-text {
    min-width: 0;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
    word-break: break-word;
  }

  .dash-table--tickets .dash-ticket-unread-dot {
    margin-right: 6px;
    transform: translateY(1px);
  }

  .dash-table--tickets .dash-ticket-status-cell {
    grid-area: status;
    justify-self: end;
    align-self: start;
    width: fit-content;
    min-height: 26px;
    padding: 4px 10px;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.5;
    font-size: 10.5px;
  }

  .dash-table--tickets .dash-ticket-date-cell {
    grid-area: date;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 10.5px;
    line-height: 1.7;
    padding: 8px 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.88);
  }

  .dash-table--tickets .dash-ticket-date-label {
    display: inline;
    color: #64748b;
    font-weight: 700;
  }

  .dash-table--tickets .dash-ticket-date-value {
    color: #0f172a;
    font-weight: 800;
  }

  .dash-table--tickets .dash-ticket-inline-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #94a3b8;
    stroke: currentColor;
  }

  .dash-table--tickets .dash-ticket-action-cell {
    grid-area: action;
    justify-content: stretch;
    padding-top: 2px;
  }

  .dash-table--tickets .dash-ticket-action-cell .auth-btn {
    width: 100%;
    min-height: 38px;
    padding-inline: 12px;
    border-radius: 12px;
    gap: 6px;
    justify-content: center;
    background: #f8fafc;
    border-color: rgba(37, 99, 235, 0.18);
    color: var(--g-blue);
    font-weight: 900;
  }

  .dash-table--tickets .dash-ticket-action-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    align-self: center;
    stroke: currentColor;
    transform: translateY(2px);
  }
}

.dash-finance-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 4px;
  padding: 4px;
  margin-bottom: 14px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #f8fafc;
}

.dash-finance-tab {
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.dash-finance-tab.is-active {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.dash-finance-panel {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
}

.dash-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.dash-panel-head strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.dash-panel-head span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 640px) {
  .dash-finance-tabs {
    display: grid;
    width: 100%;
  }

  .dash-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .dash-panel-head .auth-btn {
    width: 100%;
  }
}

.dash-table--services .dash-table-row > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .dash-table--services .dash-table-row > span {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .dash-table--services .dash-service-id-cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.dash-inline-link {
  color: var(--primary);
  text-decoration: none;
  direction: ltr;
  unicode-bidi: plaintext;
}

.dash-table-row .auth-btn.dash-cell--center {
  width: 138px;
}

#dashServicesTable,
#dashOrdersTable,
#dashFinanceTable,
#dashTicketsTable {
  min-width: 0;
  max-width: 100%;
}

.dash-payment-result {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: #ffffff;
  padding: 16px;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  animation: dashFadeUp 0.28s ease;
  position: relative;
}

.dash-payment-result--success {
  border-color: rgba(16, 185, 129, 0.28);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.12), #ffffff 70%);
}

.dash-payment-result--failed {
  border-color: rgba(239, 68, 68, 0.24);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.1), #ffffff 70%);
}

.dash-payment-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.26);
  color: var(--muted);
}

.dash-payment-result--success .dash-payment-icon {
  border-color: rgba(16, 185, 129, 0.3);
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  animation: dashPaymentPulse 1.4s ease-in-out infinite;
}

.dash-payment-result--failed .dash-payment-icon {
  border-color: rgba(239, 68, 68, 0.3);
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.12);
}

.dash-payment-content h2 {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
}

.dash-payment-content p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

.dash-payment-actions {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.dash-payment-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--muted);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  line-height: 1;
  cursor: pointer;
}

.dash-shell--payment-only .dash-sidebar {
  display: none;
}

.dash-shell--payment-only .dash-layout {
  grid-template-columns: 1fr;
}

.dash-shell--payment-only .dash-main {
  max-width: 920px;
  margin: 0 auto;
}

.dash-shell--payment-only .dash-view {
  display: none !important;
}

.dash-payment-receipt {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: #ffffff;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.dash-payment-receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.dash-payment-receipt-head h3 {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
}

.dash-payment-receipt-head p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.dash-receipt-printhead {
  border: 1px dashed var(--slate-200);
  border-radius: 12px;
  background: #f8fafc;
  padding: 10px;
  display: grid;
  gap: 10px;
}

.dash-receipt-party {
  display: grid;
  gap: 4px;
}

.dash-receipt-party h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.dash-receipt-party p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.dash-receipt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.dash-receipt-item {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 10px;
  background: #f8fafc;
  display: grid;
  gap: 6px;
}

.dash-receipt-item span {
  font-size: 11px;
  color: var(--muted);
}

.dash-receipt-item strong {
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.8;
}

.dash-receipt-amounts {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.06), #ffffff 84%);
  display: grid;
  gap: 8px;
}

.dash-receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.dash-receipt-row strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.dash-receipt-row--total {
  border-top: 1px dashed var(--slate-200);
  padding-top: 9px;
  margin-top: 4px;
}

.dash-receipt-row--total strong {
  color: var(--primary);
}

.dash-alert {
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.12);
  color: #92400e;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 12px;
}

.dash-alert--success {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.dash-alert--danger {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.dash-alert--warning {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
}

.dash-alert.hidden {
  display: none;
}

.dash-empty {
  border: 1px dashed rgba(148, 163, 184, 0.6);
  border-radius: 18px;
  padding: 16px;
  font-size: 12px;
  color: var(--muted);
  background: #ffffff;
}

.dash-form {
  display: grid;
  gap: 12px;
}

.dash-form-lock {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  display: grid;
  gap: 12px;
}

.dash-form-note {
  font-size: 11px;
  color: #64748b;
}

.dash-form-row {
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .dash-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dash-body .dash-shell {
    padding: 14px;
  }
  .dash-order-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dash-order-grid--two {
    grid-template-columns: 1fr;
  }
  .dash-new-service-actions {
    flex-direction: column-reverse;
  }
  .dash-overview-meta {
    grid-template-columns: 1fr;
  }
  .dash-overview-rate-list {
    grid-template-columns: 1fr;
  }
  .dash-overview-actions {
    gap: 6px;
  }
  .dash-overview-actions .panel-link {
    width: auto;
    justify-content: center;
  }
  .dash-deposit-methods {
    grid-template-columns: 1fr;
  }
  .dash-modal {
    padding: 12px;
  }
  .dash-modal-card {
    width: min(520px, 96vw);
    margin: 10px auto;
    max-height: calc(100vh - 24px);
  }
  .dash-modal-footer {
    justify-content: space-between !important;
  }
  .dash-modal-footer--split {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    align-content: center;
    gap: 10px;
  }
  .dash-modal-footer-anchor {
    margin-inline-end: 0;
    margin-inline-start: 0;
  }
  .dash-modal-footer-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .dash-seo-item-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .dash-seo-packages {
    grid-template-columns: 1fr;
  }
  .dash-seo-order-layout {
    grid-template-columns: 1fr;
  }
  .dash-seo-checklist-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .dash-body .dash-shell {
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

  .dash-layout {
    gap: 12px;
  }

  .dash-menu-toggle {
    display: inline-flex;
  }

  .dash-support-quick {
    display: inline-flex;
  }

  .dash-top-user {
    display: none;
  }

  .dash-date {
    display: none;
  }

  .dash-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 49;
  }

  .dash-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: min(320px, 86vw);
    height: 100dvh;
    max-height: 100dvh;
    z-index: 50;
    margin: 0;
    border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border: 0;
    box-shadow: -10px 0 30px rgba(2, 6, 23, 0.24);
    background: #ffffff;
    padding: max(14px, env(safe-area-inset-top)) 12px max(14px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    gap: 6px;
    align-content: start;
    align-items: start;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.22s ease;
  }

  .dash-mobile-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    margin-bottom: 4px;
    border-radius: 14px;
    border: 1px solid rgba(191, 219, 254, 0.88);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.96));
  }

  .dash-mobile-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 13px;
  }

  .dash-mobile-user-copy strong,
  .dash-mobile-user-copy small {
    max-width: 220px;
  }

  .dash-link {
    padding: 7px 9px;
    border-radius: 9px;
    font-size: 11px;
    gap: 7px;
    min-height: 36px;
    justify-content: flex-start;
    flex-direction: row;
    text-align: right;
  }

  .dash-link-badge {
    position: static;
    margin-inline-start: auto;
  }

  .dash-link--danger {
    min-height: 36px;
    flex-direction: row;
    margin-top: 4px;
  }

  .dash-shell--menu-open .dash-sidebar {
    transform: translateX(0);
  }

  .dash-shell--menu-open .dash-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .dash-main,
  .dash-view,
  .dash-overview-grid {
    overflow-x: clip;
  }
}

.dash-progress {
  display: grid;
  gap: 12px;
}

.dash-bar {
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.dash-bar span {
  display: block;
  height: 100%;
  background: var(--primary);
}

.dash-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.dash-rate-update-box {
  border: 1px solid rgba(66, 133, 244, 0.26);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.1), rgba(248, 250, 252, 0.95) 75%);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.dash-rate-update-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.dash-rate-update-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(66, 133, 244, 0.35);
  background: rgba(66, 133, 244, 0.12);
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-rate-update-head strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.dash-rate-update-head p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.dash-rate-update-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dash-rate-update-grid > div {
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: #ffffff;
  border-radius: 10px;
  padding: 7px 8px;
  display: grid;
  gap: 2px;
}

.dash-rate-update-grid span {
  color: var(--muted);
  font-size: 10px;
}

.dash-rate-update-grid strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.dash-rate-update-box small {
  font-size: 10px;
  color: #1d4ed8;
  text-align: center;
}

.dash-rate-update-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.dash-rate-update-cta small {
  margin: 0;
  font-size: 11px;
  color: #1d4ed8;
  text-align: right;
}

.dash-rate-update-cta small strong {
  font-size: 12px;
  color: #1e3a8a;
}

.dash-rate-update-go {
  min-height: 36px;
}

.dash-payment-limit-box {
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(254, 226, 226, 0.92), rgba(255, 255, 255, 0.98));
  padding: 14px;
  display: grid;
  gap: 10px;
}

.dash-payment-limit-box-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-payment-limit-box-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  flex: 0 0 auto;
}

.dash-payment-limit-box-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
}

.dash-payment-limit-box strong {
  color: #b91c1c;
  font-size: 14px;
  font-weight: 800;
}

.dash-payment-limit-box p {
  margin: 0;
  color: #7f1d1d;
  font-size: 12px;
  line-height: 1.95;
}

.dash-payment-limit-box .auth-btn {
  width: fit-content;
}

.dash-rate-update-note {
  margin: 0;
  border-radius: 14px;
  background: rgba(30, 58, 138, 0.05);
  padding: 10px 12px;
  color: #1e3a8a;
  font-size: 12px;
  line-height: 1.9;
}

@media (max-width: 640px) {
  .dash-rate-update-grid {
    grid-template-columns: 1fr;
  }

  .dash-rate-update-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-rate-update-go {
    width: 100%;
  }
}

@keyframes dashSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes authDotBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px) scale(1.1);
    opacity: 1;
  }
}

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

@keyframes dashPaymentPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.18);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

@media (min-width: 1024px) {
  .dash-layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
  .dash-main-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
  .dash-charge-layout {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
  .dash-overview-top {
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.65fr);
    align-items: start;
  }
  .dash-overview-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(205px, 0.48fr);
    align-items: stretch;
  }
  .dash-overview-meta {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .dash-overview-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 720px) {
  .dash-receipt-printhead {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media print {
  body * {
    visibility: hidden !important;
  }
  #dashPaymentReceipt,
  #dashPaymentReceipt * {
    visibility: visible !important;
  }
  #dashPaymentReceipt {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: #ffffff;
  }
  .dash-payment-receipt-head .auth-btn {
    display: none !important;
  }
  .dash-payment-result {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .dash-order-stepper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .dash-main-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.dash-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  z-index: 60;
  overflow-y: auto;
}

.dash-modal.hidden {
  display: none;
}

.dash-modal--rate-only {
  background: rgba(248, 250, 252, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
}

.dash-modal-card {
  width: min(520px, 92vw);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
  margin: 22px auto;
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dash-modal-card--rate-only {
  width: min(640px, 94vw);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
  max-height: none;
  overflow: visible;
}

.dash-modal-card--warning {
  border-color: rgba(245, 158, 11, 0.38);
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.92), #ffffff 70%);
}

.dash-modal-title--warning {
  color: #92400e;
}

.dash-modal-card--rate-only .dash-modal-header,
.dash-modal-card--rate-only .dash-modal-footer {
  display: none;
}

.dash-modal-card--rate-only .dash-modal-body {
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.dash-modal-card--rate-only .dash-note {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.dash-modal-card--rate-only #infoMessage {
  margin: 0;
  padding: 0;
  line-height: inherit;
  color: inherit;
  font-size: inherit;
}

.dash-modal-card--charge {
  width: min(820px, 96vw);
}

.dash-modal--profile-required {
  backdrop-filter: blur(10px);
}

.dash-modal-card--profile-required {
  width: min(500px, 92vw);
  border-color: rgba(245, 158, 11, 0.28);
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.92), #ffffff 72%);
}

.dash-profile-required-panel {
  display: grid;
  gap: 12px;
}

.dash-profile-required-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.95;
}

@media (max-width: 768px) {
  .dash-modal-card--profile-required {
    width: min(460px, 94vw);
  }

  .dash-profile-required-note {
    padding: 11px 12px;
    line-height: 1.9;
  }
}


.dash-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-modal-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.dash-modal-close {
  border: none;
  background: #f1f5f9;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
}

.dash-modal-body {
  display: grid;
  gap: 10px;
}

.dash-modal-body--charge {
  gap: 14px;
}

.dash-warning-box {
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 14px;
  background: rgba(254, 243, 199, 0.36);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.dash-warning-box-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dash-warning-box-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-warning-box-head strong {
  font-size: 13px;
  color: #92400e;
  font-weight: 800;
}

.dash-warning-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.95;
  color: #78350f;
}

.dash-charge-layout {
  display: grid;
  gap: 14px;
}

.dash-charge-main {
  display: grid;
  gap: 12px;
}

.dash-charge-summary {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.05), #ffffff 75%);
  align-self: start;
  display: grid;
  gap: 10px;
}

.dash-total-row.is-hidden {
  display: none;
}

.dash-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.dash-modal-loading {
  min-height: 120px;
  border: 1px dashed var(--slate-200);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  background: #f8fafc;
  text-align: center;
  padding: 12px;
}

.dash-details-section {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 10px;
  background: #ffffff;
  display: grid;
  gap: 8px;
}

.dash-details-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.dash-details-grid {
  display: grid;
  gap: 6px;
}

.dash-details-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 7px 9px;
  background: #f8fafc;
}

.dash-details-row span {
  font-size: 11px;
  color: var(--muted);
}

.dash-details-row strong {
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
  text-align: end;
}

.dash-details-row strong a {
  color: var(--primary);
  text-decoration: none;
}

.dash-bank-box {
  border: 1px solid rgba(66, 133, 244, 0.26);
  background: rgba(66, 133, 244, 0.08);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.dash-bank-text {
  margin: 0;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.8;
}

.dash-bank-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dash-bank-grid div {
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 10px;
  display: grid;
  gap: 3px;
}

.dash-bank-grid span {
  font-size: 11px;
  color: var(--muted);
}

.dash-bank-grid strong {
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
}

.dash-wallet-soon-box {
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.08);
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.dash-wallet-soon-box strong {
  display: block;
  font-size: 13px;
  color: #166534;
  margin-bottom: 4px;
}

.dash-wallet-soon-box p {
  margin: 0;
  font-size: 12px;
  color: #166534;
  line-height: 1.85;
}

.dash-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}

.dash-modal-footer .auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#orderCancelBtn {
  order: -1;
  margin-inline-end: auto;
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
}

.dash-modal-footer #orderCancelBtn:hover,
.dash-modal-footer #orderCancelBtn:focus-visible {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #ffffff !important;
}

.dash-modal-card--compact {
  max-width: 420px;
}

.dash-confirm-box {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.16);
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.96), rgba(255, 255, 255, 0.98));
}

.dash-confirm-box strong {
  font-size: 14px;
  color: #991b1b;
}

.dash-confirm-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.95;
  color: #4b5563;
}

.profile-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f1f5f9;
}

.profile-tab {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}

.profile-tab.is-active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 6px 12px rgba(2, 6, 23, 0.08);
}

.profile-tab:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.profile-pane.hidden {
  display: none;
}

.dash-password-card {
  border-color: rgba(66, 133, 244, 0.24);
  background:
    radial-gradient(420px 150px at 92% -16%, rgba(66, 133, 244, 0.12), transparent 64%),
    #ffffff;
}

.dash-password-head {
  display: grid;
  gap: 4px;
}

.dash-password-form {
  gap: 10px;
}

.dash-password-grid {
  display: grid;
  gap: 10px;
}

@media (min-width: 720px) {
  .dash-password-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dash-password-actions {
  display: flex;
  justify-content: flex-end;
}

.panel-link {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--primary);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.panel-link--icon {
  padding: 8px 10px;
  border-radius: 12px;
}

.dash-wallet {
  position: relative;
  overflow: hidden;
}

.dash-wallet::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.75);
}

.dash-support-layout {
  display: grid;
  gap: 12px;
}

@media (min-width: 1080px) {
  .dash-support-layout {
    grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
    align-items: start;
  }
}

.dash-support-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.dash-support-compact-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.dash-support-compact-text strong {
  font-size: 13px;
  color: var(--ink);
}

.dash-support-compact-text p {
  margin: 0;
  font-size: 12px;
  color: #334155;
  line-height: 1.85;
}

.dash-support-compact-text small {
  font-size: 11px;
  color: var(--muted);
}

.dash-support-compact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.dash-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.dash-support-btn--whatsapp {
  border-color: rgba(37, 211, 102, 0.38);
  background: rgba(37, 211, 102, 0.1);
  color: #166534;
}

@media (max-width: 900px) {
  .dash-support-compact {
    grid-template-columns: 1fr;
  }

  .dash-support-compact-actions {
    justify-content: flex-start;
  }
}

.dash-ticket-actions {
  display: flex;
  justify-content: flex-end;
}

.dash-modal-card--ticket {
  width: min(760px, 94vw);
  padding: 0;
  gap: 0;
}

.dash-modal-card--ticket .dash-modal-header {
  padding: 16px 18px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.dash-modal-card--ticket .dash-modal-title {
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
}

.dash-modal-card--ticket .dash-modal-body {
  padding: 16px;
  background: #f8fafc;
  display: grid;
  gap: 14px;
}

.dash-modal-card--ticket .dash-modal-footer {
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.dash-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.dash-card-title-row .auth-btn {
  flex-shrink: 0;
}

.dash-table-row.is-unread {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.95), #ffffff 72%);
}

.dash-ticket-subject {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dash-ticket-unread-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563eb;
  display: inline-block;
}

.dash-ticket-thread {
  display: grid;
  gap: 10px;
  max-height: min(52vh, 420px);
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 16px;
  background: #ffffff;
}

.dash-ticket-item {
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: #f8fafc;
  border-radius: 16px;
  padding: 11px 12px;
  display: grid;
  gap: 7px;
  max-width: min(88%, 620px);
}

.dash-ticket-item.is-mine {
  margin-inline-start: auto;
  border-color: rgba(37, 99, 235, 0.24);
  background: #eff6ff;
}

.dash-ticket-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-ticket-item-head strong {
  font-size: 12px;
  color: var(--ink);
}

.dash-ticket-item-head span {
  font-size: 11px;
  color: var(--muted);
}

.dash-ticket-item-body {
  font-size: 12px;
  line-height: 1.95;
  color: var(--ink);
  white-space: pre-wrap;
}

.dash-ticket-attachment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 10px;
  padding: 4px 8px;
  font-size: 11px;
  text-decoration: none;
  color: #0f172a;
  background: #f8fafc;
}

.dash-ticket-reply-form {
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 16px;
  background: #ffffff;
}

.dash-ticket-reply-form .auth-message {
  margin-top: 4px;
}

.dash-file-upload {
  display: grid;
  gap: 6px;
}

.dash-file-upload input[type="file"] {
  width: 100%;
  border: 1px dashed rgba(59, 130, 246, 0.34);
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(239, 246, 255, 0.55);
  color: #334155;
  font-size: 12px;
}

.dash-file-upload input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 6px 10px;
  margin-left: 10px;
  cursor: pointer;
}

.dash-file-upload small {
  color: #64748b;
  font-size: 11px;
  line-height: 1.7;
}

.dash-ticket-meta-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dash-ticket-meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}

.dash-modal-card--ticket .dash-details-section {
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 8px;
}

.dash-modal-card--ticket .dash-details-title {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .dash-modal-card--ticket {
    width: min(94vw, 520px);
  }

  .dash-modal-card--ticket .dash-modal-header,
  .dash-modal-card--ticket .dash-modal-body,
  .dash-modal-card--ticket .dash-modal-footer {
    padding-inline: 12px;
  }

  .dash-ticket-meta-compact {
    grid-template-columns: 1fr;
    display: none;
  }

  .dash-ticket-thread {
    max-height: 46vh;
    padding: 10px;
  }

  .dash-ticket-item {
    max-width: 94%;
  }
}

.dash-ticket-message-body {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.9;
}

.dash-ticket-message-body--reply {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
}

.dash-notice-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 2px;
}

.dash-notice-banner {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  padding: 12px 14px 12px 12px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  overflow: hidden;
}

.dash-notice-banner::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 4px;
  background: rgba(66, 133, 244, 0.45);
}

.dash-notice-banner-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-notice-banner-content strong {
  display: block;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 4px;
}

.dash-notice-banner-content p {
  margin: 0;
  font-size: 11px;
  line-height: 1.92;
  color: #334155;
  white-space: pre-wrap;
}

.dash-notice-banner-action {
  display: inline-flex;
  align-items: center;
}

.dash-notice-banner-action .auth-btn {
  min-width: 88px;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 11px;
  border-radius: 12px;
  white-space: nowrap;
}

.dash-notice-banner--info {
  border-color: rgba(66, 133, 244, 0.34);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.14), #ffffff 82%);
}

.dash-notice-banner--info::before {
  background: rgba(66, 133, 244, 0.75);
}

.dash-notice-banner--info .dash-notice-banner-icon {
  background: rgba(66, 133, 244, 0.18);
  color: #1d4ed8;
}

.dash-notice-banner--warning {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.2), #ffffff 84%);
}

.dash-notice-banner--warning::before {
  background: rgba(217, 119, 6, 0.85);
}

.dash-notice-banner--warning .dash-notice-banner-icon {
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
}

.dash-notice-banner--danger {
  border-color: rgba(239, 68, 68, 0.42);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.16), #ffffff 84%);
}

.dash-notice-banner--danger::before {
  background: rgba(220, 38, 38, 0.9);
}

.dash-notice-banner--danger .dash-notice-banner-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}

@media (max-width: 640px) {
  .dash-notice-banner {
    grid-template-columns: 34px 1fr;
  }

  .dash-notice-banner-action {
    grid-column: 1 / -1;
    padding-inline-start: 44px;
  }

  .dash-notice-banner-action .auth-btn {
    width: 100%;
    min-width: 0;
  }
}

.dash-overview-top {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.dash-overview-hero {
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(540px 180px at 94% -22%, rgba(66, 133, 244, 0.15), transparent 68%),
    radial-gradient(320px 180px at 6% -24%, rgba(52, 168, 83, 0.1), transparent 62%),
    #ffffff;
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
}

.dash-overview-hero-grid {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.dash-overview-hero-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.dash-overview-intro {
  display: grid;
  gap: 8px;
}

.dash-overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border: 1px solid rgba(66, 133, 244, 0.28);
  background: rgba(66, 133, 244, 0.09);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--primary);
}

.dash-overview-intro h2 {
  margin: 0;
  font-size: 24px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.dash-overview-intro p {
  margin: 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.95;
  max-width: 54ch;
}

.dash-overview-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.dash-overview-actions .panel-link {
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.96);
  padding-inline: 13px;
}

.dash-overview-club-card {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff, #f7fbff);
  padding: 10px;
  min-width: 0;
  display: grid;
  gap: 8px;
}

.dash-overview-club-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.dash-overview-club-head strong {
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.4;
}

.dash-overview-club-level {
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.dash-overview-club-progress {
  height: 10px;
  border-radius: 999px;
  background: #e8eff9;
  overflow: hidden;
}

.dash-overview-club-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6, #14b8a6);
}

.dash-overview-club-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.dash-overview-club-stat {
  border: 1px dashed rgba(148, 163, 184, 0.34);
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  min-width: 0;
}

.dash-overview-club-stat small {
  display: block;
  font-size: 9px;
  color: #64748b;
  line-height: 1.4;
}

.dash-overview-club-stat strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 2px;
  color: #0f172a;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-overview-club-inline-note {
  display: inline-block;
  margin-inline-start: 4px;
  font-size: 9px;
  font-weight: 600;
  color: #64748b;
  vertical-align: baseline;
}

@media (min-width: 1025px) {
  .dash-overview-club-stat:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .dash-overview-club-stats {
    grid-template-columns: 1fr;
  }
}

.dash-overview-rate-card {
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(66, 133, 244, 0.14), rgba(248, 250, 252, 0.96) 32%, #ffffff 100%);
  padding: 16px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.dash-overview-rate-card--compact {
  width: 100%;
  min-width: 0;
}

.dash-overview-rate-head {
  display: grid;
  gap: 3px;
}

.dash-overview-rate-head strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 800;
}

.dash-overview-rate-head small {
  font-size: 11px;
  color: var(--muted);
}

.dash-overview-rate-list {
  display: grid;
  gap: 8px;
}

.dash-overview-rate-item {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-overview-rate-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
}

.dash-overview-rate-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.dash-overview-rate-dot--usd {
  background: #4285f4;
}

.dash-overview-rate-dot--try {
  background: #34a853;
}

.dash-overview-rate-item strong {
  font-size: 13px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
}

.dash-overview-rate-foot {
  border-top: 1px dashed rgba(148, 163, 184, 0.38);
  padding-top: 10px;
  font-size: 11px;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.dash-overview-metrics {
  display: grid;
  gap: 12px;
}

.dash-health-card {
  border: 1px solid rgba(16, 185, 129, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(540px 180px at 100% -40%, rgba(16, 185, 129, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(15, 118, 110, 0.04), #ffffff 72%);
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.dash-health-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-health-head small {
  color: #0f766e;
  font-size: 11px;
  line-height: 1.7;
}

.dash-health-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dash-health-item {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  background: #fff;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.dash-health-item > span:first-child {
  font-size: 10px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}

.dash-health-item > strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  flex: 0 0 auto;
}

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

@media (max-width: 1023px) {
  .dash-health-grid {
    grid-template-columns: 1fr;
  }
  .dash-health-item {
    min-height: 0;
  }
}

.dash-overview-metrics-shell {
  border: 1px solid rgba(66, 133, 244, 0.24);
  border-radius: 22px;
  padding: 14px;
  background:
    radial-gradient(540px 180px at 100% -30%, rgba(66, 133, 244, 0.11), transparent 65%),
    linear-gradient(180deg, rgba(66, 133, 244, 0.04), #ffffff 78%);
  display: grid;
  gap: 10px;
}

.dash-overview-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dash-overview-meta-item {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.dash-overview-meta-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.98);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.dash-overview-meta-item small {
  display: block;
  font-size: 10px;
  color: #64748b;
  margin-bottom: 2px;
}

.dash-overview-meta-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.dash-sensitive-value {
  transition: filter 0.18s ease, opacity 0.18s ease;
}

.dash-sensitive-value.is-masked {
  filter: blur(6px);
  opacity: 0.78;
  user-select: none;
}

.dash-overview-meta-item--sensitive {
  cursor: pointer;
}

.dash-overview-meta-item--sensitive:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.dash-overview-meta-sub {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: #2563eb;
}

.dash-overview-meta-item--club {
  border-color: rgba(66, 133, 244, 0.34);
  background: rgba(66, 133, 244, 0.08);
}

@media (min-width: 1024px) {
  .dash-overview-meta {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.dash-card--notice {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.12), #ffffff 72%);
}

.dash-notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  background: rgba(254, 243, 199, 0.9);
  color: #92400e;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
}

.dash-notice-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.95;
  color: #475569;
  white-space: pre-wrap;
}

.dash-card--soft {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.3);
}

.dash-account-card {
  gap: 0;
}

.dash-account-card .dash-overview-head {
  margin-bottom: 10px;
}

.dash-account-rows {
  display: block;
}

.dash-account-rows .dash-row {
  margin: 0;
}

.dash-row-value {
  color: var(--ink);
  font-weight: 500;
}

.dash-tools-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dash-tool-card {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.dash-tool-card.is-soon {
  background: #f8fafc;
}

.dash-tool-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-tool-head h3 {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}

.dash-tool-plan {
  font-size: 11px;
  color: var(--muted);
}

.dash-tool-price {
  display: grid;
  gap: 2px;
}

.dash-tool-price strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 800;
}

.dash-tool-price small {
  font-size: 11px;
  color: var(--muted);
}

.dash-seo-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dash-seo-item {
  border: 1px solid #dbe6ff;
  border-radius: 16px;
  background:
    radial-gradient(220px 120px at 100% -12%, rgba(66, 133, 244, 0.1), transparent 60%),
    #ffffff;
  padding: 14px;
  display: grid;
  gap: 12px;
  position: relative;
}

.dash-seo-item--featured {
  border-color: #a9c8ff;
  background:
    radial-gradient(240px 130px at 100% -8%, rgba(66, 133, 244, 0.18), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 26px -20px rgba(36, 89, 188, 0.55);
}

.dash-seo-item-pin {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.12);
  color: #2459bc;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid rgba(66, 133, 244, 0.2);
}

.dash-seo-item-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dash-seo-item-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(66, 133, 244, 0.12);
  flex-shrink: 0;
}

.dash-seo-item-icon svg {
  width: 16px;
  height: 16px;
}

.dash-seo-item-main h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 800;
}

.dash-seo-item-main p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
}

.dash-seo-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.dash-seo-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-seo-item-price {
  display: grid;
  gap: 2px;
}

.dash-seo-item-price span {
  font-size: 11px;
  color: var(--muted);
}

.dash-seo-item-price strong {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.dash-seo-price-amount {
  font-size: 16px !important;
  line-height: 1;
  font-weight: 900;
}

.dash-seo-price-currency {
  font-size: 11px;
  line-height: 1;
  color: #64748b;
  font-weight: 700;
}

.dash-seo-flow-head {
  border-bottom: 1px solid #e2e8f0;
  padding: 0 0 12px;
  display: grid;
  gap: 4px;
}

.dash-seo-flow-main {
  display: grid;
  gap: 4px;
  width: 100%;
  min-width: 0;
}

.dash-seo-flow-main--plain {
  gap: 2px;
}

.dash-seo-flow-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-seo-flow-title--plain {
  gap: 5px;
}

.dash-seo-flow-title > span {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

.dash-seo-flow-title > strong {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.dash-seo-flow-note {
  font-size: 12px;
  color: #475569;
  line-height: 1.9;
}

.dash-seo-order-layout {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  align-items: start;
}

.dash-seo-order-main {
  display: grid;
  gap: 12px;
}

.dash-seo-order-main .dash-invoice-option {
  margin: 0;
}

.dash-seo-block {
  display: grid;
  gap: 8px;
}

.dash-seo-block > label {
  font-size: 12px;
  color: #475569;
  font-weight: 700;
}

.dash-seo-checklist {
  border: 1px solid #cfdaf6;
  border-radius: 14px;
  padding: 10px;
  background:
    radial-gradient(280px 140px at 100% -14%, rgba(66, 133, 244, 0.08), transparent 60%),
    #f8fbff;
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  gap: 8px;
}

.dash-seo-checklist-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.dash-seo-checklist-toolbar input,
.dash-seo-checklist-toolbar select {
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  min-height: 40px;
  padding: 0 10px;
  background: #fff;
  font-size: 12px;
  color: #334155;
}

.dash-seo-checklist-toolbar input:focus,
.dash-seo-checklist-toolbar select:focus {
  border-color: rgba(66, 133, 244, 0.65);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.12);
  outline: none;
}

.dash-seo-checklist-count {
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
}

.dash-seo-check-item {
  border: 1px solid #d6deec;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #ffffff;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
  min-width: 0;
}

.dash-seo-check-item:hover {
  border-color: #8fb7ff;
  transform: translateY(-1px);
}

.dash-seo-check-item.is-selected {
  border-color: #5b96ff;
  background: #edf4ff;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.12);
}

.dash-seo-check-item input {
  margin: 0;
  accent-color: #2563eb;
}

.dash-seo-check-meta {
  display: grid;
  gap: 2px;
  width: 100%;
  min-width: 0;
}

.dash-seo-check-meta strong {
  font-size: 12px;
  color: #0f172a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dash-seo-check-meta small {
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#seoOrderModal .dash-modal-card {
  overflow-x: hidden;
}

#seoOrderModal .dash-modal-body,
#seoOrderModal .dash-seo-order-layout,
#seoOrderModal .dash-seo-order-main,
#seoOrderModal .dash-seo-block {
  min-width: 0;
}

.dash-radio-option-copy {
  display: grid;
  gap: 2px;
}

.dash-radio-option-copy strong {
  font-size: 12px;
  color: #0f172a;
  font-weight: 700;
}

.dash-radio-option-copy small {
  display: block;
  font-size: 11px;
  line-height: 1.75;
  color: #1d4ed8;
  font-weight: 700;
}

.dash-design-pages-note {
  margin-top: 8px;
}

.dash-design-pages-card {
  border: 1px solid #dbe3ef;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 9px;
  display: grid;
  gap: 8px;
}

.dash-design-pages-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-design-pages-head strong {
  font-size: 11px;
  color: #0f172a;
  font-weight: 800;
}

.dash-design-pages-badge {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
}

.dash-design-pages-collapse {
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.dash-design-pages-collapse summary {
  cursor: pointer;
  list-style: none;
  color: #334155;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}

.dash-design-pages-summary-main {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.dash-design-pages-summary-hint {
  font-size: 10px;
  font-weight: 600;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dash-design-pages-summary-hint::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #64748b;
  border-right: 1.5px solid #64748b;
  transform: rotate(135deg);
  transition: transform .2s ease;
}

.dash-design-pages-collapse summary::-webkit-details-marker {
  display: none;
}

.dash-design-pages-collapse[open] summary {
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.dash-design-pages-collapse[open] .dash-design-pages-summary-hint::after {
  transform: rotate(-45deg);
}

.dash-design-pages-list {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
}

.dash-design-pages-list li {
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px 6px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 10px;
  color: #334155;
  line-height: 1.6;
}

.dash-design-pages-index {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

.dash-design-pages-extra {
  border-radius: 10px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-design-pages-extra > div {
  display: grid;
  gap: 2px;
}

.dash-design-pages-extra span {
  font-size: 10px;
  color: #334155;
  font-weight: 700;
}

.dash-design-pages-extra small {
  font-size: 9px;
  color: #64748b;
}

.dash-design-pages-extra strong {
  font-size: 11px;
  font-weight: 800;
  color: #334155;
}

.dash-design-pages-extra.is-active {
  border-color: #86efac;
  background: #f0fdf4;
}

.dash-design-pages-extra.is-active span,
.dash-design-pages-extra.is-active strong {
  color: #166534;
}

@media (max-width: 640px) {
  .dash-design-pages-list {
    grid-template-columns: 1fr;
  }
}

.dash-seo-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

#seoBillDurationDiscountRow span:last-child {
  color: #047857;
  font-weight: 800;
}

#seoBillAddonRow span:last-child {
  color: #1d4ed8;
  font-weight: 700;
}

.dash-seo-package {
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  text-align: right;
  display: grid;
  gap: 6px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dash-seo-package:hover {
  border-color: rgba(66, 133, 244, 0.45);
}

.dash-seo-package.is-selected {
  border-color: rgba(66, 133, 244, 0.8);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
  transform: translateY(-1px);
}

.dash-seo-package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-seo-package-head strong {
  font-size: 13px;
  color: #0f172a;
}

.dash-seo-package-head small {
  font-size: 11px;
  color: #2563eb;
  font-weight: 700;
}

.dash-seo-package-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.8;
}

.dash-seo-mode-row {
  display: inline-flex;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  padding: 3px;
  background: #fff;
  gap: 4px;
}

.dash-seo-mode {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: #475569;
  cursor: pointer;
}

.dash-seo-mode.is-selected {
  background: rgba(66, 133, 244, 0.12);
  color: #1d4ed8;
  font-weight: 700;
}

.dash-seo-summary-hint {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 8px 10px;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1.8;
}

.dash-note--warn {
  border-color: rgba(245, 158, 11, 0.36);
  background: rgba(251, 191, 36, 0.12);
  color: #92400e;
}

.dash-note--subtle {
  border-color: rgba(148, 163, 184, 0.32);
  background: #f8fafc;
  color: #475569;
}

.dash-radio-option {
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  background: #fff;
}

.dash-radio-option input {
  margin: 0;
  accent-color: #2563eb;
}

.dash-overview-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.dash-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-overview-side {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.dash-wallet-coming {
  border: 1px solid rgba(66, 133, 244, 0.24);
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(460px 180px at 88% -18%, rgba(66, 133, 244, 0.14), transparent 62%),
    radial-gradient(340px 160px at 6% -28%, rgba(52, 168, 83, 0.12), transparent 58%),
    #ffffff;
  display: grid;
  gap: 14px;
}

.dash-wallet-coming-badge {
  width: fit-content;
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.08);
  padding: 5px 10px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
}

.dash-wallet-coming-head {
  display: grid;
  gap: 6px;
}

.dash-wallet-coming-head h3 {
  margin: 0;
  font-size: 20px;
  color: var(--ink);
  font-weight: 800;
}

.dash-wallet-coming-head p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}

.dash-wallet-feature-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dash-wallet-feature {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: #ffffff;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.dash-wallet-feature span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.dash-wallet-feature strong {
  font-size: 13px;
  color: var(--ink);
}

.dash-wallet-feature small {
  font-size: 11px;
  color: var(--muted);
}

.dash-wallet-coming-actions {
  display: flex;
  justify-content: flex-end;
}

.dash-wallet-panel {
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
  margin-inline-end: auto;
}

.dash-wallet-cmodern {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  background:
    radial-gradient(300px 140px at 0% 100%, rgba(16, 185, 129, 0.08), transparent 72%),
    #ffffff;
  min-height: 320px;
}

.dash-wallet-cmodern-main {
  padding: 18px;
  border-left: 1px solid rgba(148, 163, 184, 0.2);
  background:
    radial-gradient(220px 120px at 100% -10%, rgba(59, 130, 246, 0.16), transparent 70%),
    linear-gradient(165deg, #f7fbff, #ffffff);
  display: grid;
  gap: 10px;
  align-content: start;
}

.dash-wallet-cmodern-chip {
  width: fit-content;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: #1e40af;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}

.dash-wallet-cmodern-main small {
  font-size: 11px;
  color: #64748b;
}

.dash-wallet-cmodern-main strong {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.dash-wallet-cmodern-main p {
  margin: 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.8;
}

.dash-wallet-cmodern-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.dash-wallet-cmodern-kpi {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 11px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 3px;
}

.dash-wallet-cmodern-kpi span {
  font-size: 10px;
  color: #64748b;
}

.dash-wallet-cmodern-kpi b {
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
}

.dash-wallet-cmodern-note {
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: 12px;
  background: rgba(239, 246, 255, 0.85);
  padding: 9px 10px;
  display: grid;
  gap: 4px;
}

.dash-wallet-cmodern-note strong {
  font-size: 11px;
  color: #1e40af;
  font-weight: 800;
}

.dash-wallet-cmodern-note p {
  margin: 0;
  font-size: 11px;
  color: #334155;
  line-height: 1.8;
}

.dash-wallet-cmodern-actions {
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: start;
  align-items: start;
  grid-auto-rows: min-content;
  background: #ffffff;
}

.dash-wallet-cmodern-op {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 12px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: linear-gradient(180deg, #fcfdff, #ffffff);
  min-height: 48px;
}

.dash-wallet-cmodern-op span {
  font-size: 11px;
  color: #334155;
  font-weight: 700;
  line-height: 1.5;
}

.dash-wallet-cmodern-op .auth-btn {
  min-height: 30px;
  padding-inline: 10px;
  border-radius: 9px;
  font-size: 11px;
}

.dash-table--wallet-transactions .dash-table-row {
  grid-template-columns: 1.15fr 0.85fr 1.9fr;
  min-width: 0;
}

.dash-table--wallet-transactions .dash-table-row > span {
  line-height: 1.8;
  white-space: nowrap;
}

.dash-table--wallet-transactions .dash-table-head > span {
  font-size: 11px;
}

.dash-wallet-desc {
  white-space: normal !important;
  line-height: 1.7;
}

.dash-wallet-amount {
  font-weight: 800;
  justify-content: flex-start;
  direction: ltr;
}

.dash-wallet-amount--credit {
  color: #047857;
}

.dash-wallet-amount--debit {
  color: #b91c1c;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  width: fit-content;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.dash-status--paid {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.dash-status--pending {
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.dash-status--danger {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.dash-wallet-topup-shell {
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 18px;
  padding: 15px;
  background:
    radial-gradient(180px 80px at 100% -10%, rgba(59, 130, 246, 0.14), transparent 66%),
    linear-gradient(180deg, rgba(66, 133, 244, 0.06), rgba(66, 133, 244, 0.01)),
    #ffffff;
  display: grid;
  gap: 14px;
}

.dash-wallet-topup-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.dash-wallet-topup-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.32);
  background: rgba(59, 130, 246, 0.12);
  color: #1e40af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-wallet-topup-head strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.dash-wallet-topup-head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.85;
}

.dash-wallet-topup-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #ffffff;
  padding: 2px 10px;
}

.dash-wallet-topup-input input {
  border: none;
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.dash-wallet-topup-input input:focus {
  border: none;
  box-shadow: none;
}

.dash-wallet-topup-input span {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

.dash-wallet-topup-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dash-wallet-topup-breakdown {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.92);
  padding: 10px;
  display: grid;
  gap: 7px;
}

.dash-wallet-topup-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #475569;
}

.dash-wallet-topup-breakdown-row strong {
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
}

.dash-wallet-topup-breakdown-row.is-total {
  border-top: 1px dashed #d6deea;
  padding-top: 8px;
  margin-top: 3px;
}

.dash-wallet-topup-breakdown-row.is-total span {
  color: #0f172a;
  font-weight: 700;
}

.dash-wallet-topup-breakdown-row.is-total strong {
  color: #1d4ed8;
  font-size: 13px;
}

.dash-wallet-topup-alert {
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.09);
  color: #92400e;
  font-size: 12px;
  line-height: 1.9;
  padding: 8px 10px;
}

.dash-wallet-topup-alert strong {
  font-weight: 800;
}

.dash-wallet-quick {
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.dash-wallet-quick:hover {
  border-color: rgba(66, 133, 244, 0.5);
  color: #1d4ed8;
}

.dash-wallet-quick.is-active {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
  color: #1e40af;
}

.dash-wallet-note {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
  z-index: 1;
}

.dash-pay-loading {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 20px;
}

.dash-pay-loading.hidden {
  display: none;
}

.dash-pay-loading-card {
  width: min(360px, 92vw);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
  padding: 16px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.dash-pay-loading-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
}

.dash-pay-spinner {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 3px solid #cbd5e1;
  border-inline-end-color: var(--primary);
  animation: dashSpin 0.9s linear infinite;
}

@media (max-width: 1024px) {
  .dash-wallet-panel {
    width: 100%;
    margin-inline-end: 0;
  }

  .dash-wallet-cmodern {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .dash-wallet-cmodern-main {
    border-left: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }
}

@media (max-width: 640px) {
  .dash-wallet-cmodern-kpis {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Prevent iOS auto-zoom on focus for small form fonts */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  input[type="date"],
  input[type="time"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

.auth-btn,
.dash-link,
.panel-link,
button,
input,
select,
textarea {
  font-family: inherit;
}
