:root {
  --blue-50: #eff8ff;
  --blue-100: #d9edff;
  --blue-200: #a8d6ff;
  --blue-500: #3c86e8;
  --royal-600: #1f58c9;
  --royal-700: #153b9c;
  --ink-900: #102033;
  --ink-700: #30425b;
  --ink-500: #6a7890;
  --line: #dfe8f4;
  --surface: #ffffff;
  --soft-shadow: 0 24px 70px rgba(31, 88, 201, .18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink-900);
  font-family: Satoshi;
  background:
    radial-gradient(circle at top left, rgba(168, 214, 255, .7), transparent 32rem),
    linear-gradient(135deg, #f7fbff 0%, #e8f4ff 42%, #d9e9ff 100%);
}

a {
  text-decoration: none;
}

.sx-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0d2b68;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 44px rgba(13, 43, 104, .18);
}

.sx-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sx-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 950;
  line-height: 1.05;
}

.sx-brand:hover,
.sx-brand:focus {
  color: #fff;
}

.sx-brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #dce9f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(35, 104, 210, .14);
}

.sx-brand-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.sx-brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 800;
}

.sx-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 850;
}

.sx-nav-links a {
  color: rgba(255, 255, 255, .82);
}

.sx-nav-links a:hover,
.sx-nav-links a:focus {
  color: #7de7f2;
}

.sx-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sx-btn:hover,
.sx-btn:focus {
  transform: translateY(-1px);
}

.sx-btn-secondary {
  color: #123a8f;
  border-color: #b7d1f4;
  background: rgba(255, 255, 255, .9);
}

.sx-btn-secondary:hover,
.sx-btn-secondary:focus {
  color: #123a8f;
}

.business-feedback-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(224, 168, 0, .45);
  border-radius: 22px;
  background: linear-gradient(135deg, #fffdf4 0%, #fff7d8 100%);
  box-shadow: 0 18px 48px rgba(224, 138, 0, .12);
}

.business-feedback-copy {
  display: grid;
  gap: 4px;
}

.business-feedback-copy strong {
  color: #7a3b00;
  font-size: 16px;
  font-weight: 900;
}

.business-feedback-copy span {
  color: #9a6d36;
  font-size: 14px;
  line-height: 1.55;
}

.business-feedback-btn,
.business-feedback-submit {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #ea8a00 0%, #cc6d00 100%);
  box-shadow: 0 14px 30px rgba(204, 109, 0, .24);
}

.business-feedback-btn:hover,
.business-feedback-btn:focus,
.business-feedback-submit:hover,
.business-feedback-submit:focus {
  color: #fff;
  transform: translateY(-1px);
}

.business-feedback-modal .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(19, 47, 91, .24);
}

.business-feedback-modal .modal-header,
.business-feedback-modal .modal-footer {
  padding: 24px 28px;
  border-color: #e6edf8;
}

.business-feedback-modal .modal-body {
  padding: 0 28px 28px;
}

.business-feedback-modal .modal-title {
  color: var(--ink-900);
  font-size: 24px;
  font-weight: 900;
}

.business-feedback-form .form-label {
  color: #8b9ab7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.business-feedback-form .form-control {
  min-height: 54px;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  box-shadow: none;
}

.business-feedback-form textarea.form-control {
  min-height: 170px;
  padding-top: 14px;
  resize: vertical;
}

.business-feedback-form small {
  display: block;
  margin-top: 8px;
  color: #9aa8c2;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .business-feedback-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .business-feedback-btn,
  .business-feedback-submit {
    width: 100%;
  }

  .business-feedback-modal .modal-header,
  .business-feedback-modal .modal-footer,
  .business-feedback-modal .modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.sx-footer {
  color: rgba(255, 255, 255, .74);
  padding: 68px 0 0;
  background:
    radial-gradient(circle at top left, rgba(60, 134, 232, .34), transparent 32rem),
    linear-gradient(135deg, #071a3b 0%, #0d3584 48%, #08245b 100%);
  border-top: 1px solid rgba(168, 214, 255, .35);
}

.sx-footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.sx-footer-side {
  padding-left: clamp(0px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.sx-footer-text {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.75;
}

.sx-footer-contact {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.sx-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 800;
}

.sx-footer-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-grid;
  place-items: center;
  color: #8fc6ff;
  border: 1px solid rgba(168, 214, 255, .42);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
}

.sx-footer-contact strong,
.sx-footer h2,
.sx-footer a:hover,
.sx-footer a:focus {
  color: #8fc6ff;
}

.sx-footer-contact strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.2;
}

.sx-footer-contact a,
.sx-footer-contact span span {
  color: rgba(255, 255, 255, .86);
  line-height: 1.35;
}

.sx-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sx-footer-social a,
.sx-footer-bottom a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(168, 214, 255, .65);
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
  font-size: 18px;
}

.sx-footer-social a:hover,
.sx-footer-social a:focus,
.sx-footer-bottom a:hover,
.sx-footer-bottom a:focus {
  color: #071a3b;
  background: #8fc6ff;
  border-color: #8fc6ff;
}

.sx-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.sx-footer h2 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 950;
}

.sx-footer-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  margin-bottom: 12px;
}

.sx-footer-newsletter {
  position: relative;
  margin-bottom: 12px;
}

.sx-footer-newsletter input {
  width: 100%;
  min-height: 58px;
  padding: 0 58px 0 18px;
  color: #fff;
  border: 1px solid rgba(168, 214, 255, .22);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, .1);
  font: inherit;
}

.sx-footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .62);
}

.sx-footer-newsletter button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #071a3b;
  background: #8fc6ff;
  font-weight: 950;
}

.sx-footer-note {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.55;
}

.sx-footer-bottom {
  margin-top: 58px;
  color: rgba(255, 255, 255, .72);
  background: #06142f;
  border-top: 1px solid rgba(168, 214, 255, .16);
}

.sx-footer-bottom .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .sx-nav {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    padding: 12px 0;
  }

  .sx-nav-links {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .sx-nav-links::-webkit-scrollbar {
    display: none;
  }

  .sx-nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    white-space: nowrap;
  }

  .sx-nav-links .sx-btn {
    min-height: 38px;
  }

  .sx-footer-grid,
  .sx-footer-links {
    grid-template-columns: 1fr;
  }

  .sx-footer-side {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .sx-footer {
    padding-top: 46px;
  }

  .sx-footer-bottom .container {
    min-height: 62px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #eaf7ff 0%, #5a8ee8 48%, #123d9d 100%);
}

.auth-shell {
  width: min(1200px, 100%);
  min-height: 578px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(255, 255, 255, .58);
}

.auth-panel {
  padding: clamp(36px, 5vw, 64px);
}

.auth-panel-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-panel-info {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(109, 181, 255, .92), rgba(31, 88, 201, .95) 48%, rgba(21, 59, 156, .98)),
    url("../brand/logo.png");
  background-size: cover;
  display: flex;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink-900);
  margin: 0 auto 42px;
}

.brand-mark.compact {
  margin: 0;
}

.brand-mark strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-mark small {
  display: block;
  color: var(--ink-500);
  font-size: .78rem;
}

.brand-icon-wrap {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(31, 88, 201, .14);
}

.brand-icon-wrap img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.login-form {
  width: min(500px, 100%);
  margin: 0 auto;
}

.form-label {
  color: var(--ink-700);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 8px;
}

.form-control::placeholder {
  color: #8a97aa;
  opacity: .68;
}

.soft-input {
  height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(16, 32, 51, .02);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.soft-input:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(60, 134, 232, .12);
}

.soft-input > i {
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--royal-600);
  background: #f6faff;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.soft-input .form-control,
.soft-input .form-select {
  height: 100%;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: var(--ink-900);
  font-size: .95rem;
  padding: 0 14px;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--royal-600);
  background: transparent;
  margin-right: 6px;
}

.icon-button:hover {
  background: var(--blue-50);
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 26px 0 30px;
  color: var(--ink-700);
  font-size: .92rem;
}

.login-options a {
  color: var(--royal-600);
  font-weight: 700;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-700);
  font-weight: 700;
}

.soft-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.soft-check input {
  position: absolute;
  opacity: 0;
}

.soft-check span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid #9cc4ff;
  background: #fff;
  display: inline-grid;
  place-items: center;
}

.soft-check input:checked + span {
  background: var(--royal-600);
  border-color: var(--royal-600);
}

.soft-check input:checked + span::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.btn {
  border-radius: 11px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: .94rem;
}

.btn-primary-soft {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #70bcff 0%, #2f74df 52%, #153b9c 100%);
  box-shadow: 0 14px 34px rgba(31, 88, 201, .28);
}

.btn-primary-soft:hover,
.btn-primary-soft:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(31, 88, 201, .34);
}

.btn-outline-soft {
  color: var(--royal-700);
  border: 1px solid #b8d5ff;
  background: rgba(255, 255, 255, .84);
}

.btn-outline-soft:hover {
  color: #fff;
  border-color: var(--royal-600);
  background: var(--royal-600);
}

.btn-link-soft {
  min-height: 42px;
  color: var(--ink-700);
  font-weight: 700;
  padding-inline: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--royal-600);
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: 0;
  font-weight: 900;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-500);
}

.eyebrow.light {
  color: #e9f5ff;
}

.eyebrow.light::before {
  background: #cde9ff;
}

.info-content {
  max-width: 500px;
}

.info-content h2,
.auth-copy-mobile h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
  font-weight: 900;
  margin: 0 0 24px;
}

.info-content p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 42px;
}

.benefit-list {
  display: grid;
  gap: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.benefit-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  color: #d8efff;
  font-size: 1rem;
}

.auth-copy-mobile {
  display: none;
}

.plans-page {
  min-height: 100vh;
}

.plans-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 11px 0;
  background: linear-gradient(135deg, #071c42 0%, #0d3584 58%, #123d9d 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 224, 255, .16);
  box-shadow: 0 16px 38px rgba(7, 28, 66, .22);
}

.plans-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.plans-nav .brand-mark {
  color: #fff;
}

.plans-nav .brand-mark small {
  color: rgba(226, 242, 255, .78);
}

.plans-nav .brand-icon-wrap {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(255, 255, 255, .38);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.plans-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.plans-nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 10px;
  color: rgba(239, 248, 255, .9);
  font-weight: 850;
  font-size: .92rem;
  white-space: nowrap;
}

.plans-nav-link:hover,
.plans-nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.plans-panel-btn {
  min-height: 42px;
  color: #0d3584;
  border: 1px solid rgba(255, 255, 255, .75);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.plans-panel-btn:hover,
.plans-panel-btn:focus {
  color: #071c42;
  background: #eaf5ff;
  border-color: #eaf5ff;
}

.plans-hero {
  padding: 72px 0 50px;
}

.plans-hero h1 {
  max-width: 760px;
  font-weight: 900;
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
  line-height: 1.04;
  margin: 0 0 22px;
}

.plans-hero p {
  max-width: 650px;
  color: var(--ink-700);
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.segment-selector {
  max-width: 760px;
  margin-top: 22px;
}

.segment-selector > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-900);
  font-size: .92rem;
  font-weight: 900;
}

.segment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment-option {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184, 213, 255, .95);
  color: var(--ink-700);
  background: rgba(255, 255, 255, .8);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: .18s ease;
}

.segment-option:hover,
.segment-option:focus,
.segment-option.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--royal-700));
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(31, 88, 201, .18);
}

.segment-option.upcoming {
  cursor: default;
  color: var(--ink-500);
  background: rgba(255, 255, 255, .58);
  border-style: dashed;
  box-shadow: none;
}

.segment-option.upcoming small {
  margin-left: 6px;
  color: var(--royal-700);
  font-size: .7rem;
  font-weight: 900;
}

.segment-option.upcoming.active {
  color: var(--ink-700);
  background: rgba(255, 255, 255, .8);
  border-color: rgba(184, 213, 255, .95);
}

.public-segment-selector {
  margin-top: 20px;
}

.plans-context-preview {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) 1.3fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(184, 213, 255, .9);
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 36px rgba(31, 88, 201, .08);
}

.plans-context-preview span,
.plans-context-preview em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--royal-700);
  background: var(--blue-50);
  font-size: .76rem;
  font-style: normal;
  font-weight: 900;
}

.plans-context-preview strong {
  display: block;
  margin-top: 7px;
  color: var(--ink-900);
  font-size: 1rem;
}

.plans-context-preview p {
  margin: 0;
  color: var(--ink-600);
  font-size: .95rem;
  line-height: 1.5;
}

.plans-context-preview > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-preview-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(184, 213, 255, .9);
  box-shadow: var(--soft-shadow);
}

.site-preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(184, 213, 255, .62);
}

.site-preview-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #8bbdff;
}

.site-preview-top span:nth-child(2) {
  background: #70dfbf;
}

.site-preview-top span:nth-child(3) {
  background: #ffd166;
}

.site-preview-top strong {
  margin-left: 6px;
  color: var(--royal-700);
  font-size: .86rem;
}

.site-preview-cover {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(143, 198, 255, .8), transparent 16rem),
    linear-gradient(135deg, #edf7ff 0%, #dcecff 100%);
}

.site-preview-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-preview-segments {
  width: 100%;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(184, 213, 255, .86);
  border-radius: 18px;
  color: var(--royal-700);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 36px rgba(31, 88, 201, .13);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.site-preview-body {
  padding: 20px;
}

.site-preview-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--royal-700);
  background: var(--blue-50);
  font-size: .78rem;
  font-weight: 900;
}

.site-preview-body h2 {
  margin: 12px 0 8px;
  color: var(--ink-900);
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 900;
}

.site-preview-body p {
  margin: 0;
  color: var(--ink-600);
  font-size: .96rem;
  line-height: 1.5;
}

.site-preview-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.site-preview-services span {
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: var(--ink-700);
  border: 1px solid rgba(184, 213, 255, .75);
  font-size: .82rem;
  font-weight: 800;
}

.site-preview-button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--royal-700));
  font-weight: 900;
}

.plans-section,
.faq-section,
.feature-strip {
  padding: 54px 0;
  scroll-margin-top: 104px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
}

.plan-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 213, 255, .9);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 45px rgba(31, 88, 201, .1);
}

.plan-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
  border-color: rgba(47, 116, 223, .42);
  box-shadow: 0 24px 58px rgba(31, 88, 201, .2);
}

.plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f5ff;
  color: var(--royal-700);
  font-size: .72rem;
  font-weight: 900;
}

.plan-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.plan-card p {
  min-height: 96px;
  color: var(--ink-500);
  line-height: 1.55;
  margin-bottom: 18px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.plan-price strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--royal-700);
}

.plan-price span {
  color: var(--ink-500);
  font-weight: 700;
}

.trial-note {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--royal-700);
  background: var(--blue-50);
  font-size: .82rem;
  font-weight: 800;
  margin: -4px 0 18px;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 26px;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-700);
  font-size: .94rem;
}

.plan-card li i {
  color: var(--royal-600);
  margin-top: 1px;
}

.mini-feature {
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}

.mini-feature i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--royal-700);
  background: var(--blue-50);
  border-radius: 12px;
  margin-bottom: 16px;
}

.mini-feature strong {
  display: block;
  margin-bottom: 8px;
}

.mini-feature span {
  color: var(--ink-500);
}

.soft-accordion {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.soft-accordion .accordion-item {
  border-color: var(--line);
}

.soft-accordion .accordion-button {
  font-weight: 800;
  color: var(--ink-900);
}

.soft-accordion .accordion-button:not(.collapsed) {
  color: var(--royal-700);
  background: var(--blue-50);
  box-shadow: none;
}

.saas-footer {
  color: rgba(232, 244, 255, .78);
  padding: 64px 0 0;
  background:
    linear-gradient(135deg, #06142f 0%, #0b2c70 52%, #06142f 100%);
  border-top: 1px solid rgba(168, 214, 255, .24);
}

.saas-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(160px, .7fr) minmax(190px, .8fr) minmax(230px, .9fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.saas-footer-main,
.saas-footer-column,
.saas-footer-contact-card {
  min-width: 0;
}

.saas-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 24px;
}

.saas-footer-brand:hover,
.saas-footer-brand:focus {
  color: #fff;
}

.saas-footer-brand .brand-icon-wrap {
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.saas-footer-brand strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.05;
}

.saas-footer-brand small {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.saas-footer-text {
  max-width: 520px;
  margin: 0 0 22px;
  color: rgba(232, 244, 255, .76);
  font-size: 1rem;
  line-height: 1.75;
}

.saas-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.saas-footer-actions .btn-outline-soft {
  color: #fff;
  border-color: rgba(168, 214, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.saas-footer-actions .btn-outline-soft:hover,
.saas-footer-actions .btn-outline-soft:focus {
  color: #06142f;
  border-color: #8fc6ff;
  background: #8fc6ff;
}

.saas-footer h2,
.saas-footer-column a:hover,
.saas-footer-column a:focus,
.saas-footer-contact-card a:hover,
.saas-footer-contact-card a:focus {
  color: #8fc6ff;
}

.saas-footer-bottom a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(168, 214, 255, .65);
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.saas-footer-bottom a:hover,
.saas-footer-bottom a:focus {
  color: #071a3b;
  background: #8fc6ff;
  border-color: #8fc6ff;
}

.saas-footer h2 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 900;
}

.saas-footer-column a,
.saas-footer-contact-card a,
.saas-footer-contact-card span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  color: rgba(232, 244, 255, .74);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.saas-footer-column a i,
.saas-footer-contact-card i {
  color: #8fc6ff;
  font-size: 1rem;
  flex: 0 0 auto;
}

.saas-footer-contact-card {
  padding: 22px;
  border: 1px solid rgba(168, 214, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
}

.saas-footer-bottom {
  margin-top: 48px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(232, 244, 255, .72);
  border-top: 1px solid rgba(168, 214, 255, .16);
}

.create-site-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 12%, rgba(143, 198, 255, .55), transparent 32rem),
    linear-gradient(135deg, #f7fbff 0%, #eaf4ff 48%, #dcecff 100%);
}

.create-site-hero {
  padding: 66px 0 76px;
}

.create-site-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.create-site-copy {
  position: sticky;
  top: 128px;
  padding-top: 16px;
}

.create-site-copy h1 {
  max-width: 640px;
  margin: 0 0 20px;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
}

.create-site-copy p {
  max-width: 590px;
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.68;
}

.create-site-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.create-site-bullets span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(184, 213, 255, .78);
  border-radius: 12px;
  color: var(--royal-700);
  background: rgba(255, 255, 255, .7);
  font-weight: 850;
  font-size: .88rem;
}

.create-site-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(184, 213, 255, .92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--soft-shadow);
}

.create-site-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.create-site-card-head span {
  color: var(--ink-500);
  font-weight: 850;
}

.create-site-card-head strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--royal-700);
  background: var(--blue-50);
  font-size: .88rem;
  font-weight: 900;
}

.create-site-card .alert {
  border-radius: 12px;
  font-weight: 750;
}

.create-site-card .form-label {
  margin-bottom: 7px;
}

.create-subdomain .input-group {
  min-height: 50px;
}

.create-subdomain .form-control,
.create-subdomain .input-group-text,
.create-subdomain .btn-subdomain-check {
  min-height: 50px;
}

.create-subdomain .form-control {
  border-color: var(--line);
  border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding-left: 16px;
}

.create-subdomain .input-group-text {
  border-color: var(--line);
  background: #f6faff;
}

