/* sv-catalog-browser — fullscreen module catalogue modal (homepage) */

/* CTA catálogo — banda azul fina (estilo pos-cta) */
#catalogo.catalogo-section {
  padding: 0;
  margin: 0;
  scroll-margin-top: calc(var(--header-top, 0px) + var(--header-h, 64px) + 16px);
}

.sectors-catalog-cta {
  padding: 40px 0;
  color: #fff;
  background: linear-gradient(135deg, #0046c8, var(--blue, #0B4CC2) 55%, #1a6cff);
}

.sectors-catalog-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sectors-catalog-cta-copy {
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
}

.sectors-catalog-cta-title {
  margin: 0 0 6px;
  max-width: none;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #fff;
}

.sectors-catalog-cta-lead {
  margin: 0;
  max-width: 46rem;
  width: auto;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.sectors-catalog-cta-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius-btn, 999px);
  background: #fff;
  color: var(--blue, #0B4CC2);
  font-weight: 750;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.2s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
    box-shadow 0.2s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
    background 0.2s var(--ease, cubic-bezier(0.4, 0, 0.2, 1)),
    color 0.2s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.sectors-catalog-cta-btn-arrow {
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.2s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.sectors-catalog-cta-btn:hover {
  transform: translateY(-1px);
  background: var(--blue-deep, #061B49);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.sectors-catalog-cta-btn:hover .sectors-catalog-cta-btn-arrow {
  transform: translateX(3px);
}

.sectors-catalog-cta-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.sectors-catalog-cta-btn:active {
  transform: translateY(0);
}

/* Overlay */
.sv-cb-overlay {
  --sv-cb-navy: var(--blue-deep, #061B49);
  --sv-cb-blue: var(--blue, #0B4CC2);
  --sv-cb-orange: var(--orange, #FF7A00);
  position: fixed;
  inset: 0;
  z-index: 11800;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.sv-cb-overlay[hidden] {
  display: none !important;
}

.sv-cb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 28, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sv-cb-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1080px, 100%);
  height: min(90vh, 780px);
  max-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(165deg, #ffffff 0%, #f5f8fc 55%, #eef3fa 100%);
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    0 24px 64px rgba(2, 8, 20, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  animation: svCbIn 0.28s ease;
}

.sv-cb-dialog::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  opacity: 0.9;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 38%, #f59e0b 72%, #ea580c 100%);
  pointer-events: none;
}

@keyframes svCbIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.988);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body.sv-cb-open {
  overflow: hidden;
}

.sv-cb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  padding: 12px 16px 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.72);
}

.sv-cb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-right: 6px;
}

.sv-cb-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fafc;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
  flex: 0 0 auto;
}

.sv-cb-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-cb-orange);
}

.sv-cb-header h2 {
  margin: 1px 0 0;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--sv-cb-navy);
  line-height: 1.2;
}

.sv-cb-close {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 9px;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.sv-cb-close:hover {
  background: #e2e8f0;
  color: var(--sv-cb-navy);
}

.sv-cb-close:focus-visible {
  outline: 2px solid #1558e8;
  outline-offset: 2px;
}

.sv-cb-body {
  display: grid;
  grid-template-columns: minmax(200px, 248px) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
}

.sv-cb-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px 8px 14px;
  border-right: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(248, 250, 252, 0.9);
  scrollbar-width: thin;
  scrollbar-color: #0B4CC2 rgba(11, 76, 194, 0.12);
}

.sv-cb-pane {
  min-height: 0;
  overflow: auto;
  padding: 16px 20px 20px;
  scrollbar-width: thin;
  scrollbar-color: #0B4CC2 rgba(11, 76, 194, 0.12);
}

/* Brand scrollbars (nav + content) — azul Siversa nítido */
.sv-cb-nav::-webkit-scrollbar,
.sv-cb-pane::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.sv-cb-nav::-webkit-scrollbar-track,
.sv-cb-pane::-webkit-scrollbar-track {
  background: rgba(11, 76, 194, 0.1);
  border-radius: 999px;
}

.sv-cb-nav::-webkit-scrollbar-thumb,
.sv-cb-pane::-webkit-scrollbar-thumb {
  background: #0B4CC2;
  border-radius: 999px;
}