.create-subdomain .btn-subdomain-check {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.create-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--ink-900);
  background: #fff;
  resize: vertical;
}

.create-textarea:focus,
.create-subdomain .form-control:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(60, 134, 232, .12);
}

.not-found {
  width: min(520px, 100%);
  padding: 42px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.not-found h1 {
  font-weight: 900;
}

.master-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, #2f74df 0 300px, transparent 300px),
    radial-gradient(circle at top left, rgba(168, 214, 255, .45), transparent 28rem),
    linear-gradient(135deg, #f3f9ff 0%, #eaf4ff 48%, #f8fbff 100%);
}

.master-nav {
  min-height: 72px;
  background: linear-gradient(135deg, #2f74df 0%, #1f58c9 54%, #123d9d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 32px rgba(18, 61, 157, .18);
}

.master-nav .container-fluid {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: clamp(18px, 3vw, 34px);
  padding-right: clamp(18px, 3vw, 34px);
}

.master-brand-zone {
  order: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.master-nav .brand-mark {
  margin: 0;
  color: #fff;
}

.master-nav .brand-mark small {
  color: #dcecff;
}

.master-menu-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 24px rgba(8, 24, 70, .14);
}

.master-menu-toggle:hover,
.master-menu-toggle:focus {
  color: var(--royal-700);
  border-color: #fff;
  background: #fff;
}

.master-menu-toggle i {
  font-size: 1.4rem;
  line-height: 1;
}

.master-user {
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  font-weight: 800;
}

.master-actions {
  order: 3;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: rgba(13, 37, 91, .42);
  box-shadow: 0 10px 24px rgba(8, 24, 70, .14);
}

.master-action-btn,
.master-avatar-btn {
  position: relative;
  width: 39px;
  height: 39px;
  border: 0;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: transparent;
}

.master-action-btn:hover,
.master-action-btn:focus,
.master-avatar-btn:hover,
.master-avatar-btn:focus {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.master-action-btn i {
  font-size: 1.15rem;
  line-height: 1;
}

.action-badge {
  position: absolute;
  top: -3px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
}

.action-badge.warning {
  background: #f59e0b;
}

.action-badge.success {
  background: #16a34a;
}

.action-badge.danger {
  background: #ef233c;
}

.master-avatar-btn {
  margin-left: 2px;
}

.master-avatar-btn span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--royal-700);
  background: #f8fbff;
  border: 2px solid #dcecff;
  font-weight: 900;
}

.master-avatar-btn img,
.profile-dropdown-avatar img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: block;
  object-fit: cover;
  border: 2px solid #dcecff;
  background: #f8fbff;
}

.toolbar-dropdown {
  width: min(330px, calc(100vw - 28px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(16, 32, 51, .18);
}

.toolbar-dropdown h6 {
  margin: 0;
  padding: 14px 16px;
  color: var(--ink-900);
  font-weight: 900;
  border-bottom: 1px solid var(--line);
}

.toolbar-dropdown p {
  margin: 0;
  padding: 14px 16px;
  color: var(--ink-500);
  font-size: .9rem;
}

.toolbar-item {
  display: block;
  padding: 12px 16px;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line);
}

.toolbar-item:hover {
  color: var(--royal-700);
  background: var(--blue-50);
}

.toolbar-item strong,
.toolbar-item span {
  display: block;
}

.toolbar-item strong {
  font-size: .86rem;
  font-weight: 900;
}

.toolbar-item span {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: .8rem;
}

.toolbar-footer {
  display: block;
  padding: 11px 16px;
  color: var(--royal-700);
  background: #f8fbff;
  font-weight: 900;
  font-size: .86rem;
}

.profile-dropdown {
  min-width: 245px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(16, 32, 51, .18);
  overflow: hidden;
}

.profile-dropdown .dropdown-item {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-700);
  font-weight: 800;
}

.profile-dropdown .dropdown-item:hover {
  color: var(--royal-700);
  background: var(--blue-50);
}

.profile-dropdown-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
}

.profile-dropdown-avatar span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--royal-700);
  background: #f8fbff;
  border: 2px solid #dcecff;
  font-weight: 900;
}

.profile-dropdown-avatar img {
  width: 38px;
  height: 38px;
}

.profile-dropdown-head strong,
.profile-dropdown-head > div:last-child span {
  display: block;
}

.profile-dropdown-head strong {
  color: var(--ink-900);
  font-size: .95rem;
}

.profile-dropdown-head > div:last-child span {
  color: var(--ink-500);
  font-size: .82rem;
  word-break: break-all;
}

.master-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  transition: grid-template-columns .22s ease, gap .22s ease;
}

.master-sidebar {
  min-height: calc(100vh - 120px);
  max-height: none;
  overflow: visible;
  padding: 10px 8px 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-color: rgba(255, 255, 255, .55) transparent;
}

.sidebar-mobile-head {
  display: none;
}

.sidebar-backdrop {
  display: none;
}

.modal {
  z-index: 3200;
}

.modal-backdrop {
  z-index: 3190;
}

.tooltip {
  z-index: 3300;
}

body.modal-open .master-sidebar,
body.modal-open .business-sidebar,
body.modal-open .sidebar-backdrop,
body.modal-open .row-action-palette {
  z-index: 1000;
}

body.modal-open .master-sidebar,
body.modal-open .business-sidebar {
  visibility: hidden;
  pointer-events: none;
}

body.modal-open.sidebar-open .master-sidebar,
body.modal-open.sidebar-open .business-sidebar {
  transform: translateX(-104%) !important;
  pointer-events: none;
}

body.modal-open.sidebar-open .sidebar-backdrop {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.master-sidebar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 10px;
  color: #f3f8ff;
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(18, 61, 157, .28);
}

.master-sidebar a i {
  flex: 0 0 auto;
  font-size: 1rem;
}

.master-sidebar a:hover,
.master-sidebar a.active {
  color: #fff;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 4px 0 0 #58cfb5;
}

.master-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.master-heading {
  margin-bottom: 20px;
}

.master-heading h1 {
  margin: 6px 0;
  color: #102033;
  font-weight: 900;
}

.master-heading p {
  max-width: 780px;
  color: #5d6d86;
}

.master-heading .eyebrow {
  color: var(--royal-600);
}

.master-heading .eyebrow::before {
  background: var(--blue-500);
}

.kpi-card {
  min-height: 91px;
  padding: 13px 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1f58c9, #123d9d);
  box-shadow: 0 12px 28px rgba(18, 61, 157, .18);
  isolation: isolate;
}

.kpi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .16), transparent 42%),
    linear-gradient(0deg, rgba(16, 32, 51, .12), transparent);
}

.kpi-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 4px;
  background: rgba(255, 255, 255, .34);
}

.kpi-card i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 9px;
  margin-bottom: 10px;
  font-size: .82rem;
}

.kpi-card span {
  display: block;
  color: rgba(255, 255, 255, .84);
  font-size: .72rem;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.kpi-card strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: .98rem;
  line-height: 1.2;
  word-break: break-word;
}

.kpi-card.tone-blue { background: linear-gradient(135deg, #1f58c9, #123d9d); }
.kpi-card.tone-cyan { background: linear-gradient(135deg, #168fd8, #0d5bb8); }
.kpi-card.tone-emerald { background: linear-gradient(135deg, #1bbf95, #097f66); }
.kpi-card.tone-rose { background: linear-gradient(135deg, #f04463, #b4234d); }
.kpi-card.tone-amber { background: linear-gradient(135deg, #f59e0b, #b96b00); }
.kpi-card.tone-indigo { background: linear-gradient(135deg, #4967e8, #273aa3); }
.kpi-card.tone-violet { background: linear-gradient(135deg, #7658e8, #4130a3); }
.kpi-card.tone-teal { background: linear-gradient(135deg, #2ac7bc, #087b86); }
.kpi-card.tone-green { background: linear-gradient(135deg, #21a85b, #0f713f); }
.kpi-card.tone-orange { background: linear-gradient(135deg, #f97316, #b34309); }
.kpi-card.tone-sky { background: linear-gradient(135deg, #3c86e8, #1262c7); }
.kpi-card.tone-red { background: linear-gradient(135deg, #ef233c, #a70f26); }

.master-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(18, 61, 157, .12);
}

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

.panel-heading h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.panel-heading a,
.panel-heading span {
  color: var(--royal-600);
  font-weight: 800;
  font-size: .9rem;
}

.chart-panel {
  min-height: 374px;
}

.chart-panel .panel-heading {
  align-items: flex-start;
  margin-bottom: 8px;
}

.chart-panel .panel-heading span {
  display: block;
  margin-top: 4px;
  color: var(--ink-500);
  font-weight: 700;
}

.chart-wrap {
  position: relative;
  width: 100%;
  height: 286px;
}

.chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.empty-text {
  margin: 0;
  color: var(--ink-500);
}

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

.audit-list > div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fbff;
}

.audit-list strong,
.audit-list span {
  display: block;
}

.audit-list span {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: .9rem;
}

.master-table {
  min-width: 760px;
}

.master-table th {
  color: var(--ink-700);
  font-size: .78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.master-table td {
  color: var(--ink-700);
  font-size: .9rem;
  max-width: 320px;
}

.master-switch {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  font-weight: 800;
  color: var(--ink-700);
}

.master-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.master-toolbar-left,
.master-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-master-add {
  color: #fff;
  background: #58cfb5;
  border-color: #58cfb5;
  font-weight: 900;
  min-height: 42px;
}

.btn-master-add:hover,
.btn-master-add:focus {
  color: #fff;
  background: #40bfa3;
  border-color: #40bfa3;
}

.btn-master-report {
  color: #fff;
  background: var(--royal-700);
  border-color: var(--royal-700);
  font-weight: 900;
  min-height: 42px;
}

.btn-master-report:hover,
.btn-master-report:focus {
  color: #fff;
  background: #0f317f;
  border-color: #0f317f;
}

.btn-master-export {
  color: #fff;
  background: #009a54;
  border-color: #009a54;
  font-weight: 900;
  min-height: 42px;
}

.btn-master-export:hover,
.btn-master-export:focus {
  color: #fff;
  background: #007f45;
  border-color: #007f45;
}

.master-search {
  min-width: min(280px, 100%);
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #58cfb5;
  border-radius: 7px;
  background: #fff;
}

.master-search i {
  width: 42px;
  height: 100%;
  display: grid;
  place-items: center;
  color: #ff446b;
  border-right: 1px solid #c8f0e7;
}

.master-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink-700);
  padding: 0 12px;
  background: transparent;
}

.master-record-modal .modal-content {
  display: flex;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
}

.master-record-modal .modal-header {
  min-height: 58px;
  color: #fff;
  background: #58cfb5;
  border: 0;
}

.master-record-modal .modal-title {
  font-size: 1rem;
  font-weight: 900;
}

.master-modal-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.master-modal-close:hover,
.master-modal-close:focus {
  color: #fff;
  background: rgba(255, 255, 255, .18);
}

.master-record-modal .modal-body {
  padding: 18px 18px 4px;
  min-height: 0;
  overflow-y: auto;
}

.master-record-modal form {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.master-modal-tabs {
  gap: 8px;
  border-bottom-color: #cfd6df;
}

.master-modal-tabs .nav-link {
  color: #53607a;
  border-radius: 2px 2px 0 0;
  font-weight: 800;
}

.master-modal-tabs .nav-link.active {
  color: var(--ink-900);
  border-color: #cfd6df #cfd6df #fff;
}

.master-modal-tab-content {
  padding-top: 20px;
}

.master-record-modal .form-label {
  color: #4a516d;
  font-size: .86rem;
  font-weight: 800;
}

.master-record-modal .form-label small {
  color: #ff446b;
  font-size: .68rem;
}

.master-record-modal .form-control,
.master-record-modal .form-select {
  min-height: 38px;
  border-color: #c9ced8;
  border-radius: 6px;
}

.master-record-modal .form-control:focus,
.master-record-modal .form-select:focus {
  border-color: #58cfb5;
  box-shadow: 0 0 0 .2rem rgba(88, 207, 181, .18);
}

.support-master-reply {
  padding: 18px;
  border: 1px solid rgba(31, 88, 201, .16);
  border-radius: 16px;
  background: #f7fbff;
}

.support-master-reply textarea {
  min-height: 132px;
  resize: vertical;
}

.support-master-reply small {
  display: block;
  margin-top: 8px;
  color: #667894;
  font-weight: 700;
}

.master-upload-field {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid #d7dde8;
  border-radius: 8px;
  background: #f8fbff;
}

.master-upload-preview {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--royal-600);
  background: #fff;
  border: 1px dashed #b9c6dc;
}

.master-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.master-upload-preview i {
  font-size: 2.15rem;
}

.master-upload-control {
  min-width: 0;
  flex: 1;
}

.master-upload-control small {
  display: block;
  margin-top: 6px;
  color: #6a7890;
  font-size: .76rem;
  font-weight: 800;
}

.business-current-file-link {
  display: inline-flex;
  margin-top: 8px;
  color: #1f58c9;
  font-size: .8rem;
  font-weight: 900;
  text-decoration: none;
}

.business-current-file-link:hover,
.business-current-file-link:focus {
  color: #123d9d;
  text-decoration: underline;
}

.subdomain-checker .input-group {
  align-items: stretch;
}

.subdomain-checker .form-control {
  min-width: 150px;
}

.subdomain-checker .input-group-text {
  color: var(--ink-700);
  font-weight: 800;
  border-color: #c9ced8;
  background: #f5f9ff;
}

.btn-subdomain-check {
  min-height: 38px;
  color: #fff;
  border-color: var(--royal-600);
  background: var(--royal-600);
  white-space: nowrap;
}

.btn-subdomain-check:hover,
.btn-subdomain-check:focus {
  color: #fff;
  border-color: var(--royal-700);
  background: var(--royal-700);
}

.subdomain-result {
  min-height: 20px;
  margin-top: 6px;
  color: #6a7890;
  font-size: .78rem;
  font-weight: 800;
}

.subdomain-result.is-ok {
  color: #16895a;
}

.subdomain-result.is-error {
  color: #e23a5d;
}

.seo-slug-tools {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.seo-slug-preview {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid #d7deea;
  border-radius: 6px;
  color: var(--royal-800);
  background: #f5f9ff;
  font-size: .82rem;
  font-weight: 800;
  word-break: break-all;
}

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

.master-record-modal .modal-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  flex-shrink: 0;
  gap: 10px;
  padding: 16px 18px 18px;
  background: #fff;
  border-top-color: #edf1f5;
  box-shadow: 0 -10px 24px rgba(16, 35, 69, .08);
}

.business-record-modal .modal-dialog {
  margin-top: 18px;
  margin-bottom: 18px;
}

.selection-column {
  width: 98px;
  text-align: center;
}

.action-column {
  width: 92px;
  white-space: nowrap;
}

.btn-row-actions {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #ef3338;
}

.btn-row-actions:hover,
.btn-row-actions:focus {
  color: #fff;
  background: #cf2027;
}

.row-action-palette {
  width: max-content;
  min-width: 0;
  max-width: calc(100vw - 28px);
  padding: 8px;
  border: 1px solid #1f2937;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(16, 32, 51, .18);
  z-index: 1080;
}

.row-action-palette form {
  display: inline;
}

.master-page .table-responsive,
.business-page .table-responsive,
.table-fluid {
  width: 100%;
  overflow: visible !important;
  max-height: none !important;
}

.master-panel,
.business-panel,
.master-table,
.business-table,
.master-table tbody,
.business-table tbody,
.master-table tr,
.business-table tr,
.master-table td,
.business-table td {
  overflow: visible !important;
}

.row-action-dropdown {
  position: static;
}

.row-action-btn {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  margin: 4px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.row-action-btn:hover,
.row-action-btn:focus {
  color: #fff;
  filter: brightness(.94);
}

.action-edit { background: #68d7e8; }
.action-view { background: #ffb04f; }
.action-copy { background: #667085; }
.action-print { background: #5cc8a8; }
.action-csv { background: #1a9b5a; }
.action-check { background: #47c39a; }
.action-start { background: #2563eb; }
.action-complete { background: #16a34a; }
.action-delete { background: #ef233c; }

.master-table tr.row-checked > td {
  background: #f0fff9;
}

.master-details-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.master-details-list div {
  display: grid;
  grid-template-columns: minmax(120px, 210px) minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.master-details-list dt {
  color: var(--ink-500);
  font-weight: 900;
}

.master-details-list dd {
  margin: 0;
  color: var(--ink-700);
  overflow-wrap: anywhere;
}

.support-format-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
}

.support-format-nav {
  min-height: 620px;
  padding: 14px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #6d78e7, #7452ad);
  box-shadow: 0 20px 46px rgba(42, 51, 142, .24);
}

.support-format-nav a,
.support-nav-group button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  color: #fff;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.support-format-nav a:hover,
.support-format-nav a.active,
.support-nav-group button {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.support-nav-group {
  margin: 8px 0;
}

.support-nav-group button {
  justify-content: flex-start;
}

.support-nav-group button .bi-chevron-up {
  margin-left: auto;
}

.support-nav-group a {
  margin-top: 8px;
  padding-left: 22px;
  background: rgba(255, 255, 255, .08);
}

.support-format-main {
  min-width: 0;
}

.support-status-toolbar {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.support-status-toolbar .btn-master-add {
  min-width: 152px;
  background: #6678ee;
  border-color: #6678ee;
  box-shadow: 0 12px 26px rgba(102, 120, 238, .26);
}

.support-status-toolbar .btn-master-add:hover,
.support-status-toolbar .btn-master-add:focus {
  background: #5164dd;
  border-color: #5164dd;
}

.support-table-panel {
  padding: 24px;
  background: rgba(255, 255, 255, .98);
}

.support-table-panel .panel-heading {
  display: none;
}

.support-table-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--ink-700);
  font-weight: 700;
}

.support-table-controls label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-table-controls .form-select {
  width: 72px;
  border-radius: 10px;
}

.support-table-controls .form-control {
  width: min(220px, 34vw);
  border-radius: 10px;
}

.support-table-panel .master-table {
  min-width: 700px;
}

.support-table-panel .selection-column {
  width: 74px;
}

.support-table-panel .action-column {
  width: 74px;
}

.support-table-panel .master-table th {
  color: #0f172a;
  background: #f7f8fb;
  border-bottom-color: #cfd6df;
  font-size: .84rem;
  text-transform: none;
}

.support-table-panel .master-table td {
  color: #111827;
  font-size: .92rem;
}

.support-color-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.support-color-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .9), 0 0 0 3px rgba(15, 23, 42, .08);
}

.support-color-badge,
.support-bool-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 7px;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.support-color-badge {
  background: #20c997;
}

.support-bool-badge.yes {
  background: #198754;
}

.support-bool-badge.no {
  background: #6c757d;
}

.support-status-name {
  color: #111827;
}

.support-inline-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.support-inline-actions a,
.support-inline-actions button {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: #0d6efd;
  border: 1px solid #0d6efd;
  background: #fff;
}

.support-inline-actions a {
  border-radius: 4px 0 0 4px;
}

.support-inline-actions form {
  margin: 0;
}

.support-inline-actions button {
  color: #ff3150;
  border-color: #ff3150;
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.support-inline-actions a:hover,
.support-inline-actions a:focus {
  color: #fff;
  background: #0d6efd;
}

.support-inline-actions button:hover,
.support-inline-actions button:focus {
  color: #fff;
  background: #ff3150;
}

.public-page {
  min-height: 100vh;
}

.public-article {
  padding: clamp(56px, 8vw, 104px) 0;
}

.public-article h1 {
  max-width: 920px;
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 900;
}

.public-article .lead {
  max-width: 820px;
  color: var(--ink-700);
  font-size: 1.15rem;
  line-height: 1.65;
}

.public-body {
  max-width: 840px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 213, 255, .8);
}

.public-body p {
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.8;
}

.public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.business-site {
  min-height: 100vh;
  color: #261b27;
  background: #fff8fb;
  scroll-behavior: smooth;
}

.business-site-nav {
  position: fixed;
  z-index: 40;
  top: 10px;
  left: 50%;
  width: min(1120px, calc(100% - 24px));
  min-height: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(89, 54, 74, .14);
  backdrop-filter: blur(14px);
}

.business-site-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #251b2c;
  font-weight: 900;
}

.business-site-brand span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #f0dce6;
}

.business-site-brand img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.business-site-brand strong {
  overflow: hidden;
  max-width: 210px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.business-site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.business-site-nav-links a,
.business-site-whatsapp {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: 13px;
  color: #5c4559;
  font-size: .9rem;
  font-weight: 900;
}

.business-site-nav-links a:hover,
.business-site-nav-links a:focus {
  color: #be3157;
  background: #fff1f6;
}

.business-site-whatsapp {
  color: #fff;
  background: #168b68;
}

.business-site-whatsapp:hover,
.business-site-whatsapp:focus {
  color: #fff;
  background: #0f7659;
}

.business-site-hero {
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 42px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(38, 27, 39, .86) 0%, rgba(38, 27, 39, .58) 42%, rgba(38, 27, 39, .12) 100%),
    var(--hero-image) center / cover no-repeat;
}

.business-site-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
}

.business-site-hero-copy {
  max-width: 760px;
}

.business-site-kicker,
.business-site-section-head span,
.business-site-booking-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #be3157;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: 0;
}

.business-site-kicker {
  color: #ffd9e7;
  margin-bottom: 14px;
}

.business-site-kicker::before,
.business-site-section-head span::before,
.business-site-booking-copy > span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.business-site-hero h1 {
  max-width: 840px;
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 8vw, 6.6rem);
  line-height: .96;
  font-weight: 950;
}

.business-site-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.68;
}

.business-site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.business-site-primary,
.business-site-secondary {
  min-height: 50px;
  border-radius: 15px;
  padding-inline: 18px;
}

.business-site-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #ff7aa8, #be3157 56%, #5f7df5);
  box-shadow: 0 18px 42px rgba(190, 49, 87, .26);
}

.business-site-primary:hover,
.business-site-primary:focus {
  color: #fff;
  transform: translateY(-1px);
}

.business-site-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.business-site-secondary:hover,
.business-site-secondary:focus {
  color: #251b2c;
  background: #fff;
}

.business-site-hero-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 60px rgba(38, 27, 39, .22);
  backdrop-filter: blur(10px);
}

.business-site-hero-panel > span {
  color: #7b6170;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.business-site-hero-panel a {
  display: block;
  padding: 12px;
  border-radius: 15px;
  color: #261b27;
  background: #fff;
}

.business-site-hero-panel a:hover,
.business-site-hero-panel a:focus {
  color: #be3157;
  background: #fff2f7;
}

.business-site-hero-panel strong,
.business-site-hero-panel small {
  display: block;
}

.business-site-hero-panel small {
  color: #7b6170;
  font-weight: 800;
}

.business-site-band {
  padding: clamp(54px, 8vw, 96px) 0;
}

.business-site-intro {
  padding: 18px 0;
  background: #261b27;
}

.business-site-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
}

.business-site-stat-grid div {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, .06);
}

.business-site-stat-grid strong,
.business-site-stat-grid span {
  display: block;
}

.business-site-stat-grid strong {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 950;
}

.business-site-stat-grid span {
  color: #f7dce7;
  font-weight: 800;
}

.business-site-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.business-site-section-head h2,
.business-site-booking-copy h2 {
  margin: 8px 0 10px;
  color: #261b27;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 950;
}

.business-site-section-head p,
.business-site-booking-copy p {
  margin: 0;
  color: #765f6d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.business-site-chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.business-site-chip-row span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: #362336;
  background: color-mix(in srgb, var(--chip-color) 18%, #fff);
  border: 1px solid color-mix(in srgb, var(--chip-color) 36%, #fff);
  font-weight: 900;
}

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

.business-site-service-card,
.business-site-team-grid article,
.business-site-testimonials blockquote {
  border: 1px solid #f0dce6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(89, 54, 74, .08);
}

.business-site-service-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
}

.business-site-service-category {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--service-color);
  font-size: .75rem;
  font-weight: 950;
}

.business-site-service-card h3,
.business-site-team-grid h3 {
  margin: 0 0 8px;
  color: #261b27;
  font-size: 1.15rem;
  font-weight: 950;
}

.business-site-service-card p,
.business-site-team-grid p {
  margin: 0;
  color: #765f6d;
  line-height: 1.55;
}

.business-site-service-bottom {
  display: grid;
  grid-template-columns: 1fr auto 42px;
  align-items: center;
  gap: 8px;
}

.business-site-service-bottom strong {
  color: #be3157;
  font-size: 1.08rem;
  font-weight: 950;
}

.business-site-service-bottom span {
  color: #765f6d;
  font-weight: 900;
}

.business-site-service-bottom a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: #261b27;
}

.business-site-visual-band {
  padding: 18px 0;
  background: #fff;
}

.business-site-gallery {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 12px;
}

.business-site-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(89, 54, 74, .12);
}

.business-site-gallery img:first-child {
  aspect-ratio: 16 / 9;
}

.business-site-team-grid,
.business-site-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.business-site-team-grid article {
  padding: 18px;
}

.business-site-team-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #f06292, #5f7df5);
  font-weight: 950;
}

.business-site-proof {
  padding: clamp(54px, 8vw, 96px) 0;
  color: #fff;
  background: linear-gradient(135deg, #261b27, #573047 56%, #253b78);
}

.business-site-proof .business-site-section-head h2,
.business-site-proof .business-site-section-head span {
  color: #fff;
}

.business-site-proof .business-site-section-head {
  margin-bottom: 24px;
}

.business-site-testimonials blockquote {
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.business-site-testimonials p {
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
}

.business-site-testimonials footer {
  color: #ffd9e7;
  font-weight: 950;
}

.business-site-booking {
  padding: clamp(54px, 8vw, 96px) 0;
  background: #fff8fb;
}

.business-site-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: start;
}

.business-site-booking-copy {
  position: sticky;
  top: 100px;
}

.business-site-booking-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.business-site-booking-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #423044;
  font-weight: 900;
}

.business-site-booking-copy li i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #168b68;
}

.business-site-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid #f0dce6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(89, 54, 74, .12);
}

.business-site-form label {
  display: grid;
  gap: 7px;
  color: #3a293a;
  font-weight: 900;
}

.business-site-form .form-control,
.business-site-form .form-select {
  min-height: 48px;
  border-color: #ecd3df;
  border-radius: 8px;
}

.business-site-form .form-control:focus,
.business-site-form .form-select:focus {
  border-color: #f06292;
  box-shadow: 0 0 0 .22rem rgba(240, 98, 146, .16);
}

.business-site-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.business-site-info {
  padding: 26px 0 34px;
  background: #261b27;
}

.business-site-info .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
}

.business-site-info div div {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.business-site-info span {
  color: #ffd9e7;
  font-weight: 900;
}

.business-site-info strong {
  font-size: .98rem;
  line-height: 1.45;
}

.business-page {
  min-height: 100vh;
  color: #1b2435;
  background:
    linear-gradient(90deg, #2f74df 0 300px, transparent 300px),
    radial-gradient(circle at top left, rgba(168, 214, 255, .45), transparent 28rem),
    linear-gradient(135deg, #f3f9ff 0%, #eaf4ff 48%, #f8fbff 100%);
}

.business-topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 3vw, 32px);
  background: linear-gradient(135deg, #2f74df 0%, #1f58c9 54%, #123d9d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 32px rgba(18, 61, 157, .18);
}

.business-topbar-left,
.business-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.business-brand strong,
.business-brand small {
  display: block;
}

.business-brand strong {
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.05;
}

.business-brand small {
  color: #dcecff;
  font-size: .78rem;
}

.business-plan-label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  white-space: nowrap;
}

.business-brand-logo,
.business-menu-toggle,
.business-quick-link,
.business-avatar {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 24, 70, .14);
}

.business-brand-logo {
  background: #fff;
}

.business-brand-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.business-menu-toggle,
.business-quick-link,
.business-avatar {
  border: 0;
}

.business-menu-toggle:hover,
.business-quick-link:hover {
  color: var(--royal-700);
  border-color: #fff;
  background: #fff;
}

.business-avatar {
  color: #fff;
  background: #58cfb5;
  font-weight: 900;
}

.business-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  transition: grid-template-columns .22s ease, gap .22s ease;
}

.business-sidebar {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 116px);
  max-height: none;
  overflow: visible;
  padding: 10px 8px 10px 0;
  scrollbar-color: rgba(255, 255, 255, .55) transparent;
}

.business-sidebar .sidebar-mobile-head {
  border-bottom-color: rgba(255, 255, 255, .22);
}

.business-sidebar .sidebar-mobile-head strong {
  color: #fff;
}

.business-sidebar .sidebar-mobile-head button {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.business-sidebar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 10px;
  color: #f3f8ff;
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(18, 61, 157, .28);
}

.business-sidebar a i {
  flex: 0 0 auto;
  color: inherit;
  font-size: 1.04rem;
}

.business-sidebar a:hover,
.business-sidebar a.active {
  color: #fff;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 4px 0 0 #58cfb5;
}

.business-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.business-heading {
  margin-bottom: 20px;
  padding-left: 2px;
}

.business-heading h1 {
  margin: 8px 0 8px;
  color: #102033;
  font-weight: 900;
}

.business-heading p {
  max-width: 820px;
  margin: 0;
  color: #5d6c83;
}

.business-heading .eyebrow {
  color: var(--royal-600);
}

.business-kpi {
  min-height: 86px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  column-gap: 12px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 61, 157, .16);
}

.business-kpi i {
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .2);
  font-size: 1.12rem;
}

.business-kpi span {
  margin-top: 0;
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.business-kpi strong {
  margin-top: 3px;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.1;
  word-break: break-word;
}

.business-kpi.tone-rose { background: linear-gradient(135deg, #1f58c9, #123d9d); }
.business-kpi.tone-blue { background: linear-gradient(135deg, #3c86e8, #1262c7); }
.business-kpi.tone-green { background: linear-gradient(135deg, #20c997, #0f8f72); }
.business-kpi.tone-purple { background: linear-gradient(135deg, #4967e8, #273aa3); }
.business-kpi.tone-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.business-kpi.tone-indigo { background: linear-gradient(135deg, #168fd8, #0d5bb8); }
.business-kpi.tone-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.business-kpi.tone-pink { background: linear-gradient(135deg, #1bbf95, #097f66); }

.business-panel,
.business-chart-panel {
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 46px rgba(18, 61, 157, .1);
}

.business-panel {
  padding: 20px;
}

.business-support-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.business-support-heading h1 {
  margin-top: 4px;
}

.business-support-list-panel .panel-heading span,
.business-support-form-panel .panel-heading span {
  color: #667997;
  font-size: .82rem;
  font-weight: 800;
}

.business-support-table tr.is-selected td {
  background: rgba(60, 134, 232, .08);
}

.support-ticket-title {
  display: block;
  color: #123d9d;
  font-weight: 900;
  text-decoration: none;
}

.support-ticket-title:hover,
.support-ticket-title:focus {
  color: #0f766e;
}

.business-support-table small {
  display: block;
  margin-top: 3px;
  color: #6a7a92;
  font-weight: 700;
}

.support-status-pill {
  --status-color: #0d6efd;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--status-color) 34%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--status-color) 12%, #fff);
  color: color-mix(in srgb, var(--status-color) 72%, #102033);
  font-size: .76rem;
  font-weight: 900;
  white-space: nowrap;
}

.support-status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-color);
}

.support-priority-pill {
  min-width: 74px;
  justify-content: center;
}

.business-support-form .form-label,
.support-reply-form .form-label {
  color: #102345;
  font-weight: 900;
}

.support-upload-note {
  margin-top: 14px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px dashed #c7d7ee;
  border-radius: 8px;
  color: #60718d;
  font-weight: 800;
}

.support-upload-note i {
  color: #1262c7;
}

#supportTicketModal .modal-dialog {
  max-height: calc(100vh - 24px);
}

#supportTicketModal .business-support-modal {
  max-height: calc(100vh - 24px);
  overflow: hidden;
}

#supportTicketModal .business-support-form {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

#supportTicketModal .modal-body {
  min-height: 0;
  overflow-y: auto;
}

#supportTicketModal .modal-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  flex-shrink: 0;
  gap: 10px;
  background: #fff;
  border-top: 1px solid #dbe6f5;
  box-shadow: 0 -10px 24px rgba(16, 35, 69, .08);
}

.business-template-testimonial-modal .modal-dialog {
  max-height: calc(100vh - 24px);
}

.business-template-testimonial-modal .modal-content {
  max-height: calc(100vh - 24px);
  overflow: hidden;
}

.business-template-testimonial-modal .modal-body {
  min-height: 0;
  overflow-y: auto;
}

.business-support-detail-panel {
  position: sticky;
  top: 92px;
}

.support-empty-detail {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.support-empty-detail i {
  color: #3c86e8;
  font-size: 2rem;
}

.support-empty-detail h2,
.support-ticket-summary h2 {
  margin: 0;
  color: #102345;
  font-size: 1.15rem;
  font-weight: 900;
}

.support-ticket-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe6f5;
}

.support-meta-grid {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.support-meta-grid div {
  padding: 11px;
  border: 1px solid #e1eaf7;
  border-radius: 8px;
  background: #f8fbff;
}

.support-meta-grid span {
  display: block;
  color: #667997;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-meta-grid strong {
  display: block;
  margin-top: 4px;
  color: #102345;
  font-size: .88rem;
  font-weight: 900;
}

.support-close-form {
  margin-bottom: 14px;
}

.support-reply-form {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #f8fbff;
}

.support-thread {
  display: grid;
  gap: 14px;
}

.support-message {
  padding: 14px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #fff;
}

.support-message.is-staff {
  border-color: rgba(32, 201, 151, .34);
  background: rgba(32, 201, 151, .07);
}

.support-message-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-message-head strong {
  color: #102345;
  font-weight: 900;
}

.support-message-head span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1262c7;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-message time {
  display: block;
  margin-top: 4px;
  color: #6a7a92;
  font-size: .76rem;
  font-weight: 800;
}

.support-message p {
  margin: 12px 0 0;
  color: #27364c;
  line-height: 1.55;
}

.support-message blockquote,
.support-conversation-message blockquote {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 3px solid #3c86e8;
  border-radius: 6px;
  background: rgba(60, 134, 232, .08);
  color: #52647f;
  font-size: .88rem;
  line-height: 1.45;
}

.support-desk-heading {
  margin-bottom: 16px;
}

.support-desk-stats {
  margin-bottom: 2px;
}

.support-stat-card {
  display: flex;
  min-height: 92px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 35, 69, .06);
}

.support-stat-card span {
  color: #102345;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
}

.support-stat-card strong {
  margin-top: 8px;
  color: #62728d;
  font-size: .82rem;
  font-weight: 900;
}

.support-stat-card.tone-red {
  border-color: rgba(220, 53, 69, .28);
}

.support-stat-card.tone-amber {
  border-color: rgba(245, 158, 11, .34);
}

.support-stat-card.tone-slate {
  border-color: rgba(100, 116, 139, .28);
}

.support-stat-card.tone-blue {
  border-color: rgba(31, 88, 201, .28);
}

.support-desk-tabs {
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 35, 69, .07);
  overflow: hidden;
}

.support-tabs {
  padding: 10px 12px 0;
  border-bottom: 1px solid #dbe6f5;
  background: #f8fbff;
}

.support-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: #5c6f8c;
  font-weight: 900;
}

.support-tabs .nav-link.active {
  color: #123d9d;
  background: #fff;
  border: 1px solid #dbe6f5;
  border-bottom-color: #fff;
}

.support-tab-content {
  padding: 16px;
}

.support-desk-grid {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.support-ticket-list-panel,
.support-ticket-detail-panel,
.support-new-ticket-panel,
.support-filter-panel {
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #fff;
}

.support-ticket-list-panel,
.support-ticket-detail-panel {
  padding: 16px;
}

.support-new-ticket-panel,
.support-filter-panel {
  padding: 18px;
}

.support-master-ticket-list {
  display: grid;
  gap: 10px;
  max-height: 780px;
  overflow: auto;
  padding-right: 4px;
}

.support-master-ticket {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e1eaf7;
  border-radius: 8px;
  color: #102345;
  text-decoration: none;
}

.support-master-ticket:hover,
.support-master-ticket:focus,
.support-master-ticket.active {
  border-color: #3c86e8;
  background: #f5f9ff;
}

.support-client-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  color: #123d9d;
  font-weight: 950;
}

.support-master-ticket-main {
  min-width: 0;
}

.support-master-ticket-main strong,
.support-master-ticket-main small,
.support-master-ticket-side small {
  display: block;
}

.support-master-ticket-main strong {
  overflow: hidden;
  color: #102345;
  font-size: .92rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-master-ticket-main small,
.support-master-ticket-side small {
  margin-top: 4px;
  color: #6a7a92;
  font-size: .76rem;
  font-weight: 800;
}

.support-master-ticket-side {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.support-detail-tabs {
  gap: 8px;
  margin: 16px 0;
}

.support-detail-tabs .nav-link {
  border-radius: 999px;
  color: #667997;
  font-size: .82rem;
  font-weight: 900;
}

.support-detail-tabs .nav-link.active {
  background: #123d9d;
  color: #fff;
}

.support-detail-content {
  margin-bottom: 16px;
}

.support-manage-form,
.support-note-form,
.support-master-reply-box {
  padding: 16px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #f8fbff;
}

.support-note-form {
  display: grid;
  gap: 10px;
}

.support-notes-list,
.support-related-list,
.support-conversation {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.support-note-item,
.support-conversation-message,
.support-related-list a {
  padding: 13px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #fff;
}

.support-note-item {
  position: relative;
}

.support-note-item div,
.support-conversation-message header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.support-note-item strong,
.support-conversation-message strong,
.support-related-list strong {
  color: #102345;
  font-weight: 950;
}

.support-note-item time,
.support-conversation-message time,
.support-related-list span {
  color: #6a7a92;
  font-size: .76rem;
  font-weight: 800;
}

.support-note-item p,
.support-conversation-message p {
  margin: 10px 0 0;
  color: #27364c;
  line-height: 1.55;
}

.support-note-item form {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.support-note-item button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #fff1f2;
  color: #dc3545;
}

.support-related-list a {
  color: inherit;
  text-decoration: none;
}

.support-conversation-message.is-staff {
  border-color: rgba(31, 88, 201, .32);
  background: #f7fbff;
}

.support-conversation-message header div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-conversation-message header span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1262c7;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.support-reply-head h3 {
  margin: 0;
  color: #102345;
  font-size: 1rem;
  font-weight: 950;
}

.support-reply-head .form-select {
  max-width: 320px;
}

.support-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.support-close-master-form {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

@media (max-width: 1180px) {
  .support-desk-grid {
    grid-template-columns: 1fr;
  }

  .support-master-ticket-list {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .support-master-ticket {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .support-master-ticket-side {
    grid-column: 2;
    justify-items: start;
  }

  .support-reply-head,
  .support-note-item div,
  .support-conversation-message header {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-reply-head .form-select {
    max-width: none;
    width: 100%;
  }

  .support-form-actions,
  .support-close-master-form {
    align-items: stretch;
    flex-direction: column;
  }

  .support-form-actions .btn,
  .support-close-master-form .btn {
    width: 100%;
  }
}

.ssxp-public-form-page {
  min-height: 100vh;
  padding: 42px 16px;
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 113, 244, .2), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(20, 184, 166, .18), transparent 30%),
    linear-gradient(135deg, #eef6ff 0%, #f8fbff 48%, #eefaf7 100%);
}

.ssxp-public-form-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}

.ssxp-public-form-card {
  margin-top: 28px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(31, 88, 201, .12);
  border-radius: 34px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 28px 80px rgba(15, 35, 80, .14);
  backdrop-filter: blur(16px);
}

.ssxp-public-form-card h1 {
  margin: 6px 0 10px;
  color: #102033;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -.04em;
}

.ssxp-public-form-card p {
  max-width: 650px;
  color: #52627a;
  font-size: 1.05rem;
}

.ssxp-public-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.ssxp-public-form label {
  display: grid;
  gap: 8px;
  color: #17243a;
  font-weight: 850;
}

.ssxp-public-form input,
.ssxp-public-form select,
.ssxp-public-form textarea {
  width: 100%;
  border: 1px solid #d6e4f5;
  border-radius: 18px;
  padding: 13px 15px;
  color: #102033;
  background: #ffffff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.ssxp-public-form input:focus,
.ssxp-public-form select:focus,
.ssxp-public-form textarea:focus {
  border-color: #1f58c9;
  box-shadow: 0 0 0 4px rgba(31, 88, 201, .12);
}

.ssxp-public-form button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #1f58c9, #0f9f8f);
  box-shadow: 0 18px 38px rgba(31, 88, 201, .2);
}

.master-feature-tools {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid rgba(31, 88, 201, .12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(239, 248, 255, .95), rgba(248, 251, 255, .92));
  box-shadow: 0 18px 44px rgba(15, 35, 80, .08);
}

.feature-tool-metrics,
.feature-tool-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.feature-tool-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #31435f;
  background: #ffffff;
  font-weight: 800;
}

.feature-tool-metrics strong {
  color: #1f58c9;
}

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

.feature-tool-actions input,
.feature-tool-actions select {
  min-height: 40px;
  border: 1px solid #d6e4f5;
  border-radius: 14px;
  padding: 7px 10px;
  color: #102033;
  background: #ffffff;
}

.row-action-palette form {
  display: inline-flex;
  margin: 0;
}

[data-bs-theme="dark"] .ssxp-public-form-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 113, 244, .24), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(20, 184, 166, .2), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0c172a 50%, #0a201d 100%);
}

[data-bs-theme="dark"] .ssxp-public-form-card {
  border-color: rgba(168, 214, 255, .18);
  background: rgba(12, 23, 42, .9);
}

[data-bs-theme="dark"] .ssxp-public-form-card h1,
[data-bs-theme="dark"] .ssxp-public-form label {
  color: #f7fbff;
}

[data-bs-theme="dark"] .ssxp-public-form-card p {
  color: #bfd0e8;
}

[data-bs-theme="dark"] .ssxp-public-form input,
[data-bs-theme="dark"] .ssxp-public-form select,
[data-bs-theme="dark"] .ssxp-public-form textarea {
  border-color: rgba(168, 214, 255, .18);
  color: #f7fbff;
  background: rgba(15, 30, 54, .76);
}

[data-bs-theme="dark"] .master-feature-tools {
  border-color: rgba(168, 214, 255, .18);
  background: linear-gradient(135deg, rgba(12, 23, 42, .9), rgba(15, 30, 54, .82));
}

[data-bs-theme="dark"] .feature-tool-metrics span,
[data-bs-theme="dark"] .feature-tool-actions input,
[data-bs-theme="dark"] .feature-tool-actions select {
  border-color: rgba(168, 214, 255, .18);
  color: #f7fbff;
  background: rgba(15, 30, 54, .78);
}

.support-kb-search,
.support-kb-strip,
.support-kb-card,
.notification-center-item {
  border: 1px solid rgba(168, 214, 255, .9);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(31, 88, 201, .08);
}

.support-kb-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 20px;
}

.support-kb-search i {
  color: #1f58c9;
}

.support-kb-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #102033;
  font-weight: 800;
}

.support-kb-search button {
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #70bcff 0%, #2f74df 55%, #153b9c 100%);
}

.support-kb-categories,
.support-kb-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-kb-categories {
  margin-bottom: 18px;
}

.support-kb-categories span,
.support-kb-strip-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #153b9c;
  background: #eff8ff;
  font-weight: 900;
  text-decoration: none;
}

.support-kb-categories small {
  color: #61708f;
}

.support-kb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-kb-card {
  padding: 22px;
  border-radius: 24px;
}

.support-kb-card > span {
  color: #1f58c9;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-kb-card h2 {
  margin: 8px 0;
  color: #102033;
  font-size: 1.2rem;
  font-weight: 950;
}

.support-kb-card p,
.support-kb-card details {
  color: #4b5c78;
  line-height: 1.55;
}

.support-kb-card summary {
  cursor: pointer;
  color: #153b9c;
  font-weight: 900;
}

.support-kb-strip {
  display: grid;
  grid-template-columns: minmax(220px, .4fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
}

.support-kb-strip h2 {
  margin: 4px 0 0;
  color: #102033;
  font-size: 1.1rem;
}

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

.notification-center-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
}

.notification-center-item.unread {
  box-shadow: inset 4px 0 0 #2f74df, 0 18px 48px rgba(31, 88, 201, .08);
}

.notification-center-item span {
  color: #1f58c9;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.notification-center-item h2 {
  margin: 5px 0 6px;
  color: #102033;
  font-size: 1.05rem;
  font-weight: 950;
}

.notification-center-item p {
  margin: 0 0 8px;
  color: #4b5c78;
}

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

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

  .notification-center-item {
    flex-direction: column;
  }
}

.business-site-settings {
  max-width: 1120px;
}

.business-record-form-panel {
  margin-bottom: 18px;
}

.business-site-settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dbe6f5;
}

.business-site-settings-head h2 {
  margin: 0 0 6px;
  color: #102345;
  font-size: 1.05rem;
  font-weight: 900;
}

.business-site-settings-head p {
  max-width: 680px;
  margin: 0;
  color: #60718d;
  font-weight: 700;
}

.business-site-settings-head-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.business-site-settings .form-label {
  color: #324462;
  font-size: .86rem;
  font-weight: 900;
}

.business-site-settings .form-label small {
  color: #ef476f;
  font-size: .68rem;
}

.business-site-settings .form-control,
.business-site-settings .form-select {
  min-height: 42px;
  border-color: #cbd7ea;
  border-radius: 8px;
}

.business-site-settings textarea.form-control {
  min-height: 96px;
}

.business-site-settings .form-control:focus,
.business-site-settings .form-select:focus {
  border-color: var(--royal-600);
  box-shadow: 0 0 0 .2rem rgba(31, 88, 201, .14);
}

.business-color-input {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
}

.business-color-input input[type="color"] {
  width: 72px;
  height: 44px;
  min-height: 44px;
  padding: 4px;
  cursor: pointer;
}

.business-color-input span,
.business-field-help {
  color: #6a7890;
  font-weight: 800;
  font-size: .86rem;
}

.business-permissions-note {
  margin: 0 0 12px;
  color: #5d6b84;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.45;
}

.business-label-help {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.business-help-trigger {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(31, 88, 201, .24);
  border-radius: 50%;
  color: #1f58c9;
  background: rgba(31, 88, 201, .04);
  font-size: .62rem;
  line-height: 1;
}

.business-help-trigger-sm {
  width: 16px;
  height: 16px;
  font-size: .56rem;
}

.business-help-trigger:hover,
.business-help-trigger:focus {
  color: #fff;
  background: #1f58c9;
  border-color: #1f58c9;
}

.master-switch.business-switch-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.master-switch.business-switch-help .business-help-trigger {
  flex: 0 0 auto;
}

.business-site-section-item .business-help-trigger {
  margin-left: auto;
  flex: 0 0 auto;
}

.business-site-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.business-site-text-item {
  display: grid;
  gap: 7px;
}

.business-site-text-item span {
  color: #30425b;
  font-size: .82rem;
  font-weight: 900;
}

.business-site-text-item .form-control {
  min-height: 42px;
}

.business-site-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.business-site-section-item {
  min-height: 92px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  background: #f8fbff;
}

.business-site-section-item .form-check-input {
  width: 42px;
  min-width: 42px;
  height: 22px;
  margin: 2px 0 0;
  cursor: pointer;
}

.business-site-section-item span {
  display: grid;
  gap: 4px;
}

.business-site-section-item strong {
  color: #21344d;
  font-size: .9rem;
  font-weight: 900;
}

.business-site-section-item small {
  color: #6a7890;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}

.business-restore-colors {
  border-color: #d8e7f8;
  color: #30425b;
}

.business-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #dbe6f5;
}


.business-site-form-sections {
  display: grid;
  gap: 18px;
}

.business-site-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 16px;
  margin-bottom: 18px;
}

.business-site-workbench-card {
  padding: 18px;
  border: 1px solid #dbe6f5;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 24px rgba(18, 61, 157, .06);
}

.business-site-workbench-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #1f58c9;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-site-workbench-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #58cfb5;
  box-shadow: 0 0 0 5px rgba(88, 207, 181, .14);
}

.business-site-workbench-card h3 {
  margin: 0 0 8px;
  color: #102345;
  font-size: 1rem;
  font-weight: 900;
}

.business-site-workbench-card p {
  margin: 0;
  color: #60718d;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6;
}

.business-site-workbench-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.business-site-checklist {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.business-site-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dbe6f5;
  border-radius: 12px;
  background: #fff;
  color: #60718d;
  font-size: .88rem;
  font-weight: 800;
}

.business-site-checklist-item i {
  color: #9aa8bd;
  font-size: 1rem;
}

.business-site-checklist-item.is-done {
  border-color: rgba(15, 159, 117, .18);
  background: rgba(15, 159, 117, .08);
  color: #165f3d;
}

.business-site-checklist-item.is-done i {
  color: #0f9f75;
}

.business-site-form-section {
  padding-top: 18px;
  border-top: 1px solid #d7e4f4;
}

.business-site-form-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.business-site-form-section > header {
  margin-bottom: 14px;
}

.business-site-form-section h3 {
  margin: 0;
  color: #102345;
  font-size: .98rem;
  font-weight: 950;
}
.business-settings-actions .btn {
  min-height: 44px;
  border-radius: 10px;
}

.business-feature-lock-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #f3c95a;
  border-radius: 999px;
  color: #5f3b00;
  background: #fff2b8;
  font-size: .82rem;
  font-weight: 900;
  white-space: nowrap;
}

.site-preview-modal .modal-dialog {
  max-width: 1180px;
  max-height: calc(100vh - 32px);
}

.site-preview-modal .modal-content {
  display: flex;
  max-height: calc(100vh - 32px);
  border: 1px solid #d8e7f8;
  border-radius: 12px;
  overflow: hidden;
}

.site-preview-modal .modal-header {
  align-items: flex-start;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  border-bottom-color: #d8e7f8;
}

.site-preview-modal .modal-title {
  margin: 0;
  color: #102345;
  font-size: 1.08rem;
  font-weight: 950;
}

.site-preview-modal .modal-header p {
  margin: 4px 0 0;
  color: #60718d;
  font-weight: 750;
}

.site-preview-modal .modal-body {
  min-height: 0;
  overflow-y: auto;
  background: #f5f8ff;
}

.site-preview-modal .modal-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  flex-shrink: 0;
  gap: 10px;
  background: #fff;
  border-top-color: #d8e7f8;
  box-shadow: 0 -10px 24px rgba(16, 35, 69, .08);
}

.site-preview-layout {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(260px, 1fr);
  gap: 18px;
  align-items: start;
}

.site-preview-device {
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid #1f2d49;
  border-radius: 34px;
  background: #101827;
  box-shadow: 0 24px 70px rgba(8, 24, 70, .24);
}

.site-preview-device-bar {
  min-height: 36px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 10px 10px;
  color: #d9e4f5;
  font-size: .72rem;
  font-weight: 850;
}

.site-preview-device-bar span {
  width: 62px;
  height: 5px;
  border-radius: 999px;
  background: #33425f;
}

.site-preview-device-bar strong {
  min-width: 0;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-preview-frame {
  overflow: hidden;
  border: 1px solid #d8e7f8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(18, 61, 157, .12);
}

.site-preview-device .site-preview-frame {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 620px;
  display: block;
  overflow: auto;
  border: 0;
  border-radius: 18px;
  background: var(--preview-light, #f8f7f4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.site-preview-nav {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  background: #ffffff;
  border-bottom: 1px solid #e0ebf8;
}

.site-preview-nav strong {
  min-width: 0;
  color: var(--preview-primary);
  font-size: 1rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.site-preview-nav nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #102345;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-preview-nav button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--preview-primary);
  border-radius: 8px;
  padding: 8px 14px;
  color: #111111;
  background: var(--preview-primary);
  font-size: .82rem;
  font-weight: 900;
}

.site-preview-hero {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    linear-gradient(135deg, var(--preview-secondary), var(--preview-primary));
}

.site-preview-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--preview-primary);
  font-family: Satoshi;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-style: italic;
}

.site-preview-hero h3 {
  max-width: 540px;
  margin: 0 0 12px;
  color: #142033;
  font-family: Satoshi;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.site-preview-hero p {
  max-width: 590px;
  margin: 0 0 20px;
  color: #40516a;
  font-weight: 750;
  line-height: 1.55;
}

.site-preview-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-preview-contact-row span {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.site-preview-contact-row i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: #111111;
  background: var(--preview-primary);
  border: 1px solid var(--preview-primary);
  border-radius: 8px;
  grid-row: span 2;
}

.site-preview-contact-row b {
  color: var(--preview-primary);
  font-weight: 950;
}

.site-preview-contact-row small {
  color: #142033;
  font-size: .9rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.business-template-preview-card {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(20, 32, 51, .78);
  box-shadow: 0 18px 50px rgba(20, 32, 51, .22);
}

.business-template-preview-card span {
  color: var(--preview-primary);
  font-weight: 950;
  text-transform: uppercase;
}

.business-template-preview-card strong {
  color: #ffffff;
  font-family: Satoshi;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.16;
}

.business-template-preview-card em {
  color: #d9e4f5;
  font-style: normal;
  font-weight: 800;
}

.site-preview-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  align-content: start;
}

.site-color-presets {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  background: #ffffff;
}

.site-color-presets > span {
  color: #30425b;
  font-size: .84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-color-presets > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 8px;
}

.site-color-preset {
  min-height: 68px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  color: #102345;
  background: #f8fbff;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.site-color-preset:hover,
.site-color-preset:focus-visible,
.site-color-preset.is-active {
  border-color: #2f74df;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 116, 223, .13);
  outline: 0;
}

.site-color-preset strong {
  min-width: 0;
  color: inherit;
  font-size: .86rem;
  font-weight: 950;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.site-color-preset-swatch {
  width: 52px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid #c7d8ef;
  border-radius: 7px;
}

.site-color-preset-swatch i:nth-child(1) {
  background: var(--preset-primary);
}

.site-color-preset-swatch i:nth-child(2) {
  background: var(--preset-secondary);
}

.site-color-preset-swatch i:nth-child(3) {
  background: var(--preset-text);
}

.site-color-preset-swatch i:nth-child(4) {
  background: var(--preset-light);
}

.site-color-preset-swatch i:nth-child(5) {
  background: var(--preset-dark);
}

.site-preview-tools label,
.site-plan-lock {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  background: #f8fbff;
}

.site-preview-tools label span {
  color: #30425b;
  font-weight: 900;
  line-height: 1.2;
}

.site-preview-tools input[type="color"] {
  width: 64px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.site-plan-lock {
  grid-column: 1 / -1;
  color: #064b63;
  background: #dff8ff;
  font-weight: 850;
}

.site-upgrade-feedback {
  max-width: 520px;
  margin-right: auto;
  padding: 9px 12px;
  border: 1px solid #f3c95a;
  border-radius: 10px;
  color: #5f3b00;
  background: #fff2b8;
  font-weight: 900;
}

.business-record-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe6f5;
}

.business-record-form-head h2,
.business-form-section h3 {
  margin: 0;
  color: #102345;
  font-weight: 900;
}

.business-record-form-head h2 {
  font-size: 1.08rem;
}

.business-record-form-head p {
  margin: 6px 0 0;
  color: #60718d;
  font-weight: 700;
}

.business-form-section {
  padding-top: 16px;
}

.business-form-section + .business-form-section {
  margin-top: 18px;
  border-top: 1px solid #dbe6f5;
}

.business-form-section h3 {
  margin-bottom: 14px;
  font-size: .94rem;
}

.business-hours-grid {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #cbd7ea;
  border-radius: 8px;
  background: #f8fbff;
}

.business-hours-row {
  display: grid;
  grid-template-columns: minmax(92px, 130px) minmax(120px, 1fr) minmax(120px, 1fr) auto;
  align-items: end;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e4edf8;
  border-radius: 8px;
  background: #fff;
}

.business-hours-row strong {
  align-self: center;
  color: #102345;
  font-size: .9rem;
}

.business-hours-row label {
  margin: 0;
}

.business-hours-row label span {
  display: block;
  margin-bottom: 4px;
  color: #60718d;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.business-hours-row .form-control {
  min-height: 38px;
}

.business-hours-closed {
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #f8fbff;
  font-weight: 900;
}

.business-hours-closed .form-check-input {
  margin: 0;
}

.business-hours-closed .form-check-label {
  margin: 0;
  color: #324462;
  font-size: .82rem;
}

.business-chart-panel {
  min-height: 318px;
  padding: 18px;
}

.business-chart-panel canvas {
  width: 100% !important;
  height: 232px !important;
  max-height: 232px;
  display: block;
}

.business-panel .panel-heading a {
  color: #5f7df5;
  font-weight: 900;
  font-size: .86rem;
}

.business-list {
  display: grid;
  gap: 10px;
}

.business-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid #e4edf8;
}

.business-list i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--royal-600);
  background: var(--blue-50);
}

.business-list span,
.business-list strong,
.business-list small {
  display: block;
  min-width: 0;
}

.business-list strong {
  color: #1d2b42;
  font-size: .9rem;
}

.business-list small {
  color: #657289;
  font-size: .78rem;
}

.subscription-heading {
  margin-bottom: 18px;
}

.subscription-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 16px;
  margin-bottom: 16px;
}

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

.subscription-current div,
.subscription-summary {
  min-width: 0;
}

.subscription-current span,
.subscription-summary span {
  display: block;
  color: #60718d;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subscription-current strong,
.subscription-summary strong {
  display: block;
  margin-top: 6px;
  color: #102345;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.2;
  word-break: break-word;
}

.subscription-summary {
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.subscription-summary strong {
  font-size: 1.38rem;
}

.subscription-summary small {
  display: block;
  margin-top: 6px;
  color: #60718d;
  font-weight: 800;
}

.subscription-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.subscription-section-head {
  margin-bottom: 14px;
}

.subscription-section-head h2 {
  margin: 0 0 4px;
  color: #102345;
  font-size: 1rem;
  font-weight: 950;
}

.subscription-section-head p {
  margin: 0;
  color: #657289;
  font-size: .86rem;
  font-weight: 750;
}

.subscription-periods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.subscription-period,
.subscription-plan-option {
  position: relative;
  cursor: pointer;
}

.subscription-period input,
.subscription-plan-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.subscription-period span {
  min-height: 72px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #f8fbff;
}

.subscription-period strong,
.subscription-period small,
.subscription-plan-top strong,
.subscription-plan-top small,
.subscription-plan-copy {
  display: block;
}

.subscription-period strong,
.subscription-plan-top strong {
  color: #102345;
  font-weight: 950;
}

.subscription-period small,
.subscription-plan-top small,
.subscription-plan-copy {
  color: #657289;
  font-size: .82rem;
  font-weight: 800;
}

.subscription-period input:checked + span,
.subscription-period:focus-within span,
.subscription-plan-option.is-selected,
.subscription-plan-option:focus-within {
  border-color: #1f58c9;
  background: #eef7ff;
  box-shadow: 0 0 0 3px rgba(31, 88, 201, .1);
}

.subscription-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.subscription-plan-option {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  background: #fff;
}

.subscription-plan-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.subscription-plan-top small {
  white-space: nowrap;
}

.subscription-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.subscription-actions [data-billing-feedback] {
  color: #60718d;
  font-weight: 850;
}

.subscription-actions [data-billing-feedback][data-tone="error"] {
  color: #d33f49;
}

.subscription-actions [data-billing-feedback][data-tone="success"] {
  color: #0f8f72;
}

[data-client-recurring-feedback][data-tone="error"] {
  color: #d33f49;
}

[data-client-recurring-feedback][data-tone="success"] {
  color: #0f8f72;
}

.pix-panel {
  display: none;
  max-width: 680px;
}

.pix-panel.is-visible {
  display: block;
}

.pix-qr-wrap {
  min-height: 214px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px dashed #b9cce6;
  border-radius: 8px;
  background: #f8fbff;
}

.pix-qr-wrap img {
  width: min(220px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}

.pix-copy-label {
  display: block;
  margin-bottom: 7px;
  color: #324462;
  font-size: .82rem;
  font-weight: 950;
}

.pix-panel textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  padding: 12px;
  border: 1px solid #cbd7ea;
  border-radius: 8px;
  color: #102345;
  background: #fff;
  font-size: .82rem;
  line-height: 1.45;
}

.pix-actions {
  display: flex;
  margin-top: 12px;
}

.pix-status {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #dbe6f5;
  border-radius: 8px;
  color: #324462;
  background: #f8fbff;
  font-size: .86rem;
  font-weight: 800;
}

.business-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.business-toolbar-left,
.business-toolbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.business-add-btn {
  color: #fff;
  background: linear-gradient(135deg, #1f58c9, #123d9d);
  border: 0;
  box-shadow: 0 14px 32px rgba(18, 61, 157, .22);
}

.business-report-btn {
  color: #fff;
  background: #1f58c9;
  border: 0;
}

.business-export-btn {
  color: #fff;
  background: #0f9f75;
  border: 0;
}

.business-search {
  background: #fff;
}

.business-table th {
  color: #fff;
  background: #2b3140;
}

.business-table td {
  background: rgba(255, 255, 255, .94);
}

.business-status {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  color: #fff;
  background: #5f7df5;
  font-size: .75rem;
  font-weight: 900;
}

.business-status.status-confirmado,
.business-status.status-concluido,
.business-status.status-pago {
  background: #0f9f75;
}

.business-status.status-cancelado,
.business-status.status-faltou,
.business-status.status-vencido {
  background: #ef476f;
}

.business-status.status-em_atendimento,
.business-status.status-prevista {
  background: #f59e0b;
}

.business-status.status-solicitado {
  background: #4967e8;
}

.business-status.status-chegou {
  background: #14b8a6;
}

.business-agenda-board {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.business-agenda-filters,
.business-agenda-summary,
.business-agenda-card {
  border: 1px solid rgba(145, 164, 196, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 40px rgba(34, 70, 140, .08);
}

.business-agenda-filters {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(220px, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 16px;
}

.business-agenda-filters label {
  display: grid;
  gap: 7px;
  color: #4a5570;
  font-size: .82rem;
  font-weight: 900;
}

.business-agenda-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.business-agenda-summary span {
  padding: 14px 16px;
  background: rgba(47, 116, 223, .06);
  color: #53627b;
  font-size: .82rem;
  font-weight: 800;
}

.business-agenda-summary strong {
  display: block;
  color: #14243d;
  font-size: 1.35rem;
}

.business-agenda-timeline {
  display: grid;
  gap: 10px;
}

.business-agenda-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.business-agenda-time strong {
  display: block;
  color: #174fb6;
  font-size: 1.2rem;
  font-weight: 950;
}

.business-agenda-time small,
.business-agenda-main small {
  color: #71809a;
  font-weight: 800;
}

.business-agenda-main h3 {
  margin: 0 0 3px;
  color: #16243a;
  font-size: 1rem;
  font-weight: 950;
}

.business-agenda-main p {
  margin: 0;
  color: #53627b;
  font-size: .88rem;
  font-weight: 800;
}

.business-agenda-badges,
.business-agenda-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.business-payment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #2845a8;
  font-size: .75rem;
  font-weight: 900;
}

.business-payment-badge.payment-pendente {
  background: #fff7ed;
  color: #c2410c;
}

.business-payment-badge.payment-pix,
.business-payment-badge.payment-cartao,
.business-payment-badge.payment-dinheiro,
.business-payment-badge.payment-pago {
  background: #dcfce7;
  color: #166534;
}

.business-agenda-actions form {
  margin: 0;
}

.business-agenda-actions .row-action-btn {
  width: 38px;
  height: 38px;
}

.row-action-btn.action-check {
  background: #14b8a6;
  color: #fff;
}

.row-action-btn.action-start {
  background: #2563eb;
  color: #fff;
}

.row-action-btn.action-complete {
  background: #16a34a;
  color: #fff;
}

.row-action-btn.action-payment {
  background: #22c55e;
  color: #fff;
}

.row-action-btn.action-crm {
  background: #0f766e;
  color: #fff;
}

.crm-heading {
  margin-bottom: 18px;
}

.crm-heading h1,
.crm-heading p,
.crm-heading .eyebrow {
  font-family: inherit;
  font-weight: 400;
}

.crm-heading h1 {
  font-size: 1.4rem;
  line-height: 1.2;
}

.crm-heading p {
  font-size: .88rem;
  line-height: 1.45;
}

.crm-heading .eyebrow {
  font-size: .7rem;
  letter-spacing: .08em;
}

.crm-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.crm-search-wrap,
.crm-detail-panel,
.crm-card,
.crm-profile-hero,
.crm-metrics {
  border: 1px solid rgba(145, 164, 196, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(34, 70, 140, .05);
}

.crm-search-wrap {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  width: 100%;
}

.crm-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #dce8f7;
  border-radius: 12px;
  background: #f8fbff;
  width: 100%;
  box-sizing: border-box;
}

.crm-search i {
  color: #6a7890;
  font-size: .85rem;
}

.crm-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #16243a;
  background: transparent;
  font-size: .9rem;
  font-weight: 400;
  font-family: inherit;
}

.crm-search button,
.crm-search a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #1f58c9;
  font-size: .74rem;
  font-weight: 500;
  text-decoration: none;
}

.crm-search a {
  color: #53627b;
  background: #eef4fb;
}

.crm-search-feedback {
  margin: 0;
  color: #66758d;
  font-size: .74rem;
  font-weight: 400;
}

.crm-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #1f58c9, #0f766e);
  font-size: .82rem;
  font-weight: 600;
}

.crm-avatar-lg {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 1.1rem;
}

.crm-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #2845a8;
  background: #eef2ff;
  font-size: .68rem;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

.crm-status.tone-success,
.crm-action.tone-success i,
.crm-timeline-item.tone-success::before {
  color: #166534;
  background: #dcfce7;
}

.crm-status.tone-danger,
.crm-action.tone-danger i,
.crm-timeline-item.tone-danger::before {
  color: #be123c;
  background: #ffe4e6;
}

.crm-status.tone-warning,
.crm-action.tone-warning i,
.crm-timeline-item.tone-warning::before {
  color: #a16207;
  background: #fef3c7;
}

.crm-status.tone-info,
.crm-action.tone-info i,
.crm-timeline-item.tone-info::before {
  color: #075985;
  background: #e0f2fe;
}

.crm-status.tone-premium,
.crm-action.tone-premium i,
.crm-timeline-item.tone-premium::before {
  color: #92400e;
  background: #ffedd5;
}

.crm-detail-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 8% 0%, rgba(31, 88, 201, .08), transparent 24%),
    rgba(255, 255, 255, .78);
}

.crm-profile-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.crm-profile-main,
.crm-profile-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.crm-profile-main {
  align-items: flex-start;
}

.crm-profile-copy {
  display: grid;
  gap: 4px;
}

.crm-profile-main h2 {
  margin: 0;
  color: #14243d;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 400;
}

.crm-profile-meta {
  margin: 0;
  color: #66758d;
  font-size: .76rem;
  font-weight: 400;
  line-height: 1.4;
}

.crm-profile-actions {
  justify-content: flex-end;
}

.crm-profile-actions .btn {
  min-height: 32px;
  padding: 6px 11px;
  font-size: .76rem;
  font-weight: 500;
  box-shadow: none;
}

.crm-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
}

.crm-metrics div {
  padding: 11px 10px;
  border-right: 1px solid rgba(145, 164, 196, .22);
  background: linear-gradient(180deg, rgba(47, 116, 223, .055), rgba(255, 255, 255, .8));
  text-align: center;
}

.crm-metrics div:last-child {
  border-right: 0;
}

.crm-metrics span,
.crm-metrics strong {
  display: block;
}

.crm-metrics span {
  color: #66758d;
  font-size: .68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.crm-metrics strong {
  margin-top: 3px;
  color: #14243d;
  font-size: .88rem;
  line-height: 1.2;
  font-weight: 500;
}

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

.crm-utility-grid {
  margin-bottom: 16px;
}

.crm-card {
  padding: 13px;
}

.crm-card-wide {
  grid-column: 1 / -1;
}

.crm-card header {
  margin-bottom: 10px;
}

.crm-card header span,
.crm-card header strong {
  display: block;
}

.crm-card header span {
  color: #1f58c9;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-card header strong {
  color: #14243d;
  font-size: .9rem;
  font-weight: 400;
}

.crm-action,
.crm-timeline-item,
.crm-service-list div,
.crm-info-list div {
  border: 1px solid rgba(145, 164, 196, .22);
  border-radius: 12px;
  background: #f8fbff;
}

.crm-action {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 9px;
}

.crm-action + .crm-action {
  margin-top: 9px;
}

.crm-action i {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: .82rem;
}

.crm-action strong,
.crm-action small {
  display: block;
}

.crm-action strong {
  color: #14243d;
  font-size: .82rem;
  font-weight: 500;
}

.crm-action small,
.crm-notes p,
.crm-info-list dd,
.crm-service-list small,
.crm-timeline-item small {
  color: #66758d;
  font-size: .76rem;
  font-weight: 400;
  line-height: 1.4;
}

.crm-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.crm-info-list div {
  padding: 10px;
}

.crm-info-list dt {
  color: #66758d;
  font-size: .66rem;
  font-weight: 500;
  text-transform: uppercase;
}

.crm-info-list dd {
  margin: 2px 0 0;
  color: #14243d;
  font-size: .8rem;
  font-weight: 400;
  word-break: break-word;
}

.crm-notes {
  display: grid;
  gap: 8px;
}

.crm-notes p {
  margin: 0;
  line-height: 1.55;
}

.crm-notes b {
  color: #14243d;
  font-weight: 500;
}

.crm-helper-copy {
  margin: 0 0 12px;
  color: #66758d;
  font-size: .78rem;
  line-height: 1.55;
}

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

.crm-import-form textarea {
  width: 100%;
  min-height: 158px;
  resize: vertical;
  padding: 12px;
  border: 1px solid rgba(145, 164, 196, .28);
  border-radius: 12px;
  background: #f8fbff;
  color: #14243d;
  font-size: .8rem;
  line-height: 1.45;
}

.crm-profile-actions-inline {
  justify-content: flex-start;
}

.crm-service-list {
  display: grid;
  gap: 9px;
}

.crm-service-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 10px;
  align-items: center;
  padding: 9px 10px;
}

.crm-service-list span {
  color: #14243d;
  font-size: .8rem;
  font-weight: 400;
}

.crm-service-list strong {
  color: #1f58c9;
  font-size: .78rem;
  font-weight: 500;
}

.crm-service-list small {
  grid-column: 1 / -1;
}

.crm-timeline {
  display: grid;
  gap: 9px;
}

.crm-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px 10px 34px;
  color: #14243d;
  text-decoration: none;
}

.crm-timeline-item::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #eef2ff;
}

.crm-timeline-item time {
  color: #1f58c9;
  font-size: .72rem;
  font-weight: 400;
}

.crm-timeline-item strong,
.crm-timeline-item small {
  display: block;
}

.crm-timeline-item strong {
  font-size: .8rem;
  font-weight: 500;
}

.crm-timeline-item i {
  color: #9aa8bd;
  font-size: .8rem;
}

.crm-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  padding: 22px;
  color: #66758d;
  text-align: center;
}

.crm-empty i {
  color: #1f58c9;
  font-size: 1.6rem;
}

.crm-empty strong {
  color: #14243d;
  font-size: .92rem;
  font-weight: 500;
}

.crm-empty-large {
  min-height: 540px;
}

[data-bs-theme="dark"] .crm-search-wrap,
[data-bs-theme="dark"] .crm-detail-panel,
[data-bs-theme="dark"] .crm-card,
[data-bs-theme="dark"] .crm-profile-hero,
[data-bs-theme="dark"] .crm-metrics {
  border-color: rgba(168, 214, 255, .18);
  background: rgba(12, 23, 42, .88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
}

[data-bs-theme="dark"] .crm-search,
[data-bs-theme="dark"] .crm-action,
[data-bs-theme="dark"] .crm-timeline-item,
[data-bs-theme="dark"] .crm-service-list div,
[data-bs-theme="dark"] .crm-info-list div {
  border-color: rgba(168, 214, 255, .14);
  background: rgba(15, 30, 54, .82);
}

[data-bs-theme="dark"] .crm-search input,
[data-bs-theme="dark"] .crm-profile-main h2,
[data-bs-theme="dark"] .crm-profile-meta,
[data-bs-theme="dark"] .crm-metrics strong,
[data-bs-theme="dark"] .crm-card header strong,
[data-bs-theme="dark"] .crm-action strong,
[data-bs-theme="dark"] .crm-info-list dd,
[data-bs-theme="dark"] .crm-notes b,
[data-bs-theme="dark"] .crm-service-list span,
[data-bs-theme="dark"] .crm-timeline-item,
[data-bs-theme="dark"] .crm-empty strong {
  color: #f7fbff;
}

[data-bs-theme="dark"] .crm-import-form textarea {
  background: rgba(15, 30, 54, .82);
  border-color: rgba(145, 164, 196, .24);
  color: #f7fbff;
}

@media (max-width: 1180px) {
  .crm-detail-grid {
    grid-template-columns: 1fr;
  }

  .crm-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .crm-profile-hero,
  .crm-profile-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .crm-profile-actions .btn,
  .crm-search button,
  .crm-search a {
    justify-content: center;
    width: 100%;
  }

  .crm-search,
  .crm-metrics,
  .crm-info-list,
  .crm-timeline-item {
    grid-template-columns: 1fr;
  }

  .crm-timeline-item {
    padding-left: 34px;
  }

  .crm-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(145, 164, 196, .22);
  }
}

.business-ea-shell {
  --ea-ink: #142033;
  --ea-muted: #66758d;
  --ea-line: rgba(145, 164, 196, .34);
  --ea-blue: #1f58c9;
  --ea-green: #0f9f75;
  --ea-orange: #f59e0b;
  --ea-red: #ef476f;
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.business-ea-hero,
.business-ea-filters,
.business-ea-view-tabs,
.business-ea-summary,
.business-ea-calendar,
.business-ea-week,
.business-ea-table-wrap {
  border: 1px solid var(--ea-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 54px rgba(34, 70, 140, .09);
}

.business-ea-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 9% 18%, rgba(31, 88, 201, .16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 62%, #f7fbff 100%);
}

.business-ea-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  border-radius: 46%;
  border: 36px solid rgba(31, 88, 201, .07);
  transform: rotate(18deg);
}

.business-ea-hero > div {
  position: relative;
  z-index: 1;
}

.business-ea-hero .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #123d9d;
  background: rgba(31, 88, 201, .1);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-ea-hero h2 {
  margin: 0;
  color: var(--ea-ink);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 950;
}

.business-ea-hero p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--ea-muted);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.55;
}

.business-ea-hero-actions,
.business-ea-view-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.business-ea-filters {
  display: grid;
  grid-template-columns: minmax(160px, 190px) repeat(3, minmax(170px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
}

.business-ea-filters label {
  display: grid;
  gap: 7px;
  color: #4a5570;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .02em;
}

.business-ea-view-tabs {
  padding: 10px;
}

.business-ea-view-tabs a,
.business-ea-view-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  color: #53627b;
  background: transparent;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}

.business-ea-view-tabs a.active,
.business-ea-view-tabs a:hover,
.business-ea-view-tabs button:hover {
  color: #fff;
  background: linear-gradient(135deg, #1f58c9, #123d9d);
  box-shadow: 0 12px 28px rgba(31, 88, 201, .22);
}

.business-ea-view-tabs button {
  margin-left: auto;
  color: #9a3412;
  background: #fff7ed;
}

.business-ea-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  overflow: hidden;
}

.business-ea-summary span {
  padding: 15px 16px;
  border-right: 1px solid rgba(145, 164, 196, .22);
  color: var(--ea-muted);
  background: linear-gradient(180deg, rgba(47, 116, 223, .055), rgba(255, 255, 255, .8));
  font-size: .79rem;
  font-weight: 850;
}

.business-ea-summary span:last-child {
  border-right: 0;
}

.business-ea-summary strong {
  display: block;
  color: var(--ea-ink);
  font-size: 1.28rem;
  font-weight: 950;
}

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

.business-ea-tool-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(145, 164, 196, .22);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 248, 255, .88));
  box-shadow: 0 18px 38px rgba(35, 65, 121, .08);
}

.business-ea-tool-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #1f58c9;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-ea-tool-card h3 {
  margin: 0;
  color: var(--ea-ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.business-ea-tool-card p {
  margin: 8px 0 0;
  color: var(--ea-muted);
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.55;
}

.business-ea-link-box,
.business-share-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(31, 88, 201, .28);
  background: rgba(31, 88, 201, .05);
  color: #123d9d;
  font-size: .85rem;
  font-weight: 800;
  word-break: break-all;
}

.business-ea-tool-actions,
.business-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.business-ea-insights {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.business-ea-insights span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(18, 61, 157, .05);
  color: #53627b;
  font-size: .84rem;
  font-weight: 800;
}

.business-ea-insights strong {
  color: var(--ea-ink);
}

.business-ea-calendar {
  overflow: auto;
}

.business-ea-grid {
  display: grid;
  grid-template-columns: 90px repeat(var(--agenda-columns), minmax(220px, 1fr));
  min-width: max(850px, calc(90px + (var(--agenda-columns) * 240px)));
}

.business-ea-time-head,
.business-ea-professional-head,
.business-ea-time-cell,
.business-ea-slot {
  border-right: 1px solid rgba(145, 164, 196, .24);
  border-bottom: 1px solid rgba(145, 164, 196, .24);
}

.business-ea-time-head,
.business-ea-professional-head {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 58px;
  padding: 13px 14px;
  background: #f7fbff;
}

.business-ea-time-head {
  left: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #53627b;
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.business-ea-professional-head strong,
.business-ea-professional-head span {
  display: block;
}

.business-ea-professional-head strong {
  color: var(--ea-ink);
  font-size: .96rem;
  font-weight: 950;
}

.business-ea-professional-head span {
  color: var(--ea-muted);
  font-size: .78rem;
  font-weight: 850;
}

.business-ea-time-cell {
  position: sticky;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: start center;
  min-height: 126px;
  padding-top: 15px;
  background: #fbfdff;
  color: #174fb6;
}

.business-ea-time-cell strong {
  font-size: .86rem;
  font-weight: 950;
}

.business-ea-slot {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 126px;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(31, 88, 201, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 88, 201, .04), rgba(255, 255, 255, .74));
  background-size: 18px 100%, auto;
  transition: background .18s ease, box-shadow .18s ease;
}

.business-ea-slot.is-drag-over,
.business-ea-day-events.is-drag-over {
  background: rgba(31, 88, 201, .1);
  box-shadow: inset 0 0 0 2px rgba(31, 88, 201, .45);
}

.business-ea-slot-add {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #1f58c9;
  font-size: 1rem;
  font-weight: 950;
  opacity: .16;
  transform: scale(.92);
  transition: opacity .18s ease, transform .18s ease;
}

.business-ea-slot:hover .business-ea-slot-add,
.business-ea-slot-add:focus {
  opacity: 1;
  transform: scale(1);
}

.business-ea-event {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(31, 88, 201, .18);
  border-left: 4px solid var(--ea-blue);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(34, 70, 140, .1);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.business-ea-event[draggable="true"] {
  cursor: grab;
}

.business-ea-event[draggable="true"]:active {
  cursor: grabbing;
}

.business-ea-event.is-dragging {
  opacity: .46;
  transform: rotate(-1deg) scale(.98);
}

.business-ea-event:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(34, 70, 140, .15);
}

.business-ea-event.status-confirmado,
.business-ea-event.status-chegou {
  border-left-color: #14b8a6;
}

.business-ea-event.status-em_atendimento {
  border-left-color: var(--ea-orange);
}

.business-ea-event.status-concluido {
  border-left-color: var(--ea-green);
}

.business-ea-event.status-cancelado,
.business-ea-event.status-faltou {
  border-left-color: var(--ea-red);
  opacity: .7;
}

.business-ea-event.is-blocked {
  border-left-color: #64748b;
  background: repeating-linear-gradient(135deg, #f8fafc 0, #f8fafc 8px, #eef2f7 8px, #eef2f7 16px);
}

.business-ea-event-time strong,
.business-ea-event-time span,
.business-ea-event-main h3,
.business-ea-event-main p,
.business-ea-event-main small {
  display: block;
}

.business-ea-event-time strong {
  color: #174fb6;
  font-size: 1rem;
  font-weight: 950;
}

.business-ea-event-time span,
.business-ea-event-main p,
.business-ea-event-main small {
  color: var(--ea-muted);
  font-size: .76rem;
  font-weight: 800;
}

.business-ea-event-main h3 {
  margin: 0 0 3px;
  color: var(--ea-ink);
  font-size: .92rem;
  font-weight: 950;
}

.business-ea-event-main p {
  margin: 0;
}

.business-ea-event-meta,
.business-ea-event-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.business-ea-event-meta span,
.business-ea-event-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #2845a8;
  background: #eef2ff;
  font-size: .72rem;
  font-weight: 950;
}

.business-ea-event-meta strong {
  color: #166534;
  background: #dcfce7;
}

.business-ea-event-actions form {
  margin: 0;
}

.business-ea-event-actions .row-action-btn {
  width: 32px;
  height: 32px;
  font-size: .82rem;
}

.business-ea-event.is-compact {
  grid-template-columns: 54px minmax(0, 1fr);
  box-shadow: 0 10px 20px rgba(34, 70, 140, .08);
}

.business-ea-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(165px, 1fr));
  gap: 0;
  overflow: auto;
}