.sv-cb-nav::-webkit-scrollbar-thumb:hover,
.sv-cb-pane::-webkit-scrollbar-thumb:hover {
  background: #1558e8;
}

.sv-cb-nav-label {
  margin: 0 6px 6px;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.sv-cb-tab {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--sv-cb-navy);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.sv-cb-tab:hover {
  background: rgba(11, 76, 194, 0.06);
}

.sv-cb-tab.is-active {
  background: #fff;
  border-color: rgba(11, 76, 194, 0.16);
  box-shadow: 0 3px 10px rgba(6, 27, 73, 0.05);
}

.sv-cb-tab:focus-visible {
  outline: 2px solid #1558e8;
  outline-offset: 1px;
}

.sv-cb-tab-ico {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.sv-cb-tab-ico--intro {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(11, 76, 194, 0.12), rgba(255, 122, 0, 0.14));
  color: var(--sv-cb-blue);
}

.sv-cb-tab-ico--intro svg {
  width: 14px;
  height: 14px;
}

.sv-cb-tab-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-cb-tab-name {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sv-cb-tab-meta {
  font-size: 10.5px;
  line-height: 1.25;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sv-cb-loading,
.sv-cb-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 160px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

.sv-cb-loading[hidden],
.sv-cb-error[hidden],
.sv-cb-article[hidden] {
  display: none !important;
}

.sv-cb-spinner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2.5px solid rgba(11, 76, 194, 0.15);
  border-top-color: var(--sv-cb-blue);
  animation: svCbSpin 0.7s linear infinite;
}

@keyframes svCbSpin {
  to { transform: rotate(360deg); }
}

.sv-cb-article-head {
  display: block;
  margin-bottom: 12px;
}

.sv-cb-article-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 11px;
  object-fit: contain;
  background: #fff;
  box-shadow:
    0 4px 12px rgba(6, 27, 73, 0.07),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}

.sv-cb-article-icon--intro {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(11, 76, 194, 0.1), rgba(255, 122, 0, 0.12));
  color: var(--sv-cb-blue);
}

.sv-cb-article-icon--intro svg {
  width: 20px;
  height: 20px;
}

.sv-cb-eyebrow {
  margin: 0 0 2px;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-cb-orange);
}

.sv-cb-article-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  letter-spacing: -0.025em;
  color: var(--sv-cb-navy);
  line-height: 1.2;
}

.sv-cb-article-sub {
  margin: 4px 0 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: #64748b;
  max-width: 54ch;
}

.sv-cb-prose {
  color: var(--sv-cb-navy);
  font-size: 14px;
  line-height: 1.55;
  max-width: 62ch;
}

.sv-cb-prose p {
  margin: 0 0 10px;
}

.sv-cb-prose p:last-child {
  margin-bottom: 0;
}

.sv-cb-prose ul {
  margin: 2px 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.sv-cb-prose li {
  position: relative;
  padding-left: 16px;
  color: #334155;
}

.sv-cb-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sv-cb-orange);
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.15);
}

.sv-cb-intro-bullets {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  max-width: 54ch;
}

.sv-cb-intro-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 2px 8px rgba(6, 27, 73, 0.03);
  font-size: 13px;
  line-height: 1.4;
  color: #334155;
}

.sv-cb-intro-bullets li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--sv-cb-blue);
}

.sv-cb-footer-cta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.sv-cb-footer-cta a,
.sv-cb-footer-cta button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.sv-cb-btn-primary {
  border: 0;
  background: var(--sv-cb-blue);
  color: #fff;
}

.sv-cb-btn-primary:hover {
  background: var(--blue-dark, #082E72);
  transform: translateY(-1px);
}

.sv-cb-btn-ghost {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--sv-cb-blue);
}

.sv-cb-btn-ghost .sv-cb-btn-ico {
  flex: 0 0 auto;
}

.sv-cb-btn-ghost:hover {
  border-color: var(--sv-cb-blue);
  background: var(--sv-cb-blue);
  color: #fff;
}