.business-ea-day-column {
  min-width: 165px;
  border-right: 1px solid rgba(145, 164, 196, .24);
}

.business-ea-day-column:last-child {
  border-right: 0;
}

.business-ea-day-column header {
  padding: 14px;
  background: #f7fbff;
  border-bottom: 1px solid rgba(145, 164, 196, .24);
}

.business-ea-day-column header span,
.business-ea-day-column header strong {
  display: block;
}

.business-ea-day-column header span {
  color: #53627b;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-ea-day-column header strong {
  color: var(--ea-ink);
  font-size: 1.1rem;
  font-weight: 950;
}

.business-ea-day-column.is-today header {
  background: linear-gradient(135deg, #1f58c9, #123d9d);
}

.business-ea-day-column.is-today header span,
.business-ea-day-column.is-today header strong {
  color: #fff;
}

.business-ea-day-events {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 360px;
  padding: 12px;
  transition: background .18s ease, box-shadow .18s ease;
}

.business-ea-day-events > p {
  margin: 0;
  padding: 18px 10px;
  color: #7a879b;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.business-ea-table-wrap {
  overflow: auto;
  padding: 0;
}

.business-ea-table-wrap .business-table {
  min-width: 960px;
}

.business-ea-table-wrap .business-ea-event {
  display: flex;
  justify-content: flex-end;
  min-width: 245px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.business-ea-table-wrap .business-ea-event:hover {
  transform: none;
  box-shadow: none;
}

.business-ea-table-wrap .business-ea-event-time,
.business-ea-table-wrap .business-ea-event-main,
.business-ea-table-wrap .business-ea-event-meta {
  display: none;
}

.business-ea-table-wrap .business-ea-event-actions {
  justify-content: flex-end;
}

[data-bs-theme="dark"] .business-ea-hero,
[data-bs-theme="dark"] .business-ea-filters,
[data-bs-theme="dark"] .business-ea-view-tabs,
[data-bs-theme="dark"] .business-ea-summary,
[data-bs-theme="dark"] .business-ea-tool-card,
[data-bs-theme="dark"] .business-ea-calendar,
[data-bs-theme="dark"] .business-ea-week,
[data-bs-theme="dark"] .business-ea-table-wrap {
  border-color: rgba(168, 214, 255, .18);
  background: rgba(12, 23, 42, .88);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .28);
}

[data-bs-theme="dark"] .business-ea-hero {
  background:
    radial-gradient(circle at 9% 18%, rgba(80, 148, 255, .18), transparent 30%),
    linear-gradient(135deg, rgba(12, 23, 42, .96), rgba(21, 37, 64, .96));
}

[data-bs-theme="dark"] .business-ea-hero h2,
[data-bs-theme="dark"] .business-ea-summary strong,
[data-bs-theme="dark"] .business-ea-tool-card h3,
[data-bs-theme="dark"] .business-ea-professional-head strong,
[data-bs-theme="dark"] .business-ea-event-main h3,
[data-bs-theme="dark"] .business-ea-day-column header strong {
  color: #f7fbff;
}

[data-bs-theme="dark"] .business-ea-time-head,
[data-bs-theme="dark"] .business-ea-professional-head,
[data-bs-theme="dark"] .business-ea-time-cell,
[data-bs-theme="dark"] .business-ea-day-column header {
  background: rgba(18, 32, 55, .95);
}

[data-bs-theme="dark"] .business-ea-slot,
[data-bs-theme="dark"] .business-ea-event {
  background: rgba(15, 30, 54, .92);
}

[data-bs-theme="dark"] .business-ea-tool-card p,
[data-bs-theme="dark"] .business-ea-insights span {
  color: #b7c5df;
}

[data-bs-theme="dark"] .business-ea-link-box,
[data-bs-theme="dark"] .business-share-box {
  border-color: rgba(88, 141, 255, .35);
  background: rgba(31, 88, 201, .12);
  color: #dce9ff;
}

[data-bs-theme="dark"] .business-ea-event.is-blocked {
  background: repeating-linear-gradient(135deg, rgba(24, 38, 62, .96) 0, rgba(24, 38, 62, .96) 8px, rgba(36, 50, 75, .96) 8px, rgba(36, 50, 75, .96) 16px);
}

@media (max-width: 1180px) {
  .business-ea-hero,
  .business-ea-filters {
    grid-template-columns: 1fr;
  }

  .business-ea-hero-actions {
    justify-content: flex-start;
  }

  .business-ea-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-ea-tools {
    grid-template-columns: 1fr;
  }

  .business-ea-week {
    grid-template-columns: repeat(7, minmax(210px, 1fr));
  }
}

@media (max-width: 720px) {
  .business-ea-hero,
  .business-ea-filters,
  .business-ea-view-tabs,
  .business-ea-summary {
    border-radius: 14px;
  }

  .business-ea-hero-actions .btn,
  .business-ea-filters .btn,
  .business-ea-view-tabs a,
  .business-ea-view-tabs button {
    justify-content: center;
    width: 100%;
  }

  .business-ea-view-tabs button {
    margin-left: 0;
  }

  .business-ea-summary {
    grid-template-columns: 1fr 1fr;
  }

  .business-ea-tool-actions .btn,
  .business-inline-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .business-ea-grid {
    min-width: 780px;
  }
}

.business-booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 9px;
  min-height: 48px;
}