.sv-cb-soon {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

/* Description ↔ pricing pane transitions */
.sv-cb-view {
  will-change: opacity, transform;
}

.sv-cb-view.is-leave {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.sv-cb-view--pricing.is-enter {
  opacity: 0;
  transform: translateX(10px);
}

.sv-cb-view--pricing.is-enter.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sv-cb-back {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 10px;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: var(--sv-cb-blue);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.sv-cb-back:hover {
  color: var(--blue-dark, #082E72);
  background: rgba(11, 76, 194, 0.06);
}

.sv-cb-back:focus-visible {
  outline: 2px solid #1558e8;
  outline-offset: 2px;
}

.sv-cb-back svg {
  flex: 0 0 auto;
}

.sv-cb-article-head--pricing {
  margin-bottom: 10px;
}

.sv-cb-period-block {
  margin: 0 0 12px;
}

.sv-cb-period-label {
  margin: 0 0 6px;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.sv-cb-period-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sv-cb-period-pill {
  appearance: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.sv-cb-period-pill .sv-cb-period-ico {
  flex: 0 0 auto;
}

/* Distinct icon/text colors per period (inactive) */
.sv-cb-period-pill--mensal { color: #0B4CC2; border-color: rgba(11, 76, 194, 0.28); }
.sv-cb-period-pill--trimestral { color: #0d9488; border-color: rgba(13, 148, 136, 0.3); }
.sv-cb-period-pill--semestral { color: #7c3aed; border-color: rgba(124, 58, 237, 0.28); }
.sv-cb-period-pill--anual,
.sv-cb-period-pill--dois_anos { color: #ea580c; border-color: rgba(234, 88, 12, 0.3); }
.sv-cb-period-pill--vitalicio { color: #ca8a04; border-color: rgba(202, 138, 4, 0.35); }

.sv-cb-period-pill:hover {
  filter: brightness(0.97);
}

.sv-cb-period-pill.is-active {
  color: #fff !important;
  font-weight: 750;
}

.sv-cb-period-pill--mensal.is-active {
  background: #0B4CC2;
  border-color: #0B4CC2;
  box-shadow: 0 4px 12px rgba(11, 76, 194, 0.28);
}

.sv-cb-period-pill--trimestral.is-active {
  background: #0d9488;
  border-color: #0d9488;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.28);
}

.sv-cb-period-pill--semestral.is-active {
  background: #7c3aed;
  border-color: #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.28);
}

.sv-cb-period-pill--anual.is-active,
.sv-cb-period-pill--dois_anos.is-active {
  background: #ea580c;
  border-color: #ea580c;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.28);
}

.sv-cb-period-pill--vitalicio.is-active {
  background: #ca8a04;
  border-color: #ca8a04;
  box-shadow: 0 4px 12px rgba(202, 138, 4, 0.28);
}

.sv-cb-period-pill:focus-visible {
  outline: 2px solid #1558e8;
  outline-offset: 1px;
}

.sv-cb-mod-price {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(11, 76, 194, 0.06), rgba(255, 122, 0, 0.07));
  border: 1px solid rgba(11, 76, 194, 0.12);
}

.sv-cb-mod-price-label {
  margin: 0 0 2px;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-cb-orange);
}

.sv-cb-mod-price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.sv-cb-mod-price-value {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sv-cb-navy);
  line-height: 1.2;
}

.sv-cb-mod-price-value--muted {
  font-size: 1rem;
  font-weight: 700;
  color: #64748b;
}

.sv-cb-mod-price-note {
  font-size: 12px;
  color: #64748b;
}

.sv-cb-pkgs-block {
  margin: 0 0 4px;
}

.sv-cb-pkgs-heading {
  margin: 0 0 2px;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: var(--sv-cb-navy);
}

.sv-cb-pkgs-lead {
  margin: 0 0 10px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #64748b;
}

.sv-cb-pkg-list {
  display: grid;
  gap: 8px;
}

.sv-cb-pkg {
  appearance: none;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(6, 27, 73, 0.03);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sv-cb-pkg:hover {
  border-color: rgba(11, 76, 194, 0.28);
}

.sv-cb-pkg.is-popular {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow:
    0 2px 10px rgba(255, 122, 0, 0.08),
    0 0 0 1px rgba(255, 122, 0, 0.08);
}

.sv-cb-pkg.is-selected {
  border-color: rgba(11, 76, 194, 0.45);
  background: rgba(11, 76, 194, 0.05);
  box-shadow:
    0 4px 14px rgba(11, 76, 194, 0.1),
    0 0 0 1px rgba(11, 76, 194, 0.12);
}

.sv-cb-pkg.is-popular.is-selected {
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.06);
}

.sv-cb-pkg-badge {
  position: absolute;
  top: -7px;
  right: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a1a, var(--sv-cb-orange));
  color: #fff;
  font-size: 9.5px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.sv-cb-pkg-selected {
  position: absolute;
  top: -7px;
  left: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--sv-cb-blue);
  color: #fff;
  font-size: 9.5px;
  font-weight: 750;
}

.sv-cb-pkg.is-popular .sv-cb-pkg-selected {
  top: auto;
  bottom: -7px;
  left: 10px;
}

.sv-cb-pkg-name {
  margin: 0;
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: var(--sv-cb-navy);
  line-height: 1.25;
}

.sv-cb-pkg-desc {
  margin: 2px 0 0;
  font-size: 11.5px;
  line-height: 1.35;
  color: #64748b;
}

.sv-cb-pkg-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 2px 4px;
  text-align: right;
  max-width: 200px;
}

.sv-cb-pkg-from {
  width: 100%;
  font-size: 10px;
  font-weight: 650;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sv-cb-pkg-value {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sv-cb-navy);
  line-height: 1.15;
}

.sv-cb-pkg-suffix {
  font-size: 11.5px;
  font-weight: 650;
  color: #64748b;
}

.sv-cb-pkg-period {
  width: 100%;
  font-size: 10.5px;
  color: #94a3b8;
}

.sv-cb-total {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px 16px;
  margin: 20px 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 27, 73, 0.92), #0B4CC2 120%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(6, 27, 73, 0.18);
}

.sv-cb-total::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
  pointer-events: none;
}

.sv-cb-total--muted {
  background: #f1f5f9;
  color: #475569;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.sv-cb-total-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.sv-cb-total-hint {
  margin: 2px 0 0;
  font-size: 11.5px;
  line-height: 1.35;
  opacity: 0.9;
}

.sv-cb-total-value-wrap {
  text-align: right;
}

.sv-cb-total-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sv-cb-total-note {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .sv-cb-overlay {
    padding: 0;
  }

  .sv-cb-dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    border: 0;
  }

  .sv-cb-dialog::before {
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .sv-cb-header {
    padding: 10px 12px 8px;
    padding-top: max(10px, env(safe-area-inset-top, 0px));
  }

  .sv-cb-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .sv-cb-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 12px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .sv-cb-nav::-webkit-scrollbar {
    display: none;
  }

  .sv-cb-nav-label {
    display: none;
  }

  .sv-cb-tab {
    flex: 0 0 auto;
    width: auto;
    max-width: 200px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
    scroll-snap-align: start;
  }

  .sv-cb-tab.is-active {
    background: rgba(11, 76, 194, 0.08);
    border-color: rgba(11, 76, 194, 0.28);
    box-shadow: none;
  }

  .sv-cb-tab-meta {
    display: none;
  }

  .sv-cb-tab-ico {
    width: 22px;
    height: 22px;
  }

  .sv-cb-pane {
    padding: 14px 14px 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .sv-cb-pkg {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sv-cb-pkg-price {
    justify-content: flex-start;
    text-align: left;
    max-width: none;
  }

  .sv-cb-pkg-from {
    width: auto;
  }

  .sv-cb-pkg-period {
    width: auto;
  }

  .sv-cb-period-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .sv-cb-period-pills::-webkit-scrollbar {
    display: none;
  }

  .sv-cb-period-pill {
    flex: 0 0 auto;
  }

  .sectors-catalog-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sectors-catalog-cta-btn {
    width: 100%;
    padding: 13px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sv-cb-dialog,
  .sectors-catalog-cta-btn,
  .sv-cb-spinner,
  .sv-cb-view.is-leave,
  .sv-cb-view--pricing.is-enter,
  .sv-cb-view--pricing.is-enter.is-in {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .sectors-catalog-cta-btn:hover,
  .sv-cb-btn-primary:hover {
    transform: none;
  }
}