.business-booking-slots > span {
  grid-column: 1 / -1;
  color: #6b7280;
  font-size: .9rem;
  font-weight: 700;
}

.business-booking-time-select {
  min-height: 48px;
}

.business-booking-slot {
  border: 1px solid rgba(191, 148, 86, .35);
  border-radius: 8px;
  background: #fff;
  color: #252525;
  padding: 10px;
  text-align: left;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.business-booking-slot:hover,
.business-booking-slot.is-selected {
  border-color: var(--primary);
  background: rgba(191, 148, 86, .12);
  transform: translateY(-1px);
}

.business-booking-slot strong,
.business-booking-slot small {
  display: block;
}

.business-booking-slot small {
  margin-top: 2px;
  color: #6b7280;
  font-size: .76rem;
  font-weight: 700;
}

.business-record-modal .modal-header {
  background: linear-gradient(135deg, #2f74df, #123d9d);
}

@media (max-width: 900px) {
  .business-agenda-filters,
  .business-agenda-summary,
  .business-agenda-card {
    grid-template-columns: 1fr;
  }

  .business-agenda-card {
    align-items: stretch;
  }
}

.business-record-modal .modal-title,
.business-record-modal .master-modal-close {
  color: #fff;
}

body.theme-dark {
  color: #e7edf7;
  background: #101624;
}

body.theme-dark .master-page {
  background:
    linear-gradient(90deg, rgba(28, 46, 82, .72) 0 300px, transparent 300px),
    linear-gradient(135deg, #101624 0%, #15223b 52%, #0b1221 100%);
}

body.theme-dark .master-nav,
body.theme-dark .master-panel,
body.theme-dark .toolbar-dropdown,
body.theme-dark .profile-dropdown,
body.theme-dark .master-record-modal .modal-content,
body.theme-dark .row-action-palette,
body.theme-dark .master-actions {
  background: #151d2e;
  border-color: #26334b;
}

body.theme-dark .master-menu-toggle,
body.theme-dark .master-action-btn,
body.theme-dark .master-avatar-btn {
  color: #e9f5ff;
  background: #151d2e;
  border-color: #26334b;
}

body.theme-dark .master-action-btn:hover,
body.theme-dark .master-action-btn:focus,
body.theme-dark .master-avatar-btn:hover,
body.theme-dark .master-avatar-btn:focus {
  color: #fff;
  background: #1e2d49;
}

body.theme-dark .master-heading h1,
body.theme-dark .panel-heading h2,
body.theme-dark .kpi-card strong,
body.theme-dark .toolbar-dropdown h6,
body.theme-dark .profile-dropdown-head strong,
body.theme-dark .master-table td {
  color: #edf4ff;
}

body.theme-dark .master-heading p,
body.theme-dark .empty-text,
body.theme-dark .audit-list span,
body.theme-dark .toolbar-dropdown p,
body.theme-dark .toolbar-item span,
body.theme-dark .profile-dropdown-head > div:last-child span,
body.theme-dark .kpi-card span,
body.theme-dark .chart-panel .panel-heading span {
  color: #9fb0ca;
}

body.theme-dark .brand-mark,
body.theme-dark .master-sidebar a,
body.theme-dark .profile-dropdown .dropdown-item,
body.theme-dark .toolbar-item,
body.theme-dark .form-label,
body.theme-dark .master-table th,
body.theme-dark .master-modal-tabs .nav-link,
body.theme-dark .master-details-list dd {
  color: #d9e4f5;
}

body.theme-dark .brand-mark small {
  color: #9fb0ca;
}

body.theme-dark .brand-icon-wrap,
body.theme-dark .master-avatar-btn span,
body.theme-dark .profile-dropdown-avatar span {
  background: #eef6ff;
}

body.theme-dark .sidebar-mobile-head {
  border-bottom-color: #26334b;
}

body.theme-dark .sidebar-mobile-head strong {
  color: #edf4ff;
}

body.theme-dark .sidebar-mobile-head button {
  color: #e9f5ff;
  background: #1e2d49;
}

body.theme-dark .master-sidebar a:hover,
body.theme-dark .master-sidebar a.active,
body.theme-dark .toolbar-item:hover,
body.theme-dark .profile-dropdown .dropdown-item:hover,
body.theme-dark .toolbar-footer {
  color: #e9f5ff;
  background: #1e2d49;
}

body.theme-dark .master-sidebar {
  background: transparent;
  border-color: transparent;
}

body.theme-dark .audit-list > div,
body.theme-dark .form-control,
body.theme-dark .form-select,
body.theme-dark textarea.form-control,
body.theme-dark .master-search,
body.theme-dark .subdomain-checker .input-group-text,
body.theme-dark .master-upload-field,
body.theme-dark .master-upload-preview {
  color: #edf4ff;
  background: #101827;
  border-color: #2b3953;
}

body.theme-dark .master-upload-control small {
  color: #9fb0ca;
}

body.theme-dark .support-master-reply {
  background: #101827;
  border-color: #2b3953;
}

body.theme-dark .support-master-reply small {
  color: #9fb0ca;
}

body.theme-dark .business-current-file-link {
  color: #8fb3ff;
}

body.theme-dark .master-search input,
body.theme-dark .master-record-modal .form-label,
body.theme-dark .master-details-list dt {
  color: #edf4ff;
}

body.theme-dark .master-modal-tabs {
  border-bottom-color: #2b3953;
}

body.theme-dark .master-modal-tabs .nav-link.active {
  color: #edf4ff;
  background: #151d2e;
  border-color: #2b3953 #2b3953 #151d2e;
}

body.theme-dark .master-record-modal .modal-footer,
body.theme-dark .master-details-list div {
  border-color: #2b3953;
}

body.theme-dark .master-record-modal .modal-footer {
  background: #151d2e;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, .28);
}

body.theme-dark .subdomain-result {
  color: #9fb0ca;
}

body.theme-dark .seo-slug-preview {
  color: #edf4ff;
  background: #101827;
  border-color: #2b3953;
}

body.theme-dark .subdomain-result.is-ok {
  color: #57d99f;
}

body.theme-dark .subdomain-result.is-error {
  color: #ff7996;
}

body.theme-dark .master-table tr.row-checked > td {
  background: #163323;
}

body.theme-dark .support-table-panel {
  background: #151d2e;
}

body.theme-dark .support-table-panel .master-table th {
  color: #edf4ff;
  background: #101827;
  border-bottom-color: #2b3953;
}

body.theme-dark .support-table-panel .master-table td,
body.theme-dark .support-status-name,
body.theme-dark .support-table-controls {
  color: #edf4ff;
}

body.theme-dark .table {
  --bs-table-color: #d9e4f5;
  --bs-table-bg: transparent;
  --bs-table-border-color: #2b3953;
  --bs-table-hover-color: #edf4ff;
  --bs-table-hover-bg: #1e2d49;
}

body.theme-dark .business-page {
  color: #e7edf7;
  background:
    linear-gradient(90deg, rgba(28, 46, 82, .72) 0 300px, transparent 300px),
    linear-gradient(135deg, #101624 0%, #15223b 52%, #0b1221 100%);
}

body.theme-dark .business-topbar,
body.theme-dark .business-panel,
body.theme-dark .business-chart-panel,
body.theme-dark .site-preview-modal .modal-content {
  background: #151d2e;
  border-color: #26334b;
}

body.theme-dark .business-brand,
body.theme-dark .business-heading h1,
body.theme-dark .site-preview-modal .modal-title,
body.theme-dark .business-site-settings-head h2,
body.theme-dark .subscription-current strong,
body.theme-dark .subscription-summary strong,
body.theme-dark .subscription-section-head h2,
body.theme-dark .subscription-period strong,
body.theme-dark .subscription-plan-top strong,
body.theme-dark .business-site-settings .form-label,
body.theme-dark .business-site-text-item span,
body.theme-dark .business-site-section-item strong,
body.theme-dark .business-site-workbench-card h3,
body.theme-dark .business-record-form-head h2,
body.theme-dark .business-form-section h3,
body.theme-dark .business-hours-row strong,
body.theme-dark .business-list strong,
body.theme-dark .business-table td {
  color: #edf4ff;
}

body.theme-dark .business-brand small,
body.theme-dark .business-heading p,
body.theme-dark .site-preview-modal .modal-header p,
body.theme-dark .business-site-settings-head p,
body.theme-dark .subscription-current span,
body.theme-dark .subscription-summary span,
body.theme-dark .subscription-summary small,
body.theme-dark .subscription-section-head p,
body.theme-dark .subscription-period small,
body.theme-dark .subscription-plan-top small,
body.theme-dark .subscription-plan-copy,
body.theme-dark .business-color-input span,
body.theme-dark .business-field-help,
body.theme-dark .business-site-section-item small,
body.theme-dark .business-site-workbench-card p,
body.theme-dark .business-site-checklist-item,
body.theme-dark .business-record-form-head p,
body.theme-dark .business-hours-row label span,
body.theme-dark .business-list small {
  color: #9fb0ca;
}

body.theme-dark .business-brand-logo,
body.theme-dark .business-menu-toggle,
body.theme-dark .business-quick-link,
body.theme-dark .site-color-presets,
body.theme-dark .site-color-preset,
body.theme-dark .site-preview-tools label,
body.theme-dark .site-preview-modal .modal-body,
body.theme-dark .subscription-summary,
body.theme-dark .subscription-period span,
body.theme-dark .subscription-plan-option,
body.theme-dark .pix-qr-wrap,
body.theme-dark .pix-status,
body.theme-dark .support-meta-grid div,
body.theme-dark .support-reply-form,
body.theme-dark .support-message,
body.theme-dark .support-upload-note,
body.theme-dark .business-hours-grid,
body.theme-dark .business-hours-row,
body.theme-dark .business-hours-closed,
body.theme-dark .business-site-workbench-card,
body.theme-dark .business-site-checklist-item,
body.theme-dark .business-site-section-item,
body.theme-dark .business-list > div,
body.theme-dark .business-search {
  background: #101827;
  border-color: #2b3953;
}

body.theme-dark .business-record-form-head,
body.theme-dark .business-form-section + .business-form-section,
body.theme-dark .business-settings-actions,
body.theme-dark .support-ticket-summary,
body.theme-dark .site-preview-modal .modal-header,
body.theme-dark .site-preview-modal .modal-footer {
  background: #151d2e;
  border-color: #2b3953;
}

body.theme-dark .site-preview-modal .modal-header {
  background: #101827;
}

body.theme-dark .site-preview-tools label span {
  color: #edf4ff;
}

body.theme-dark .site-color-presets > span,
body.theme-dark .site-color-preset strong {
  color: #edf4ff;
}

body.theme-dark .site-color-preset:hover,
body.theme-dark .site-color-preset:focus-visible,
body.theme-dark .site-color-preset.is-active {
  border-color: #78a7ff;
  background: #16233a;
  box-shadow: 0 0 0 3px rgba(120, 167, 255, .18);
}

body.theme-dark .site-color-preset-swatch {
  border-color: #2b3953;
}

body.theme-dark .business-site-settings .form-control,
body.theme-dark .business-site-settings .form-select,
body.theme-dark .business-site-text-item .form-control,
body.theme-dark .business-support-form .form-control,
body.theme-dark .business-support-form .form-select,
body.theme-dark .support-reply-form .form-control,
body.theme-dark .support-manage-form .form-control,
body.theme-dark .support-manage-form .form-select,
body.theme-dark .support-note-form .form-control,
body.theme-dark .support-master-reply-box .form-control,
body.theme-dark .support-master-reply-box .form-select,
body.theme-dark .support-new-ticket-panel .form-control,
body.theme-dark .support-new-ticket-panel .form-select,
body.theme-dark .support-filter-panel .form-control,
body.theme-dark .support-filter-panel .form-select,
body.theme-dark .pix-panel textarea {
  color: #edf4ff;
  background: #101827;
  border-color: #2b3953;
}

body.theme-dark .support-ticket-title,
body.theme-dark .support-stat-card span,
body.theme-dark .support-master-ticket-main strong,
body.theme-dark .support-note-item strong,
body.theme-dark .support-conversation-message strong,
body.theme-dark .support-related-list strong,
body.theme-dark .support-reply-head h3,
body.theme-dark .support-meta-grid strong,
body.theme-dark .support-message-head strong,
body.theme-dark .support-note-item p,
body.theme-dark .support-conversation-message p,
body.theme-dark .support-message p,
body.theme-dark .support-empty-detail h2,
body.theme-dark .support-ticket-summary h2,
body.theme-dark .business-support-form .form-label,
body.theme-dark .support-reply-form .form-label,
body.theme-dark .support-new-ticket-panel .form-label,
body.theme-dark .support-filter-panel .form-label,
body.theme-dark .support-manage-form .form-label {
  color: #edf4ff;
}

body.theme-dark .business-support-table small,
body.theme-dark .support-stat-card strong,
body.theme-dark .support-master-ticket-main small,
body.theme-dark .support-master-ticket-side small,
body.theme-dark .support-note-item time,
body.theme-dark .support-conversation-message time,
body.theme-dark .support-related-list span,
body.theme-dark .support-meta-grid span,
body.theme-dark .support-message time,
body.theme-dark .support-upload-note,
body.theme-dark .business-support-list-panel .panel-heading span,
body.theme-dark .business-support-form-panel .panel-heading span {
  color: #9fb0ca;
}

body.theme-dark .support-desk-tabs,
body.theme-dark .support-ticket-list-panel,
body.theme-dark .support-ticket-detail-panel,
body.theme-dark .support-new-ticket-panel,
body.theme-dark .support-filter-panel,
body.theme-dark .support-stat-card,
body.theme-dark .support-master-ticket,
body.theme-dark .support-note-item,
body.theme-dark .support-conversation-message,
body.theme-dark .support-related-list a,
body.theme-dark .support-manage-form,
body.theme-dark .support-note-form,
body.theme-dark .support-master-reply-box {
  background: #101827;
  border-color: #2b3953;
}

body.theme-dark .support-tabs {
  background: #151d2e;
  border-color: #2b3953;
}

body.theme-dark .support-tabs .nav-link.active {
  color: #edf4ff;
  background: #101827;
  border-color: #2b3953;
}

body.theme-dark .support-master-ticket:hover,
body.theme-dark .support-master-ticket:focus,
body.theme-dark .support-master-ticket.active,
body.theme-dark .support-conversation-message.is-staff {
  background: #16233a;
  border-color: #3d63a6;
}

body.theme-dark .support-message blockquote,
body.theme-dark .support-conversation-message blockquote {
  background: #16233a;
  color: #b6c4dc;
}

body.theme-dark .support-message.is-staff {
  background: rgba(32, 201, 151, .1);
  border-color: rgba(32, 201, 151, .28);
}

body.theme-dark .subscription-period input:checked + span,
body.theme-dark .subscription-period:focus-within span,
body.theme-dark .subscription-plan-option.is-selected,
body.theme-dark .subscription-plan-option:focus-within {
  border-color: #78a7ff;
  background: #16233a;
}

body.theme-dark .business-feature-lock-pill,
body.theme-dark .site-upgrade-feedback {
  color: #182033;
  background: #f8d66d;
  border-color: #f8d66d;
}

body.theme-dark .site-plan-lock {
  color: #dff8ff;
  background: #113647;
  border-color: #28536a;
}

body.theme-dark .business-hours-closed .form-check-label {
  color: #d9e4f5;
}

body.theme-dark .business-sidebar a {
  color: #d9e4f5;
}

body.theme-dark .business-sidebar a i {
  color: #adc4ff;
}

body.theme-dark .business-plan-label {
  color: #edf4ff;
}

body.theme-dark .business-sidebar a:hover,
body.theme-dark .business-sidebar a.active {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

body.theme-dark .business-table th {
  color: #edf4ff;
  background: #101827;
}

body.theme-dark .business-table td {
  background: #151d2e;
}

@media (min-width: 901px) {
  body.sidebar-collapsed .master-page {
    background:
      linear-gradient(90deg, #2f74df 0 122px, transparent 122px),
      radial-gradient(circle at top left, rgba(168, 214, 255, .45), transparent 28rem),
      linear-gradient(135deg, #f3f9ff 0%, #eaf4ff 48%, #f8fbff 100%);
  }

  body.theme-dark.sidebar-collapsed .master-page {
    background:
      linear-gradient(90deg, rgba(28, 46, 82, .72) 0 122px, transparent 122px),
      linear-gradient(135deg, #101624 0%, #15223b 52%, #0b1221 100%);
  }

  body.sidebar-collapsed .master-shell {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
  }

  body.sidebar-collapsed .business-page {
    background:
      linear-gradient(90deg, #2f74df 0 122px, transparent 122px),
      radial-gradient(circle at top left, rgba(168, 214, 255, .45), transparent 28rem),
      linear-gradient(135deg, #f3f9ff 0%, #eaf4ff 48%, #f8fbff 100%);
  }

  body.theme-dark.sidebar-collapsed .business-page {
    background:
      linear-gradient(90deg, rgba(28, 46, 82, .72) 0 122px, transparent 122px),
      linear-gradient(135deg, #101624 0%, #15223b 52%, #0b1221 100%);
  }

  body.sidebar-collapsed .business-shell {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  body.sidebar-collapsed .business-sidebar {
    padding-right: 0;
    overflow-x: hidden;
  }

  body.sidebar-collapsed .business-sidebar a {
    justify-content: center;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  body.sidebar-collapsed .business-sidebar a i {
    font-size: 1.18rem;
  }

  body.sidebar-collapsed .master-sidebar {
    display: block;
    padding: 10px 0;
    overflow-x: hidden;
  }

  body.sidebar-collapsed .master-sidebar a {
    justify-content: center;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  body.sidebar-collapsed .master-sidebar a i {
    font-size: 1.18rem;
  }

  body.sidebar-collapsed .master-sidebar a:hover,
  body.sidebar-collapsed .master-sidebar a.active {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  }
}

@media (max-width: 991px) {
  .plans-context-preview {
    grid-template-columns: 1fr;
  }

  .plans-context-preview > div:last-child {
    justify-content: flex-start;
  }

  .site-preview-layout {
    grid-template-columns: 1fr;
  }

  .site-preview-device {
    width: min(390px, 100%);
  }

  .site-preview-device .site-preview-frame {
    height: 68vh;
    min-height: 480px;
  }
}

@media (max-width: 575px) {
  .site-preview-tools {
    grid-template-columns: 1fr;
  }

  .site-preview-device .site-preview-frame {
    height: 64vh;
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .auth-page {
    padding: 18px;
  }

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

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

  .auth-panel {
    padding: 34px 22px;
  }

  .auth-copy-mobile {
    display: block;
    width: min(500px, 100%);
    margin: 0 auto 24px;
  }

  .brand-mark {
    margin-bottom: 26px;
  }

  .plans-nav {
    padding: 9px 0 8px;
  }

  .plans-nav .container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .plans-nav .brand-mark {
    margin-bottom: 0;
  }

  .plans-nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .plans-nav-links::-webkit-scrollbar {
    display: none;
  }

  .plans-nav-link {
    min-height: 36px;
    padding-inline: 11px;
    font-size: .86rem;
  }

  .plans-panel-btn {
    min-height: 38px;
    padding-inline: 12px;
  }

  .login-options {
    align-items: flex-start;
    flex-direction: column;
    margin: 20px 0 24px;
  }

  .business-site-nav {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: 15px;
  }

  .business-site-brand strong {
    max-width: 120px;
  }

  .business-site-nav-links {
    display: none;
  }

  .business-site-whatsapp span {
    display: none;
  }

  .business-site-hero {
    min-height: 88vh;
    align-items: flex-end;
    padding-top: 96px;
    background:
      linear-gradient(180deg, rgba(38, 27, 39, .42) 0%, rgba(38, 27, 39, .88) 72%),
      var(--hero-image) center / cover no-repeat;
  }

  .business-site-hero-inner,
  .business-site-booking-layout {
    grid-template-columns: 1fr;
  }

  .business-site-hero-panel {
    display: none;
  }

  .business-site-service-grid,
  .business-site-team-grid,
  .business-site-testimonials {
    grid-template-columns: 1fr;
  }

  .business-site-gallery {
    grid-template-columns: 1fr;
  }

  .business-site-booking-copy {
    position: static;
  }

  .business-site-info .container {
    grid-template-columns: 1fr;
  }

  .plans-hero {
    padding-top: 48px;
  }

  .create-site-hero {
    padding: 44px 0 56px;
  }

  .create-site-grid {
    grid-template-columns: 1fr;
  }

  .saas-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .saas-footer-main,
  .saas-footer-contact-card {
    grid-column: 1 / -1;
  }

  .create-site-copy {
    position: static;
    padding-top: 0;
  }

  .site-preview-card {
    margin-top: 8px;
  }

  .master-shell {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .master-page {
    background: linear-gradient(135deg, #f3f9ff 0%, #eaf4ff 48%, #f8fbff 100%);
  }

  .business-topbar {
    padding: 10px 14px;
  }

  .business-page {
    background: linear-gradient(135deg, #f3f9ff 0%, #eaf4ff 48%, #f8fbff 100%);
  }

  body.theme-dark .business-page {
    background: linear-gradient(135deg, #101624 0%, #15223b 52%, #0b1221 100%);
  }

  .business-brand span:last-child {
    display: none;
  }

  .business-shell {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .subscription-overview,
  .subscription-layout,
  .subscription-current,
  .subscription-plan-grid {
    grid-template-columns: 1fr;
  }

  .business-support-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-support-heading .btn {
    width: 100%;
  }

  .business-support-detail-panel {
    position: static;
  }

  #supportTicketModal .modal-dialog {
    margin: 8px;
    max-height: calc(100vh - 16px);
  }

  #supportTicketModal .business-support-modal {
    max-height: calc(100vh - 16px);
  }

  #supportTicketModal .modal-header,
  #supportTicketModal .modal-body,
  #supportTicketModal .modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  #supportTicketModal textarea.form-control {
    min-height: 120px;
  }

  #supportTicketModal .modal-footer {
    flex-wrap: nowrap;
  }

  #supportTicketModal .modal-footer .btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .support-meta-grid {
    grid-template-columns: 1fr;
  }

  .subscription-periods {
    grid-template-columns: 1fr;
  }

  .subscription-plan-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .business-sidebar {
    position: fixed;
    z-index: 1060;
    top: 0;
    left: 0;
    width: min(84vw, 320px);
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px;
    background: linear-gradient(180deg, #5f8ee6, #1f58c9);
    border-right: 1px solid rgba(255, 255, 255, .18);
    transform: translateX(-104%);
    transition: transform .22s ease;
    box-shadow: 18px 0 46px rgba(16, 32, 51, .22);
  }

  body.theme-dark .business-sidebar {
    background: linear-gradient(180deg, #151d2e, #0b1221);
    border-right-color: #26334b;
  }

  body.sidebar-open .business-sidebar {
    transform: translateX(0);
  }

  body.sidebar-collapsed .business-sidebar {
    display: block;
  }

  .master-sidebar {
    position: fixed;
    z-index: 1060;
    top: 0;
    left: 0;
    width: min(84vw, 320px);
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px;
    border-radius: 0;
    border-width: 0;
    background: linear-gradient(180deg, #5f8ee6, #7658d7);
    transform: translateX(-104%);
    transition: transform .22s ease;
    box-shadow: 18px 0 46px rgba(16, 32, 51, .22);
  }

  .master-sidebar .sidebar-mobile-head strong {
    color: #fff;
  }

  .master-sidebar .sidebar-mobile-head button {
    color: #fff;
    background: rgba(255, 255, 255, .16);
  }

  body.sidebar-open .master-sidebar {
    transform: translateX(0);
  }

  body.sidebar-collapsed .master-sidebar {
    display: block;
  }

  .sidebar-mobile-head {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-mobile-head strong {
    color: var(--ink-900);
    font-weight: 900;
  }

  .sidebar-mobile-head button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    color: var(--royal-700);
    background: var(--blue-50);
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    border: 0;
    background: rgba(16, 32, 51, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  body.sidebar-open .sidebar-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  body.sidebar-open {
    overflow: hidden;
  }

  .master-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .master-toolbar-left,
  .master-toolbar-right {
    width: 100%;
  }

  .master-toolbar-left .btn,
  .master-toolbar-right .btn {
    flex: 1 1 auto;
  }

  .business-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .business-toolbar-left,
  .business-toolbar-right {
    width: 100%;
  }

  .business-toolbar-left .btn,
  .business-toolbar-right .btn,
  .business-search {
    flex: 1 1 auto;
  }

  .business-kpi {
    min-height: 86px;
    padding: 13px 14px;
  }

  .business-site-settings-head,
  .business-record-form-head,
  .business-settings-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .business-site-workbench {
    grid-template-columns: 1fr;
  }

  .business-site-workbench-actions .btn {
    width: 100%;
  }

  .business-site-text-grid,
  .business-site-section-grid {
    grid-template-columns: 1fr;
  }

  .site-preview-nav,
  .site-preview-hero,
  .site-preview-contact-row {
    grid-template-columns: 1fr;
  }

  .site-preview-nav nav {
    justify-content: flex-start;
  }

  .site-preview-hero {
    min-height: auto;
    padding: 22px;
  }

  .site-preview-hero h3 {
    font-size: clamp(1.7rem, 10vw, 2.35rem);
  }

  .site-preview-tools label,
  .site-plan-lock {
    width: 100%;
  }

  .business-site-settings-head .btn,
  .business-record-form-head .btn,
  
.business-site-form-sections {
  display: grid;
  gap: 18px;
}

.business-site-form-section {
  padding-top: 18px;
  border-top: 1px solid #d7e4f4;
}

.business-site-form-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.business-site-form-section > header {
  margin-bottom: 14px;
}

.business-site-form-section h3 {
  margin: 0;
  color: #102345;
  font-size: .98rem;
  font-weight: 950;
}
.business-settings-actions .btn {
    width: 100%;
  }

  .business-hours-row {
    grid-template-columns: 1fr;
  }

  .master-search {
    flex: 1 1 100%;
    min-width: 0;
  }

  .master-record-modal .modal-content {
    min-height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .master-record-modal .modal-body {
    padding: 14px 12px 4px;
  }

  .master-record-modal .modal-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .master-record-modal .modal-footer .btn {
    width: 100%;
  }

  .site-preview-modal .modal-content {
    min-height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .site-preview-modal .modal-body {
    padding: 14px 12px;
  }

  .site-preview-modal .modal-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .site-preview-modal .modal-footer .btn,
  .site-preview-modal .modal-footer .business-feature-lock-pill {
    width: 100%;
    justify-content: center;
  }

  .subdomain-checker .input-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subdomain-checker .form-control,
  .subdomain-checker .input-group-text,
  .subdomain-checker .btn-subdomain-check {
    width: 100%;
    border-radius: 6px !important;
  }

  .subdomain-checker .input-group-text {
    justify-content: center;
    min-height: 38px;
  }

  .master-details-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .support-format-nav {
    min-height: auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
  }

  .support-format-nav a,
  .support-nav-group button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .support-nav-group {
    display: flex;
    gap: 8px;
    margin: 0;
  }

  .support-nav-group a {
    margin-top: 0;
    padding-left: 12px;
  }

  .support-table-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .support-table-controls label {
    justify-content: space-between;
  }

  .support-table-controls .form-control {
    width: min(220px, 100%);
  }

  .chart-panel {
    min-height: 324px;
  }

  .chart-wrap {
    height: 244px;
  }
}

@media (max-width: 640px) {
  .plans-nav .plans-panel-btn {
    display: none;
  }

  .plans-hero {
    padding: 40px 0 42px;
  }

  .plans-hero h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .plans-hero p {
    font-size: .98rem;
    line-height: 1.55;
  }

  .create-site-copy h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  .create-site-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-preview-card {
    border-radius: 18px;
  }

  .site-preview-body {
    padding: 16px;
  }

  .site-preview-body h2 {
    font-size: 1.3rem;
  }

  .saas-footer {
    padding-top: 46px;
  }

  .saas-footer-grid {
    grid-template-columns: 1fr;
  }

  .saas-footer-main,
  .saas-footer-contact-card {
    grid-column: auto;
  }

  .saas-footer-brand strong {
    font-size: 1.25rem;
  }

  .saas-footer-actions .btn {
    width: 100%;
  }

  .saas-footer-bottom {
    padding: 14px 0;
    min-height: 62px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .business-site-nav {
    min-height: 54px;
    padding: 6px;
  }

  .business-site-brand span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .business-site-brand strong {
    max-width: 148px;
    font-size: .9rem;
  }

  .business-site-hero {
    min-height: 90vh;
    padding-bottom: 30px;
  }

  .business-site-actions .btn {
    width: 100%;
  }

  .business-site-stat-grid,
  .business-site-form-row {
    grid-template-columns: 1fr;
  }

  .business-site-service-bottom {
    grid-template-columns: 1fr auto;
  }

  .business-site-service-bottom a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .master-nav .container-fluid {
    padding-left: 8px;
    padding-right: 8px;
    gap: 8px;
  }

  .master-brand-zone {
    gap: 6px;
  }

  .master-nav .brand-mark strong,
  .master-nav .brand-mark small {
    display: none;
  }

  .master-actions {
    gap: 2px;
    padding: 3px;
  }

  .master-action-btn,
  .master-avatar-btn {
    width: 34px;
    height: 34px;
  }

  .master-avatar-btn span {
    width: 30px;
    height: 30px;
  }

  .master-avatar-btn img {
    width: 30px;
    height: 30px;
  }

  .action-badge {
    min-width: 16px;
    height: 16px;
    font-size: .66rem;
  }

  .master-menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .master-content .alert {
    align-items: flex-start !important;
    font-size: .9rem;
  }

  .btn-master-add,
  .btn-master-report,
  .btn-master-export {
    min-height: 38px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: .84rem;
  }

  .master-modal-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .master-modal-tabs .nav-link {
    white-space: nowrap;
  }

  .master-upload-field {
    align-items: stretch;
    flex-direction: column;
  }

  .master-upload-preview {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .row-action-palette {
    width: max-content;
  }
}

@media (max-width: 380px) {
  .master-nav .brand-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .master-nav .brand-icon-wrap img {
    width: 23px;
    height: 23px;
  }

  .master-actions {
    transform: scale(.9);
    transform-origin: right center;
  }
}

.suspended-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background: #eef3fb;
}

.suspended-card {
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid #dbe5f4;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(13, 42, 91, .12);
}

.suspended-brand {
  justify-content: center;
  margin: 0 auto 18px;
}

.suspended-card h1 {
  color: #11264a;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.suspended-card p {
  color: #5f6f8c;
  margin-bottom: 20px;
}

.public-site {
  min-height: 100vh;
  color: #102033;
  background: #f7fbff;
}

.public-site .container {
  max-width: 1180px;
}

.public-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #dce9f8;
  backdrop-filter: blur(14px);
}

.public-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #102033;
  font-weight: 900;
}

.public-brand span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #d7e5f6;
  box-shadow: 0 12px 30px rgba(31, 88, 201, .12);
}

.public-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.public-links,
.public-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.public-links a,
.public-login {
  color: #30425b;
  font-weight: 800;
  font-size: .94rem;
}

.public-links a {
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}

.public-links a.active,
.public-links a:hover,
.public-login:hover {
  color: #1f58c9;
}

.public-links a.active {
  border-color: #34b8c8;
}

.public-hero {
  padding: 86px 0 64px;
  background: linear-gradient(180deg, #eaf6ff 0%, #f8fcff 100%);
  border-bottom: 1px solid #dce9f8;
}

.public-hero h1,
.public-page-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #102033;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}

.public-hero p,
.public-page-hero p,
.public-section-head p,
.public-final-cta p,
.public-footer p {
  color: #40516a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.public-hero-actions,
.public-center-action,
.public-final-cta div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.public-product-panel {
  overflow: hidden;
  border: 1px solid #bdd8fb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 64px rgba(35, 104, 210, .18);
}

.public-panel-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #153b9c;
  background: #f9fcff;
  border-bottom: 1px solid #dce9f8;
}

.public-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #71b7ff;
}

.public-panel-top span:nth-child(2) {
  background: #34c6cf;
}

.public-panel-top span:nth-child(3) {
  background: #ffc857;
}

.public-panel-top strong {
  margin-left: 8px;
  font-size: .9rem;
}

.public-panel-body {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 58%, #eafaf7 100%);
}

.public-panel-body div {
  min-height: 78px;
  padding: 16px;
  border: 1px solid #d6e6f8;
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
}

.public-panel-body small {
  display: block;
  margin-bottom: 6px;
  color: #6a7890;
  font-weight: 800;
}

.public-panel-body strong {
  display: block;
  color: #102033;
  font-size: 1.08rem;
}

.public-page-hero {
  padding: 72px 0 44px;
  background: linear-gradient(180deg, #eaf6ff 0%, #f7fbff 100%);
  border-bottom: 1px solid #dce9f8;
}

.public-section {
  padding: 68px 0;
}

.public-band {
  background: #eef8fb;
  border-top: 1px solid #d6edf1;
  border-bottom: 1px solid #d6edf1;
}

.public-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.public-section-head h2,
.public-comparison h2,
.public-final-cta h2,
.public-contact-card h2 {
  margin: 0 0 12px;
  color: #102033;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: 0;
}

.public-feature-card,
.public-plan-card,
.public-contact-card,
.public-contact-form,
.public-comparison,
.public-benefit-list {
  height: 100%;
  padding: 24px;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(25, 63, 112, .08);
}

.public-feature-card i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #0b7d75;
  background: #dff7f3;
  font-size: 1.35rem;
}

.public-feature-card h2,
.public-feature-card h3 {
  margin: 0 0 10px;
  color: #102033;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0;
}

.public-feature-card p,
.public-comparison p,
.public-benefit-list span,
.public-plan-card p {
  color: #50617a;
  line-height: 1.65;
}

.public-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.public-steps div {
  min-height: 168px;
  padding: 22px;
  border: 1px solid #d7e8ef;
  border-radius: 8px;
  background: #ffffff;
}

.public-steps span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #ffffff;
  background: #0b7d75;
  font-weight: 900;
}

.public-steps strong {
  display: block;
  color: #102033;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.public-steps p {
  margin: 0;
  color: #50617a;
  line-height: 1.6;
}

.public-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.public-plan-card.featured {
  border-color: #2f74df;
  box-shadow: 0 24px 58px rgba(31, 88, 201, .18);
}

.public-plan-card h3 {
  margin: 8px 0 0;
  color: #102033;
  font-size: 1.45rem;
  font-weight: 950;
}

.public-plan-card .plan-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.public-plan-card .plan-price strong {
  color: #153b9c;
  font-size: 2rem;
  line-height: 1;
}

.public-plan-card .plan-price span {
  color: #6a7890;
  font-weight: 800;
}

.public-plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 4px;
  list-style: none;
}

.public-plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #30425b;
  line-height: 1.45;
}

.public-plan-card li i {
  color: #0b9b73;
  margin-top: 3px;
}

.public-plan-card .btn {
  margin-top: auto;
}

.public-comparison {
  margin-top: 24px;
}

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

.public-benefit-list div,
.public-contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.public-benefit-list i {
  color: #0b9b73;
  font-size: 1.2rem;
}

.public-contact-card {
  display: grid;
  gap: 12px;
}

.public-contact-card a {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  color: #153b9c;
  font-weight: 800;
  background: #f7fbff;
}

.public-contact-form label {
  width: 100%;
  color: #30425b;
  font-weight: 800;
}

.public-contact-form .form-control {
  min-height: 46px;
  margin-top: 8px;
  border-color: #d3e2f5;
  border-radius: 8px;
}

.public-contact-form textarea.form-control {
  min-height: 130px;
}

.public-faq .accordion-item {
  border-color: #d9e7f7;
  border-radius: 8px;
  overflow: hidden;
}

.public-final-cta {
  padding: 56px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #102033 0%, #153b9c 58%, #0b7d75 100%);
}

.public-final-cta h2,
.public-final-cta p {
  color: #ffffff;
}

.public-footer {
  padding: 44px 0;
  background: #ffffff;
  border-top: 1px solid #dce9f8;
}

.public-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.public-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.public-footer nav strong {
  color: #102033;
  margin-bottom: 4px;
}

.public-footer nav a {
  color: #40516a;
  font-weight: 700;
}

@media (max-width: 992px) {
  .public-nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 12px;
  }

  .public-links,
  .public-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .public-hero h1,
  .public-page-hero h1 {
    font-size: 44px;
  }

  .public-steps,
  .public-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .public-hero,
  .public-page-hero,
  .public-section {
    padding: 44px 0;
  }

  .public-hero h1,
  .public-page-hero h1 {
    font-size: 34px;
  }

  .public-section-head h2,
  .public-comparison h2,
  .public-final-cta h2,
  .public-contact-card h2 {
    font-size: 26px;
  }

  .public-hero-actions .btn,
  .public-final-cta .btn,
  .public-actions .btn {
    width: 100%;
  }
}


.sx-nav-links .sx-btn-secondary,
.sx-nav-links .sx-btn-secondary:hover,
.sx-nav-links .sx-btn-secondary:focus,
.sx-topbar .sx-btn-secondary,
.sx-topbar .sx-btn-secondary:hover,
.sx-topbar .sx-btn-secondary:focus {
  color: #123a8f;
  background: rgba(255, 255, 255, .92);
  border-color: #b7d1f4;
}

.sx-nav-links .sx-btn-secondary i,
.sx-topbar .sx-btn-secondary i {
  color: #1f58c9;
}

.email-history-heading {
  margin-bottom: 18px;
}

.email-history-hero {
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.email-history-hero > div,
.email-history-search,
.email-history-list,
.email-history-detail {
  border: 1px solid rgba(168, 214, 255, .9);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 55px rgba(31, 88, 201, .1);
}

.email-history-hero > div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
}

.email-history-kicker {
  color: #1f58c9;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.email-history-hero strong {
  color: #102033;
  font-size: 2.15rem;
  line-height: 1;
}

.email-history-hero small {
  color: #61708f;
  font-weight: 800;
}

.email-history-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 82px;
  padding: 14px 16px;
  border-radius: 22px;
}

.email-history-search i {
  color: #1f58c9;
  font-size: 1.1rem;
}

.email-history-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #102033;
  background: transparent;
  font-weight: 800;
}

.email-history-search button,
.email-history-search a {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
}

.email-history-search button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #70bcff 0%, #2f74df 55%, #153b9c 100%);
}

.email-history-search a {
  display: inline-flex;
  align-items: center;
  color: #153b9c;
  background: #eff8ff;
}

.email-history-grid {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.email-history-list,
.email-history-detail {
  border-radius: 24px;
  overflow: hidden;
}

.email-history-list {
  display: grid;
  align-content: start;
  max-height: 780px;
  overflow-y: auto;
}

.email-history-item {
  display: grid;
  gap: 8px;
  padding: 17px 18px;
  color: #30425b;
  text-decoration: none;
  border-bottom: 1px solid #e4effb;
  background: rgba(255, 255, 255, .72);
}

.email-history-item:hover,
.email-history-item.active {
  color: #102033;
  background: linear-gradient(135deg, #f7fbff 0%, #eff8ff 100%);
}

.email-history-item.active {
  box-shadow: inset 4px 0 0 #2f74df;
}

.email-history-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.email-history-item-top strong {
  color: #102033;
  font-size: .98rem;
  line-height: 1.3;
}

.email-history-item-top small,
.email-history-item-meta,
.email-history-snippet {
  color: #61708f;
  font-size: .82rem;
}

.email-history-item-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.email-history-snippet {
  line-height: 1.45;
}

.email-history-empty,
.email-history-detail-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 260px;
  padding: 28px;
  color: #61708f;
  text-align: center;
}

.email-history-empty i,
.email-history-detail-empty i {
  color: #2f74df;
  font-size: 2rem;
}

.email-history-empty strong,
.email-history-detail-empty h2 {
  margin: 0;
  color: #102033;
}

.email-history-detail {
  min-height: 620px;
}

.email-history-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid #dfeaf8;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.email-history-detail-head h2 {
  margin: 6px 0 0;
  color: #102033;
  font-size: 1.45rem;
  font-weight: 950;
}

.email-history-date {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: #153b9c;
  background: #eff8ff;
  font-size: .82rem;
  font-weight: 900;
}

.email-history-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-bottom: 1px solid #dfeaf8;
}

.email-history-meta div {
  padding: 15px 18px;
  border-right: 1px solid #e7f0fb;
}

.email-history-meta div:last-child {
  border-right: 0;
}

.email-history-meta dt {
  color: #61708f;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.email-history-meta dd {
  margin: 4px 0 0;
  color: #102033;
  font-weight: 800;
  word-break: break-word;
}

.email-history-frame {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: #ffffff;
}

.email-history-text {
  min-height: 360px;
  padding: 24px 26px;
  color: #30425b;
  line-height: 1.65;
  white-space: normal;
}

[data-bs-theme="dark"] .email-history-hero > div,
[data-bs-theme="dark"] .email-history-search,
[data-bs-theme="dark"] .email-history-list,
[data-bs-theme="dark"] .email-history-detail {
  border-color: rgba(112, 188, 255, .24);
  background: rgba(12, 23, 42, .86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
}

[data-bs-theme="dark"] .email-history-hero strong,
[data-bs-theme="dark"] .email-history-item-top strong,
[data-bs-theme="dark"] .email-history-empty strong,
[data-bs-theme="dark"] .email-history-detail-empty h2,
[data-bs-theme="dark"] .email-history-detail-head h2,
[data-bs-theme="dark"] .email-history-meta dd,
[data-bs-theme="dark"] .email-history-search input {
  color: #f7fbff;
}

[data-bs-theme="dark"] .email-history-item,
[data-bs-theme="dark"] .email-history-detail-head {
  border-color: rgba(168, 214, 255, .16);
  background: rgba(15, 30, 54, .72);
}

[data-bs-theme="dark"] .email-history-item:hover,
[data-bs-theme="dark"] .email-history-item.active {
  background: rgba(31, 88, 201, .18);
}

[data-bs-theme="dark"] .email-history-meta,
[data-bs-theme="dark"] .email-history-meta div {
  border-color: rgba(168, 214, 255, .16);
}

@media (max-width: 1180px) {
  .email-history-grid,
  .email-history-hero {
    grid-template-columns: 1fr;
  }

  .email-history-list {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .email-history-search,
  .email-history-detail-head,
  .email-history-item-top {
    align-items: stretch;
    flex-direction: column;
  }

  .email-history-search {
    display: grid;
  }

  .email-history-search button,
  .email-history-search a {
    justify-content: center;
    width: 100%;
  }

  .email-history-meta {
    grid-template-columns: 1fr;
  }

  .email-history-meta div {
    border-right: 0;
    border-bottom: 1px solid #e7f0fb;
  }
}

.business-notification-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.business-notification-grid-wide {
  grid-template-columns: 1.2fr .8fr;
}

.business-notification-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.business-inline-kpis {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-inline-kpis div {
  border: 1px solid rgba(31, 88, 201, .12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 248, 255, .96), rgba(231, 240, 251, .88));
  padding: 14px 16px;
}

.business-inline-kpis small,
.business-inline-label {
  color: #6f7f94;
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.business-inline-kpis strong {
  color: #17304d;
  display: block;
  font-size: 1rem;
}

.business-share-stack {
  display: grid;
  gap: 10px;
}

.business-note-box {
  border: 1px solid rgba(31, 88, 201, .12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 249, 255, .96), rgba(235, 243, 252, .92));
  color: #385070;
  padding: 16px 18px;
}

.business-note-box strong {
  color: #15304e;
  display: block;
  margin-bottom: 6px;
}

.business-note-box p,
.business-note-box small {
  margin: 0;
}

.business-ops-form {
  display: grid;
  gap: 18px;
}

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

.business-switch-card {
  align-items: flex-start;
  border: 1px solid rgba(31, 88, 201, .12);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  display: flex;
  gap: 12px;
  min-height: 100%;
  padding: 14px 16px;
}

.business-switch-card input {
  margin-top: 4px;
}

.business-switch-card span {
  display: grid;
  gap: 4px;
}

.business-switch-card strong {
  color: #17304d;
  font-size: .97rem;
}

.business-switch-card small {
  color: #708199;
  line-height: 1.5;
}

.business-form-footer {
  display: flex;
  justify-content: flex-end;
}

.business-comanda-builder {
  display: grid;
  gap: 14px;
}

.business-comanda-toolbar {
  display: grid;
  gap: 12px;
}

.business-comanda-picker {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.8fr) auto auto;
}

.business-comanda-summary {
  align-items: center;
  background: linear-gradient(180deg, rgba(245, 249, 255, .96), rgba(235, 243, 252, .92));
  border: 1px solid rgba(31, 88, 201, .12);
  border-radius: 18px;
  color: #51657d;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 14px 16px;
}

.business-comanda-summary strong {
  color: #17304d;
  font-size: 1rem;
}

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

.business-comanda-empty {
  border: 1px dashed rgba(31, 88, 201, .22);
  border-radius: 18px;
  color: #708199;
  padding: 16px 18px;
  text-align: center;
}

.business-comanda-row {
  background: #fff;
  border: 1px solid rgba(31, 88, 201, .12);
  border-radius: 22px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

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

.business-comanda-row-badge {
  background: rgba(31, 88, 201, .08);
  border-radius: 999px;
  color: #1f58c9;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.business-comanda-row-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.5fr) 120px 130px 130px;
}

.business-comanda-row-fields label {
  display: grid;
  gap: 6px;
}

.business-comanda-row-fields label span,
.business-comanda-row-total small {
  color: #708199;
  font-size: .82rem;
  font-weight: 600;
}

.business-comanda-row-total {
  align-content: end;
  display: grid;
  gap: 6px;
}

.business-comanda-row-total strong {
  color: #17304d;
  font-size: 1rem;
}

.business-ea-team-view .business-ea-time-cell span {
  color: #6f7f94;
  display: block;
  font-size: .78rem;
  margin-top: 4px;
}

.business-ea-team-slot {
  min-height: 160px;
}

[data-bs-theme="dark"] .business-inline-kpis div,
[data-bs-theme="dark"] .business-note-box,
[data-bs-theme="dark"] .business-switch-card,
[data-bs-theme="dark"] .business-comanda-summary,
[data-bs-theme="dark"] .business-comanda-row {
  border-color: rgba(112, 188, 255, .22);
  background: rgba(13, 26, 47, .86);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

[data-bs-theme="dark"] .business-inline-kpis strong,
[data-bs-theme="dark"] .business-note-box strong,
[data-bs-theme="dark"] .business-switch-card strong,
[data-bs-theme="dark"] .business-comanda-summary strong,
[data-bs-theme="dark"] .business-comanda-row-total strong {
  color: #f5fbff;
}

[data-bs-theme="dark"] .business-inline-kpis small,
[data-bs-theme="dark"] .business-note-box,
[data-bs-theme="dark"] .business-switch-card small,
[data-bs-theme="dark"] .business-inline-label,
[data-bs-theme="dark"] .business-comanda-summary span,
[data-bs-theme="dark"] .business-comanda-row-fields label span,
[data-bs-theme="dark"] .business-comanda-row-total small,
[data-bs-theme="dark"] .business-comanda-empty {
  color: #a8c0da;
}

[data-bs-theme="dark"] .business-comanda-row-badge {
  background: rgba(112, 188, 255, .14);
  color: #9fd2ff;
}

@media (max-width: 1080px) {
  .business-notification-grid,
  .business-notification-grid-wide,
  .business-inline-kpis,
  .business-switch-grid,
  .business-comanda-picker,
  .business-comanda-row-fields {
    grid-template-columns: 1fr;
  }
}
