/* Cloudbees Host 2026: single stylesheet, no Bootstrap/jQuery dependencies */
:root {
  --bg: #070a10;
  --ink: rgba(246, 248, 255, 0.98);
  --muted: rgba(246, 248, 255, 0.72);
  --faint: rgba(246, 248, 255, 0.58);
  --border: rgba(246, 248, 255, 0.14);
  --border2: rgba(246, 248, 255, 0.1);

  --accent: #37f0c1;
  --accent2: #ffb070;
  --danger: #ff3b6a;
  --blue: #5c80ff;

  --card: rgba(12, 14, 22, 0.62);
  --card2: rgba(16, 20, 32, 0.48);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.62);

  --r: 18px;
  --r2: 26px;

  --sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Source Serif 4", ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body.cb {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Toast alerts (SweetAlert-style, no external deps) */
.cb-toastHost {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 120;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100% - 32px));
  pointer-events: none;
}
@media (max-width: 520px) {
  .cb-toastHost { left: 16px; right: 16px; width: auto; }
}
.cb-toast {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: start;
  border-radius: 18px;
  border: 1px solid rgba(246, 248, 255, 0.14);
  background: rgba(12, 14, 22, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 12px 12px;
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 0;
  animation: cbToastIn 240ms ease-out forwards;
}
@keyframes cbToastIn { to { transform: translateY(0); opacity: 1; } }
.cb-toast.is-leaving { animation: cbToastOut 200ms ease-in forwards; }
@keyframes cbToastOut { to { transform: translateY(-10px); opacity: 0; } }
.cb-toast__ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(246, 248, 255, 0.12);
  background: rgba(16, 20, 32, 0.35);
  display: grid;
  place-items: center;
}
.cb-toast__ico svg { width: 22px; height: 22px; stroke: rgba(246, 248, 255, 0.92); }
.cb-toast__h { font-weight: 950; letter-spacing: -0.01em; }
.cb-toast__p { margin-top: 4px; color: var(--muted); font-weight: 650; font-size: 13px; }
.cb-toast__x {
  border: 1px solid rgba(246, 248, 255, 0.12);
  background: rgba(16, 20, 32, 0.28);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
}
.cb-toast--success { border-color: rgba(55, 240, 193, 0.20); }
.cb-toast--success .cb-toast__ico { background: linear-gradient(135deg, rgba(55, 240, 193, 0.18), rgba(92, 128, 255, 0.10)); }
.cb-toast--error { border-color: rgba(255, 59, 106, 0.20); }
.cb-toast--error .cb-toast__ico { background: linear-gradient(135deg, rgba(255, 59, 106, 0.18), rgba(255, 176, 112, 0.10)); }
.cb-toast--info { border-color: rgba(92, 128, 255, 0.20); }
.cb-toast--info .cb-toast__ico { background: linear-gradient(135deg, rgba(92, 128, 255, 0.18), rgba(55, 240, 193, 0.10)); }
@media (prefers-reduced-motion: reduce) {
  .cb-toast { animation: none; transform: none; opacity: 1; }
  .cb-toast.is-leaving { animation: none; opacity: 0; }
}

/* Background video */
.cb-bg { position: fixed; inset: 0; z-index: -2; background: var(--bg); }
.cb-bg__v {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.55);
  transform: scale(1.02);
}
.cb-bg__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 650px at 18% 14%, rgba(55, 240, 193, 0.16), transparent 55%),
    radial-gradient(900px 650px at 82% 18%, rgba(255, 176, 112, 0.14), transparent 55%),
    radial-gradient(900px 650px at 60% 85%, rgba(92, 128, 255, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.12) 0%, rgba(7, 10, 16, 0.72) 60%, rgba(7, 10, 16, 0.92) 100%);
}
.cb-bg__grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.25;
}
@media (prefers-reduced-motion: reduce) {
  .cb-bg__v { display: none; }
}

/* Layout */
.cb-shell { min-height: 100vh; display: flex; flex-direction: column; }
.cb-main { flex: 1; padding: 26px 0 58px; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Minimal grid compatible with existing markup */
.row { display: flex; flex-wrap: wrap; gap: 18px; }
.col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-9 { flex: 1 1 100%; }
.col-sm-5, .col-sm-7, .col-sm-12 { flex: 1 1 100%; }
@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 calc(25% - 14px); }
  .col-md-4 { flex: 0 0 calc(33.333% - 12px); }
  .col-md-5 { flex: 0 0 calc(41.666% - 11px); }
  .col-md-6 { flex: 0 0 calc(50% - 9px); }
  .col-md-9 { flex: 0 0 calc(75% - 6px); }
  .col-sm-5 { flex: 0 0 calc(41.666% - 11px); }
  .col-sm-7 { flex: 0 0 calc(58.333% - 8px); }
  .col-sm-12 { flex: 0 0 100%; }
}

/* Header */
.cb-promoTop {
  border-bottom: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.42);
  backdrop-filter: blur(14px);
}
.cb-promoTop__inner {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cb-promoTop__text {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.1px;
}
.cb-promoTop__text strong { color: var(--ink); }

.cb-top {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border2);
  background: rgba(8, 10, 16, 0.58);
  backdrop-filter: blur(16px);
}
.cb-top__inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.cb-brand { display: inline-flex; align-items: center; gap: 10px; }
.cb-brand__logoWrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.cb-brand__logo {
  height: 110px;
  width: auto;
  display: block;
  filter: none;
}
.cb-brand__mark {
  font-family: var(--display);
  font-weight: 750;
  letter-spacing: 0.08em;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.18), rgba(255, 176, 112, 0.14));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.cb-brand__text { font-weight: 600; letter-spacing: 0.2px; }
.cb-nav { display: inline-flex; align-items: center; gap: 10px; }

/* Mobile menu */
.cb-burger {
  display: none;
  border: 1px solid rgba(246, 248, 255, 0.14);
  background: rgba(16, 20, 32, 0.28);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}
.cb-burger:hover { border-color: rgba(55, 240, 193, 0.18); }
.cb-burger__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(246, 248, 255, 0.86);
  border-radius: 4px;
}
.cb-burger__bar + .cb-burger__bar { margin-top: 4px; }

.cb-navOverlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 650px at 18% 14%, rgba(55, 240, 193, 0.12), transparent 55%),
    radial-gradient(900px 650px at 82% 18%, rgba(255, 176, 112, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.35) 0%, rgba(7, 10, 16, 0.62) 100%);
  backdrop-filter: blur(4px);
  z-index: 55;
  display: none;
}

.cb-nav__mobileHead {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px 12px;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 6px;
}
.cb-nav__mobileTitle { font-family: var(--display); font-weight: 900; }
.cb-navClose {
  border: 1px solid rgba(246, 248, 255, 0.14);
  background: rgba(16, 20, 32, 0.28);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
}
.cb-navClose:hover { border-color: rgba(55, 240, 193, 0.18); }

@media (max-width: 980px) {
  .cb-burger { display: inline-flex; flex-direction: column; justify-content: center; }
  .cb-top__inner { gap: 10px; }

  .cb-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(380px, 86vw);
    padding: 12px;
    border-left: 1px solid var(--border2);
    background: rgba(8, 10, 16, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transform: translateX(110%);
    transition: transform 220ms ease;
    overflow: auto;
  }
  body.cb.cb-navOpen .cb-nav { transform: translateX(0); }
  body.cb.cb-navOpen .cb-navOverlay { display: block; }
  .cb-nav__mobileHead { display: flex; }

  .cb-nav__link { justify-content: flex-start; }

  /* Make dropdown panels flow in the drawer instead of absolute-positioned overlays */
  .cb-dd__panel {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 10px;
    margin-top: 8px;
  }
  .cb-dd--list .cb-dd__panel { width: 100%; }
}
.cb-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 750;
  letter-spacing: 0.1px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}
.cb-nav__link:hover {
  color: var(--ink);
  text-decoration: none;
  border-color: rgba(55, 240, 193, 0.18);
  background: rgba(16, 20, 32, 0.28);
}

.cb-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(246, 248, 255, 0.5);
  border-bottom: 2px solid rgba(246, 248, 255, 0.5);
  transform: rotate(45deg);
  margin-top: -2px;
}

/* Mega menu */
.cb-dd { position: relative; }
.cb-dd__btn { border: 1px solid transparent; background: transparent; }
.cb-dd__panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 12px);
  width: min(1180px, calc(100vw - 24px));
  padding: 14px;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(8, 10, 16, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: none;
  z-index: 60;
}
.cb-dd.is-open .cb-dd__panel { display: block; }
.cb-dd.is-open .cb-caret { transform: rotate(225deg); }

/* Compact list dropdown (Cloud Hosting Services) */
.cb-dd--list .cb-dd__panel {
  left: auto;
  right: 0;
  transform: none;
  width: min(420px, calc(100vw - 24px));
  padding: 12px;
}
.cb-listMenu { display: grid; gap: 10px; }
.cb-menuItem {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(246, 248, 255, 0.12);
  background: rgba(16, 20, 32, 0.32);
}
.cb-menuItem:hover {
  text-decoration: none;
  border-color: rgba(55, 240, 193, 0.18);
  background: rgba(16, 20, 32, 0.46);
}
.cb-menuItem__ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.18), rgba(92, 128, 255, 0.12));
  display: grid;
  place-items: center;
}
.cb-menuItem__ico svg { width: 22px; height: 22px; stroke: rgba(246, 248, 255, 0.92); }
.cb-menuItem__text { display: grid; gap: 2px; }
.cb-menuItem__title { font-weight: 900; color: rgba(246, 248, 255, 0.92); }
.cb-menuItem__desc { color: var(--faint); font-size: 13px; font-weight: 650; }

.cb-mega {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 880px) {
  .cb-mega { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1120px) {
  .cb-mega { grid-template-columns: repeat(6, 1fr); }
}
.cb-mega__col {
  border-radius: var(--r);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.32);
  padding: 12px;
}
.cb-mega__title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 900;
  margin-bottom: 8px;
}
.cb-mega__link {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid transparent;
}
.cb-mega__link:hover {
  color: var(--ink);
  text-decoration: none;
  border-color: rgba(55, 240, 193, 0.18);
  background: rgba(16, 20, 32, 0.42);
}

@media (max-width: 879px) {
  .cb-dd__panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }
}

@media (min-width: 900px) {
  .cb-brand__logo { height: 150px; }
}

/* Type */
h1, h2, h3, h4, h5 { font-family: var(--display); margin: 0 0 12px; letter-spacing: 0.2px; }
p { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 650;
  letter-spacing: 0.15px;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.42);
  color: var(--ink);
  cursor: pointer;
  transition: transform 140ms ease, filter 140ms ease, background 140ms ease;
}
.cb-btnIco { width: 18px; height: 18px; display: inline-flex; }
.cb-btnIco svg { width: 18px; height: 18px; stroke: currentColor; }
.btn:hover { filter: brightness(1.03); transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 12px; font-size: 13px; }
.btn-lg { padding: 12px 16px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  color: rgba(8, 10, 16, 0.92);
  border-color: rgba(55, 240, 193, 0.35);
  background: linear-gradient(135deg, rgba(55, 240, 193, 1), rgba(92, 128, 255, 0.85));
  box-shadow: 0 18px 55px rgba(55, 240, 193, 0.16);
}
.btn-ghost { background: rgba(16, 20, 32, 0.35); border-color: var(--border2); }

/* Motion + Interactivity */
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform 180ms ease, filter 180ms ease, background 180ms ease, box-shadow 180ms ease; }
  .btn-primary:hover { box-shadow: 0 22px 70px rgba(55, 240, 193, 0.22); }
}

.cb-hover {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}
.cb-hover:hover {
  transform: translateY(-3px);
  border-color: rgba(55, 240, 193, 0.22);
}

.cb-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.cb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards / tables / forms */
.card {
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.card.p-4 { padding: 18px; }
.card-header { padding: 14px 16px; border-bottom: 1px solid var(--border2); background: rgba(16, 20, 32, 0.35); border-top-left-radius: var(--r); border-top-right-radius: var(--r); }
.card-body { padding: 16px; }

.input {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--ink);
  background: rgba(10, 12, 18, 0.42);
  border: 1px solid var(--border2);
  outline: none;
}
.input:focus { border-color: rgba(55, 240, 193, 0.45); box-shadow: 0 0 0 3px rgba(55, 240, 193, 0.12); }

.cb-form { display: grid; gap: 12px; }
.cb-field { display: grid; gap: 6px; }
.cb-field__label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }

.form-control, .form-select { /* legacy class compatibility */
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--ink);
  background: rgba(10, 12, 18, 0.42);
  border: 1px solid var(--border2);
  outline: none;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(55, 240, 193, 0.45);
  box-shadow: 0 0 0 3px rgba(55, 240, 193, 0.12);
}

.table { width: 100%; border-collapse: collapse; border: 1px solid var(--border2); border-radius: var(--r); overflow: hidden; }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--border2); vertical-align: top; }
.table th { text-align: left; color: rgba(246, 248, 255, 0.92); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.table-striped tbody tr:nth-child(odd) td { background: rgba(16, 20, 32, 0.28); }
.table-bordered th, .table-bordered td { border-right: 1px solid var(--border2); }

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
}
.bg-success { border-color: rgba(55, 240, 193, 0.28); background: rgba(55, 240, 193, 0.18); }
.bg-danger { border-color: rgba(255, 59, 106, 0.28); background: rgba(255, 59, 106, 0.16); }
.bg-warning { border-color: rgba(255, 176, 112, 0.24); background: rgba(255, 176, 112, 0.14); }

/* Heartbeat pulse (used for Active status) */
@keyframes cbBadgeHeartbeat {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(55, 240, 193, 0.0); }
  12% { transform: scale(1.06); box-shadow: 0 0 0 0 rgba(55, 240, 193, 0.0); }
  22% { transform: scale(1); box-shadow: 0 0 0 0 rgba(55, 240, 193, 0.0); }
  34% { transform: scale(1.08); box-shadow: 0 0 0 0 rgba(55, 240, 193, 0.0); }
  44% { transform: scale(1); box-shadow: 0 0 0 0 rgba(55, 240, 193, 0.0); }
  100% { transform: scale(1); box-shadow: 0 0 0 14px rgba(55, 240, 193, 0.0); }
}
.cb-badgePulse {
  transform-origin: 50% 50%;
  animation: cbBadgeHeartbeat 2.2s ease-in-out infinite;
}
.bg-success.cb-badgePulse {
  box-shadow: 0 0 0 0 rgba(55, 240, 193, 0.24);
}
@media (prefers-reduced-motion: reduce) {
  .cb-badgePulse { animation: none !important; }
}

/* Modal */
.cb-modal { position: fixed; inset: 0; display: none; z-index: 80; }
.cb-modal.is-open { display: block; }
.cb-modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7); }
.cb-modal__panel {
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 8vh auto 0;
  border-radius: var(--r2);
  background: rgba(12, 14, 22, 0.78);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.cb-modal__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border2); }
.cb-modal__title { font-family: var(--display); font-size: 18px; }
.cb-x {
  border: 0;
  background: rgba(16, 20, 32, 0.35);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  border: 1px solid var(--border2);
}
.cb-x:hover { filter: brightness(1.05); }

/* Tabs (modal + dashboard) */
.cb-tabs { padding: 16px; }
.cb-tabs__bar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.cb-tabs__tab {
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  color: var(--faint);
  cursor: pointer;
  font-weight: 700;
}
.cb-tabs__tab.is-active {
  color: rgba(8, 10, 16, 0.92);
  border-color: rgba(55, 240, 193, 0.35);
  background: linear-gradient(135deg, rgba(55, 240, 193, 1), rgba(255, 176, 112, 0.85));
}
.cb-tabs__panel { display: none; }
.cb-tabs__panel.is-active { display: block; }

.cb-note {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border2);
  color: var(--faint);
  font-size: 13px;
}
.cb-note__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, rgba(55, 240, 193, 1), rgba(255, 176, 112, 1));
  box-shadow: 0 0 0 6px rgba(55, 240, 193, 0.08);
}

/* Back-to-top */
.cb-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: none;
}
.cb-fab.is-show { display: inline-flex; }

/* Cookie banner + preferences */
.cb-cookie {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 85;
  display: none;
}
.cb-cookie.is-show { display: block; }
.cb-cookie__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(8, 10, 16, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .cb-cookie__inner { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}
.cb-cookie__title { font-family: var(--display); font-size: 18px; margin-bottom: 6px; }
.cb-cookie__text { color: var(--muted); font-size: 13px; line-height: 1.45; }
.cb-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; }
@media (min-width: 900px) { .cb-cookie__actions { justify-content: flex-end; } }
.cb-cookie__links { margin-top: 8px; display: inline-flex; gap: 10px; align-items: center; }
.cb-cookie__links a { color: var(--accent); font-weight: 800; }
.cb-cookie__links a:hover { color: var(--accent2); text-decoration: none; }
.cb-cookie__sep { width: 4px; height: 4px; border-radius: 999px; background: rgba(246, 248, 255, 0.28); }

.cb-cookiePrefs { padding: 16px; }
.cb-cookiePrefs__p { color: var(--muted); margin: 0 0 12px; }
.cb-cookiePrefs__list { display: grid; gap: 10px; margin-bottom: 14px; }
.cb-cookieRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  padding: 12px 12px;
}
.cb-cookieRow__h { font-weight: 950; color: rgba(246, 248, 255, 0.92); }
.cb-cookieRow__d { color: var(--faint); font-size: 13px; margin-top: 2px; }
.cb-pillTiny {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(55, 240, 193, 0.22);
  background: rgba(55, 240, 193, 0.12);
  color: rgba(246, 248, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
}
.cb-switch {
  width: 44px;
  height: 26px;
  appearance: none;
  background: rgba(246, 248, 255, 0.14);
  border: 1px solid var(--border2);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  outline: none;
}
.cb-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(246, 248, 255, 0.9);
  transition: transform 160ms ease, background 160ms ease;
}
.cb-switch:checked {
  background: rgba(55, 240, 193, 0.22);
  border-color: rgba(55, 240, 193, 0.32);
}
.cb-switch:checked::after { transform: translateX(18px); background: rgba(8, 10, 16, 0.92); }

.cb-cookiePrefs__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cb-cookieFab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
  display: none;
}
.cb-cookieFab.is-show { display: inline-flex; }

.cb-turnstile { display: grid; justify-content: center; }

.cb-alert {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 650;
}
.cb-alert--danger {
  border-color: rgba(255, 59, 106, 0.28);
  background: rgba(255, 59, 106, 0.14);
  color: rgba(246, 248, 255, 0.92);
}

/* Client portal */
.cb-portalHero {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  backdrop-filter: blur(14px);
}
@media (min-width: 980px) {
  .cb-portalHero { grid-template-columns: 1.05fr 0.95fr; padding: 22px; }
}
.cb-portalHero__k {
  color: var(--faint);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.cb-portalHero__t {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.05;
}
.cb-portalHero__m { color: var(--muted); font-weight: 650; }
.cb-quickGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) { .cb-quickGrid { grid-template-columns: 1fr 1fr; } }
.cb-quick {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.38);
  box-shadow: var(--shadow);
  padding: 14px;
  text-align: left;
  cursor: pointer;
}
.cb-quick:hover { text-decoration: none; border-color: rgba(55, 240, 193, 0.18); }
.cb-quick__h { font-weight: 950; color: rgba(246, 248, 255, 0.92); margin-bottom: 6px; }
.cb-quick__p { color: var(--faint); font-weight: 650; font-size: 13px; margin: 0; }

.cb-panelHead { margin: 16px 0 10px; text-align: center; }
.cb-panelHead h2 { margin-bottom: 6px; }
.cb-panelHead p { margin: 0 auto; max-width: 74ch; }

.cb-tableWrap {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.24);
  box-shadow: var(--shadow);
  overflow: auto;
  padding: 8px;
}

/* Button group fallback (no Bootstrap) */
.btn-group { display: flex; flex-wrap: wrap; gap: 10px; }

.cb-serviceCard .card-body { padding: 16px; }

/* Invoice view */
.cb-invoiceWrap { padding: 10px 0 0; }
.cb-invoiceTop {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}
.cb-invoiceH {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.cb-invoiceSub { color: var(--muted); font-weight: 650; font-size: 14px; }
.cb-dotSep { display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: rgba(246,248,255,0.26); margin: 0 10px; transform: translateY(-1px); }
.cb-invoiceTop__right { display: grid; justify-items: end; gap: 8px; }
.cb-invoiceAmt { font-weight: 950; letter-spacing: -0.02em; font-size: 26px; }

.cb-invoiceGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 980px) {
  .cb-invoiceGrid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

.cb-invoiceCard {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(12, 14, 22, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 16px;
  overflow: hidden;
}
.cb-invoiceCard__head { display: grid; gap: 4px; margin-bottom: 10px; }
.cb-invoiceCard__title { font-family: var(--display); font-weight: 900; letter-spacing: -0.01em; font-size: 20px; }
.cb-invoiceCard__hint { color: var(--faint); font-weight: 650; font-size: 13px; }

.cb-kvGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .cb-kvGrid { grid-template-columns: 1fr 1fr; }
}
.cb-kv {
  border-radius: 16px;
  border: 1px solid rgba(246, 248, 255, 0.12);
  background: rgba(16, 20, 32, 0.28);
  padding: 12px;
}
.cb-kv__k { color: var(--faint); font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.cb-kv__v { margin-top: 6px; font-weight: 850; color: rgba(246, 248, 255, 0.94); }

.cb-invoiceActions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.cb-invoiceFine { margin-top: 10px; color: var(--faint); font-weight: 650; font-size: 13px; }
.cb-invoiceFine a { text-decoration: underline; text-underline-offset: 3px; }

.cb-invoiceDl { display: grid; gap: 10px; margin-top: 8px; }
.cb-invoicePreview {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(246, 248, 255, 0.12);
  overflow: hidden;
  background: rgba(8, 10, 16, 0.4);
}
.cb-invoicePreview iframe {
  width: 100%;
  height: min(560px, 70vh);
  border: 0;
  display: block;
}

.cb-empty {
  border-radius: 18px;
  border: 1px dashed rgba(246, 248, 255, 0.18);
  background: rgba(16, 20, 32, 0.20);
  padding: 14px;
}
.cb-empty__h { font-weight: 950; }
.cb-empty__p { margin-top: 6px; color: var(--muted); font-weight: 650; }

/* Pagination */
.cb-pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.cb-pageBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  color: var(--muted);
  font-weight: 850;
  text-decoration: none;
}
.cb-pageBtn:hover { text-decoration: none; color: var(--ink); border-color: rgba(55, 240, 193, 0.18); }
.cb-pageBtn.is-active {
  color: rgba(8, 10, 16, 0.92);
  border-color: rgba(55, 240, 193, 0.35);
  background: linear-gradient(135deg, rgba(55, 240, 193, 1), rgba(92, 128, 255, 0.85));
}
.cb-pageBtn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}
.cb-pageEll { color: var(--faint); font-weight: 900; padding: 0 4px; }

/* Utilities (minimal subset used in pages) */
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 18px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 18px; }
.mt-5 { margin-top: 24px; }
.lead { color: var(--muted); font-size: 16px; }
.display-5 { font-family: var(--display); font-size: 42px; line-height: 1; margin: 0; }
.g-4 { gap: 18px; }

/* Homepage sections (existing markup) */
.container-fluid { width: 100%; }
section { padding: 56px 0; }
@media (max-width: 576px) { section { padding: 34px 0; } }

/* Section surfaces: translucent panels so background video remains visible */
section.container-fluid {
  position: relative;
  isolation: isolate;
}
section.container-fluid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 650px at 18% 14%, rgba(55, 240, 193, 0.08), transparent 60%),
    radial-gradient(900px 650px at 82% 18%, rgba(255, 176, 112, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.14) 0%, rgba(7, 10, 16, 0.32) 60%, rgba(7, 10, 16, 0.18) 100%);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(10px);
}
/* Keep hero crisp: disable section surface overlay just for the hero section. */
section.container-fluid.cb-noSurface::before {
  display: none;
}
section.container-fluid > .container {
  position: relative;
  z-index: 1;
}

/* Legacy wrappers that are not <section> */
.key-featurecont,
.blog {
  position: relative;
  isolation: isolate;
}
.key-featurecont::before,
.blog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 650px at 18% 14%, rgba(55, 240, 193, 0.06), transparent 62%),
    radial-gradient(900px 650px at 82% 18%, rgba(255, 176, 112, 0.05), transparent 62%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.12) 0%, rgba(7, 10, 16, 0.28) 60%, rgba(7, 10, 16, 0.16) 100%);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(10px);
}
.key-featurecont > .container,
.blog > .container {
  position: relative;
  z-index: 1;
}

.cb-promo {
  border-bottom: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  backdrop-filter: blur(12px);
}
.cb-promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 720px) {
  .cb-promo__inner { flex-wrap: wrap; justify-content: center; text-align: center; }
}
.cb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(10, 12, 18, 0.35);
  color: var(--muted);
  font-weight: 700;
}
.cb-pill strong { color: var(--ink); }

.cb-heroSlider {
  position: relative;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background:
    radial-gradient(900px 650px at 18% 14%, rgba(55, 240, 193, 0.12), transparent 55%),
    radial-gradient(900px 650px at 82% 18%, rgba(255, 176, 112, 0.1), transparent 55%),
    linear-gradient(135deg, rgba(16, 20, 32, 0.7), rgba(12, 14, 22, 0.6));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.cb-heroSlider--text { background: transparent; }
.cb-heroSlides { position: relative; min-height: 520px; }
.cb-heroSlide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms ease;
}
.cb-heroSlide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cb-heroSplit {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}
@media (min-width: 980px) {
  .cb-heroSplit { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.cb-heroSplit__media {
  border-radius: calc(var(--r2) - 6px);
  border: 1px solid var(--border2);
  overflow: hidden;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
  background: rgba(10, 12, 18, 0.35);
}
.cb-heroSplit__media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.02);
}
.cb-heroSplit__media--art {
  background:
    radial-gradient(700px 520px at 22% 30%, rgba(55, 240, 193, 0.16), transparent 60%),
    radial-gradient(700px 520px at 78% 30%, rgba(255, 176, 112, 0.12), transparent 60%),
    rgba(10, 12, 18, 0.35);
  padding: 14px;
}
.cb-heroSplit__media--art img {
  max-height: 520px;
  object-fit: contain;
  transform: none;
  filter: none;
}
.cb-heroSplit__body { display: grid; place-items: center; }

/* Text-only hero transitions with static PNG */
.cb-heroStatic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}
@media (min-width: 980px) {
  .cb-heroStatic { grid-template-columns: 1fr 1fr; padding: 22px; }
}
.cb-heroStatic__media {
  border-radius: calc(var(--r2) - 6px);
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
}
.cb-heroStatic__media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  filter: none;
}
.cb-heroStatic__text { width: 100%; }
.cb-heroSlider--text .cb-heroSlides { min-height: 430px; }
.cb-heroSlider--text .cb-heroSlide { padding: 0; }

.cb-heroCopy--plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  text-align: center;
}
.cb-heroSlider--text .cb-ctaRow,
.cb-heroSlider--text .cb-chips { justify-content: center; }
.cb-heroSlider--text .cb-chips { margin-left: auto; margin-right: auto; }
.cb-heroCopy--plain h1,
.cb-heroCopy--plain h2 { text-shadow: 0 18px 70px rgba(0,0,0,0.65); }
.cb-heroCopy--plain p { text-shadow: 0 16px 60px rgba(0,0,0,0.55); }

/* Hero pricing teaser */
.cb-priceTeaser {
  width: min(980px, 100%);
  margin: 16px auto 0;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.34);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
  backdrop-filter: blur(14px);
}
.cb-priceTeaser--pulse {
  border-color: rgba(55, 240, 193, 0.22);
  background:
    radial-gradient(900px 650px at 18% 14%, rgba(55, 240, 193, 0.1), transparent 55%),
    radial-gradient(900px 650px at 82% 18%, rgba(255, 176, 112, 0.08), transparent 55%),
    rgba(16, 20, 32, 0.34);
}
@media (prefers-reduced-motion: no-preference) {
  .cb-priceTeaser--pulse {
    animation: cbHeartbeat 4.6s ease-in-out infinite;
    transform-origin: center;
  }
}
@keyframes cbHeartbeat {
  0%, 86%, 100% { transform: scale(1); }
  90% { transform: scale(1.012); }
  93% { transform: scale(1); }
  96% { transform: scale(1.018); }
  98% { transform: scale(1); }
}
.cb-priceTeaser__head { margin-bottom: 12px; }
.cb-priceTeaser__title { font-family: var(--display); font-size: 22px; margin-bottom: 4px; }
.cb-priceTeaser__sub { color: var(--muted); }
.cb-priceMiniGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 12px 0 14px;
}
@media (min-width: 900px) { .cb-priceMiniGrid { grid-template-columns: repeat(3, 1fr); } }
.cb-priceMini {
  display: grid;
  gap: 6px;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  padding: 14px;
  text-decoration: none;
}
.cb-priceMini:hover { text-decoration: none; }
.cb-priceMini__tier {
  font-weight: 950;
  letter-spacing: 0.1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cb-priceMini__from { font-family: var(--display); font-size: 18px; }
.cb-priceMini__meta { color: var(--faint); font-weight: 650; font-size: 13px; }
.cb-priceMini__specs {
  margin-top: 6px;
  border-top: 1px solid var(--border2);
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  text-align: left;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}
@media (min-width: 520px) {
  .cb-priceMini__specs { grid-template-columns: 1fr 1fr; }
}
.cb-priceMini__specs span {
  display: inline-block;
  min-width: 62px;
  color: var(--faint);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.cb-priceTeaser__cta { display: flex; justify-content: center; }

.cb-badgeRed {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 59, 106, 0.3);
  background: rgba(255, 59, 106, 0.18);
  color: rgba(246, 248, 255, 0.95);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cb-heroCopy {
  width: min(560px, 100%);
  border-radius: calc(var(--r2) - 2px);
  padding: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 16, 0.52);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
}
.cb-heroHot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(55, 240, 193, 0.22);
  background: rgba(16, 20, 32, 0.35);
  color: rgba(246, 248, 255, 0.92);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 12px;
}
.cb-heroHot__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, rgba(55, 240, 193, 1), rgba(255, 176, 112, 1));
  box-shadow: 0 0 0 7px rgba(55, 240, 193, 0.1);
}
.cb-heroSub {
  margin-top: 10px;
  color: var(--faint);
  font-size: 14px;
  font-weight: 650;
}
.cb-heroCopy p { margin-left: auto; margin-right: auto; }
.cb-heroCopy h1 { font-size: clamp(30px, 3.8vw, 52px); line-height: 1.02; }
.cb-heroCopy h2 { font-size: clamp(24px, 3.1vw, 42px); line-height: 1.05; }
.cb-heroCopy p { margin: 0 auto; max-width: 60ch; }
@media (min-width: 900px) {
  .cb-heroSlides { min-height: 560px; }
  .cb-heroCopy { padding: 22px 26px; }
}

.cb-sliderBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(10, 12, 18, 0.38);
  color: var(--ink);
  padding: 10px 10px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  z-index: 6;
}
.cb-sliderBtn:hover { filter: brightness(1.05); }
.cb-sliderBtn--prev { left: 14px; }
.cb-sliderBtn--next { right: 14px; }
.cb-sliderBtn__ico { width: 20px; height: 20px; display: block; }
@media (max-width: 720px) {
  .cb-sliderBtn { display: none; }
}

.cb-sliderDots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}
.cb-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(246, 248, 255, 0.18);
  cursor: pointer;
}
.cb-dot.is-active {
  background: radial-gradient(circle at 40% 40%, rgba(55, 240, 193, 1), rgba(255, 176, 112, 1));
  border-color: rgba(55, 240, 193, 0.35);
  box-shadow: 0 0 0 6px rgba(55, 240, 193, 0.1);
}
.cb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cb-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, rgba(55, 240, 193, 1), rgba(255, 176, 112, 1));
  box-shadow: 0 0 0 8px rgba(55, 240, 193, 0.08);
}
.cb-ctaRow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.cb-heroSlide__inner .cb-ctaRow { justify-content: center; }
.cb-heroSlide__inner .cb-chips { justify-content: center; }
.cb-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cb-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.cb-trust {
  margin-top: 16px;
  border-top: 1px solid var(--border2);
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.cb-trust--below { margin-top: 16px; border-top: 0; padding-top: 0; }
@media (min-width: 768px) {
  .cb-trust { grid-template-columns: repeat(3, 1fr); }
}
.cb-stat {
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.28);
  border-radius: var(--r);
  padding: 12px;
}
.cb-stat__v { font-family: var(--display); font-size: 22px; margin: 0 0 4px; }
.cb-stat__k { color: var(--faint); font-size: 13px; margin: 0; }

.cb-stat__v .cb-count { display: inline-block; min-width: 2ch; }

.cb-grid3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .cb-grid3 { grid-template-columns: repeat(3, 1fr); }
}

.cb-featureCard {
  border-radius: var(--r);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.42);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(14px);
  text-align: center;
}
.cb-featureCard h3 { font-size: 20px; margin-bottom: 8px; }
.cb-featureCard p { margin: 0; }

.cb-spark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.18), rgba(255, 176, 112, 0.12));
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.cb-spark svg { width: 22px; height: 22px; stroke: rgba(246, 248, 255, 0.9); }

.cb-pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .cb-pricing { grid-template-columns: repeat(3, 1fr); }
}

.cb-plan {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(14px);
}
.cb-plan__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  color: var(--faint);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cb-plan__price { font-family: var(--display); font-size: 30px; margin: 12px 0 6px; }
.cb-plan__list { margin: 12px 0 16px; padding-left: 18px; color: var(--muted); }
.cb-plan__list li { margin-bottom: 8px; }

.cb-faq {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}
.cb-faq details {
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  box-shadow: var(--shadow);
  padding: 14px 16px;
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.cb-faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cb-faq summary::-webkit-details-marker { display: none; }
.cb-faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid rgba(246, 248, 255, 0.68);
  border-bottom: 2px solid rgba(246, 248, 255, 0.68);
  transform: rotate(-45deg);
  transition: transform 200ms ease, border-color 200ms ease;
}
.cb-faq details:hover { transform: translateY(-2px); border-color: rgba(55, 240, 193, 0.18); }
.cb-faq details[open] { border-color: rgba(55, 240, 193, 0.22); }
.cb-faq details[open] summary::after { transform: rotate(45deg); border-color: rgba(55, 240, 193, 0.85); }
.cb-faq p { margin: 10px 0 0; }

.cb-partnerGrid .blog-singe {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .cb-partnerGrid .blog-singe { grid-template-columns: 0.8fr 1.2fr; }
}
.cb-partnerGrid .blog-img-tab { padding: 16px; }
.cb-partnerGrid .blog-img-tab img { max-height: 110px; }

/* Subtle "interactive" hover accents for partner cards */
.blog .blog-singe.cb-hover:hover {
  background: rgba(16, 20, 32, 0.55);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.7);
}

/* Hero image (right card) */
.cb-heroImg {
  width: 100%;
  border-radius: calc(var(--r2) - 8px);
  border: 1px solid var(--border2);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  filter: saturate(1.05) contrast(1.05);
}

/* Media grid */
.cb-mediaGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .cb-mediaGrid { grid-template-columns: repeat(3, 1fr); }
}
.cb-media {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cb-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.06);
}
.cb-media__body {
  padding: 14px 14px 16px;
  text-align: center;
}
.cb-media__body h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.cb-media__body p {
  margin: 0;
}

.text-highlight { color: var(--accent); }
.cb-ico { display: inline-flex; width: 18px; height: 18px; vertical-align: -3px; margin-right: 8px; color: var(--accent); }
.cb-ico svg { width: 100%; height: 100%; stroke: currentColor; }

.banner-container { padding: 66px 0 26px; }
.banner-container .banner-txt h1 { font-size: clamp(32px, 3.6vw, 54px); line-height: 1.02; margin-bottom: 18px; }
.banner-container .banner-txt p, .banner-container .banner-txt li { color: var(--muted); font-weight: 500; }
.banner-container .banner-txt ul { padding-left: 18px; margin: 10px 0 18px; }
.banner-container .banner-img { text-align: center; }
.banner-container .banner-img img { max-width: 420px; filter: drop-shadow(0 20px 80px rgba(0,0,0,0.55)); }

.key-featurecont { margin-top: -18px; }
.key-featurecont .key-cover {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--border2);
  background: var(--card2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  flex-direction: column;
  text-align: center;
}
.key-featurecont .logo-cc {
  width: 64px; height: 64px; flex: 0 0 64px;
  display: grid; place-items: center;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
}
.key-featurecont .logo-cc img { width: 42px; height: 42px; object-fit: contain; display: block; }
.key-featurecont .text-cc p { margin: 0; color: var(--muted); }

/* Section titles (legacy .section-title markup) */
.section-title { width: 100%; text-align: center; justify-content: center; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { margin: 0 auto; max-width: 70ch; }

/* Steps */
.cb-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .cb-steps { grid-template-columns: repeat(3, 1fr); }
}
.cb-step {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.38);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(14px);
}
.cb-step__n {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.2), rgba(92, 128, 255, 0.14));
}
.cb-step h3 { font-size: 20px; margin-bottom: 8px; }
.cb-step p { margin: 0; }

/* Light sections */
.cb-section--light {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(8, 10, 16, 0.96);
}
.cb-section--light h1,
.cb-section--light h2,
.cb-section--light h3,
.cb-section--light h4 { color: rgba(8, 10, 16, 0.96); }
.cb-section--light p { color: rgba(8, 10, 16, 0.72); }
.cb-section--light a { color: rgba(8, 10, 16, 0.92); }
.cb-section--light .btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(8, 10, 16, 0.14);
}
.cb-section--light .btn-primary { color: rgba(8, 10, 16, 0.92); }
.cb-section--light .cb-plan,
.cb-section--light .cb-faq details {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(8, 10, 16, 0.14);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.12);
}
.cb-section--light .cb-plan__tag {
  background: rgba(8, 10, 16, 0.06);
  border-color: rgba(8, 10, 16, 0.14);
  color: rgba(8, 10, 16, 0.72);
}
.cb-section--light .cb-plan__list { color: rgba(8, 10, 16, 0.72); }
.cb-section--light .cb-dot { border-color: rgba(8, 10, 16, 0.18); background: rgba(8, 10, 16, 0.12); }

.about-coo, .features, .blog { background: transparent; }
.feature-col {
  border: 1px solid var(--border2);
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: var(--r);
  padding: 22px;
  text-align: center;
}
.feature-col img { max-height: 86px; object-fit: contain; display: block; margin: 0 auto 10px; }

.about-row { align-items: center; justify-content: center; }
.about-img { text-align: center; }
.about-img img { max-width: 460px; margin: 0 auto; display: block; }
.about-text { text-align: center; }
.about-featur ul { list-style: none; padding: 0; margin: 16px auto 0; max-width: 72ch; text-align: left; }
.about-featur li { margin: 10px 0; }
@media (min-width: 960px) {
  .about-text { text-align: left; }
}

/* New "Why Us" split section */
.cb-why { padding-top: 58px; }
.cb-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
@media (min-width: 960px) {
  .cb-split { grid-template-columns: 0.95fr 1.05fr; gap: 22px; }
}
.cb-split__media {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.42);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cb-split__media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.06);
}
.cb-split__body { text-align: center; }
.cb-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}
.cb-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.cb-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .cb-grid2 { grid-template-columns: 1fr 1fr; }
}
.cb-mini {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.38);
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(14px);
}
.cb-mini h3 { font-size: 18px; margin-bottom: 8px; }
.cb-mini p { margin: 0; }

/* Solution pages */
.cb-pageHero {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(16, 20, 32, 0.58), rgba(12, 14, 22, 0.52));
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(14px);
}
@media (min-width: 980px) {
  .cb-pageHero { grid-template-columns: 1fr 1fr; padding: 22px; }
}
.cb-pageHero__media {
  border-radius: calc(var(--r2) - 6px);
  border: 1px solid var(--border2);
  overflow: hidden;
  background: rgba(10, 12, 18, 0.35);
}
.cb-pageHero__media img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.02);
}
.cb-pageHero__body { display: grid; place-items: center; }
@media (min-width: 980px) { .cb-pageHero__body { place-items: start; } }

/* Catalog */
.cb-catalogControls {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 14px;
  margin-top: 14px;
}
.cb-catalogControls__row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cb-catalogSearch {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(246, 248, 255, 0.12);
  background: rgba(10, 12, 18, 0.42);
  padding: 8px 10px;
}
.cb-catalogSearch__ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.14), rgba(92, 128, 255, 0.10));
  display: grid;
  place-items: center;
}
.cb-catalogSearch__ico svg { width: 22px; height: 22px; stroke: rgba(246, 248, 255, 0.92); }
.cb-catalogSearch .input {
  border: 0;
  background: transparent;
  padding: 10px 0;
  outline: none;
  width: 100%;
}
.cb-catalogFilters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cb-filterPill {
  border-radius: 999px;
  border: 1px solid rgba(246, 248, 255, 0.14);
  background: rgba(16, 20, 32, 0.22);
  color: var(--muted);
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}
.cb-filterPill:hover { color: var(--ink); border-color: rgba(55, 240, 193, 0.18); text-decoration: none; }
.cb-filterPill.is-active {
  color: rgba(8, 10, 16, 0.92);
  border-color: rgba(55, 240, 193, 0.35);
  background: linear-gradient(135deg, rgba(55, 240, 193, 1), rgba(92, 128, 255, 0.85));
}
.cb-catalogControls__hint { margin-top: 10px; color: var(--faint); font-weight: 650; font-size: 13px; text-align: center; }

.cb-prodGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 820px) {
  .cb-prodGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1120px) {
  .cb-prodGrid { grid-template-columns: repeat(3, 1fr); }
}
.cb-prodCard {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.78), rgba(16, 20, 32, 0.40));
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  display: grid;
  grid-template-rows: 150px 1fr;
  min-height: 360px;
}
.cb-prodCard:hover { text-decoration: none; }
.cb-prodCard__media { position: relative; }
.cb-prodCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.82);
  transform: scale(1.02);
}
.cb-prodCard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,10,16,0.10) 0%, rgba(7,10,16,0.55) 100%);
}
.cb-prodCard__body { padding: 14px; display: grid; gap: 10px; align-content: start; }
.cb-prodCard__top { display: grid; gap: 10px; }
.cb-prodPill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(246, 248, 255, 0.14);
  background: rgba(16, 20, 32, 0.28);
  color: var(--muted);
  padding: 6px 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.cb-prodCard__h { font-family: var(--display); font-weight: 900; letter-spacing: -0.01em; font-size: 20px; }
.cb-prodCard__p { color: var(--muted); font-weight: 650; line-height: 1.5; }
.cb-prodCard__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(246, 248, 255, 0.12);
  background: rgba(16, 20, 32, 0.22);
  padding: 10px 12px;
}
.cb-prodCard__ctaText { font-weight: 950; color: rgba(246, 248, 255, 0.92); }
.cb-prodCard__ctaIco svg { width: 18px; height: 18px; stroke: rgba(246, 248, 255, 0.9); }
.cb-prodCard.is-hidden { display: none; }

.cb-bulletGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .cb-bulletGrid { grid-template-columns: 1fr 1fr; }
}
.cb-bullet {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.38);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(14px);
}
.cb-bullet__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, rgba(55, 240, 193, 1), rgba(255, 176, 112, 1));
  box-shadow: 0 0 0 6px rgba(55, 240, 193, 0.08);
  margin-top: 5px;
  flex: 0 0 10px;
}
.cb-bullet__text { color: var(--muted); font-weight: 650; }

.cb-ctaBand {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.16), rgba(92, 128, 255, 0.12));
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}
.cb-ctaBand__title { font-family: var(--display); font-size: 26px; margin: 0 0 6px; }
.cb-ctaBand__copy { color: var(--muted); margin: 0 0 14px; }

/* Trust / ratings / awards / testimonials */
.cb-ratings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 900px) {
  .cb-ratings { grid-template-columns: repeat(3, 1fr); }
}
.cb-ratingCard {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(14px);
}
.cb-ratingCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.cb-logoPill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.35);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 13px;
}
.cb-stars { display: inline-flex; gap: 6px; }
.cb-star {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: radial-gradient(circle at 40% 40%, rgba(55, 240, 193, 1), rgba(255, 176, 112, 1));
  clip-path: polygon(50% 0%, 62% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 72%, 21% 91%, 32% 57%, 2% 35%, 38% 35%);
  box-shadow: 0 0 0 5px rgba(55, 240, 193, 0.06);
}
.cb-star--empty { background: rgba(246, 248, 255, 0.14); box-shadow: none; }
.cb-star--half {
  background: linear-gradient(90deg, rgba(55, 240, 193, 1) 0 50%, rgba(246, 248, 255, 0.14) 50% 100%);
  box-shadow: 0 0 0 5px rgba(55, 240, 193, 0.06);
}
.cb-ratingCard__value {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 6px;
}
.cb-ratingCard__meta { font-family: var(--sans); font-size: 13px; color: var(--faint); font-weight: 800; }
.cb-ratingCard__tag { color: var(--muted); font-weight: 650; }

.cb-awards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
@media (min-width: 900px) {
  .cb-awards { grid-template-columns: repeat(6, 1fr); }
}
.cb-award {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.34);
  box-shadow: var(--shadow);
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(14px);
}
.cb-award__logo {
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(246, 248, 255, 0.92);
  margin-bottom: 8px;
}
.cb-award__title { font-weight: 800; color: var(--muted); font-size: 13px; }
.cb-award__year { margin-top: 8px; font-weight: 900; color: rgba(246, 248, 255, 0.92); }

.cb-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto;
}
@media (min-width: 900px) { .cb-metrics { grid-template-columns: repeat(3, 1fr); } }
.cb-metric {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.38);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(14px);
}
.cb-metric__ico {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.18), rgba(255, 176, 112, 0.12));
  display: grid;
  place-items: center;
}
.cb-metric__ico svg { width: 24px; height: 24px; stroke: rgba(246, 248, 255, 0.9); }
.cb-metric__v { font-family: var(--display); font-size: 34px; }
.cb-metric__k { color: var(--faint); font-weight: 800; }

.cb-testimonials {
  width: min(980px, 100%);
  margin: 18px auto 0;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(14px);
  position: relative;
}
.cb-testimonials__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.cb-testimonials__title { font-family: var(--display); font-size: 22px; }
.cb-testimonials__hint { color: var(--faint); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.cb-quote { display: none; }
.cb-quote.is-active { display: block; }
.cb-quote p { margin: 0 auto 10px; max-width: 72ch; font-size: 16px; }
.cb-quote__by { font-weight: 900; color: rgba(246, 248, 255, 0.92); }
.cb-quote__role { color: var(--faint); font-weight: 800; margin-left: 8px; }
.cb-testimonials .cb-sliderDots { position: static; margin-top: 12px; }

/* Pricing page */
.cb-priceHero {
  width: min(980px, 100%);
  margin: 0 auto 18px;
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(55, 240, 193, 0.14), rgba(92, 128, 255, 0.1));
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
@media (min-width: 900px) { .cb-priceHero { grid-template-columns: 1.2fr 0.8fr; } }
.cb-priceHero__copy p { color: var(--muted); }
.cb-priceHero__cta { display: grid; gap: 10px; }

.cb-tabs--wide .cb-tabs__bar {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .cb-tabs--wide .cb-tabs__bar { grid-template-columns: repeat(3, 1fr); }
}
.cb-tierHead { text-align: center; margin: 10px auto 14px; max-width: 78ch; }
.cb-tierHead h3 { margin-bottom: 6px; }
.cb-tierHead p { margin: 0; }
.cb-tierFoot { margin-top: 14px; color: var(--faint); text-align: center; font-size: 13px; }

.cb-priceGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) { .cb-priceGrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1120px) { .cb-priceGrid { grid-template-columns: repeat(5, 1fr); } }

.cb-priceCard {
  border-radius: var(--r2);
  border: 1px solid var(--border2);
  background: linear-gradient(135deg, rgba(12, 14, 22, 0.72), rgba(16, 20, 32, 0.42));
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(14px);
  display: grid;
  gap: 10px;
}
.cb-priceCard__name { font-weight: 950; color: rgba(246, 248, 255, 0.92); }
.cb-priceCard__price { font-family: var(--display); font-size: 26px; }
.cb-priceCard__note { color: var(--faint); font-weight: 800; font-size: 13px; }
.cb-priceCard__meta {
  display: grid;
  gap: 6px;
  text-align: left;
  border-top: 1px solid var(--border2);
  padding-top: 10px;
  color: var(--muted);
  font-weight: 650;
}
.cb-priceKey {
  display: inline-block;
  min-width: 72px;
  color: var(--faint);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.blog .blog-singe {
  border: 1px solid var(--border2);
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: var(--r);
  overflow: hidden;
}
.blog .blog-img-tab { padding: 14px; display: grid; place-items: center; }
.blog .blog-img-tab img {
  width: 100%;
  max-height: 140px;        /* fixes "too large" cloud partners images */
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35));
}
.blog .blog-content-tab { padding: 14px; text-align: center; }
.blog .blog-content-tab h2 { margin-bottom: 8px; font-size: 20px; }
.blog .blog-content-tab a { color: var(--accent); font-weight: 800; }
.blog .blog-content-tab a:hover { color: var(--accent2); }

/* Footer */
.cb-footer {
  padding: 44px 0 26px;
  border-top: 1px solid var(--border2);
  background: rgba(8, 10, 16, 0.62);
  backdrop-filter: blur(14px);
}
.cb-footer__title { font-family: var(--display); font-size: 18px; margin: 0 0 12px 0; }
.cb-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.cb-footer__links a { color: var(--muted); }
.cb-footer__links a:hover { color: var(--ink); }
.cb-footer__support { border: 1px solid var(--border2); border-radius: var(--r); background: rgba(16, 20, 32, 0.34); padding: 14px; }
.cb-footer__label { color: var(--faint); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.cb-footer__email { display: inline-block; margin-top: 6px; color: var(--ink); font-weight: 700; }
.cb-footer__fineprint { margin-top: 10px; color: var(--faint); font-size: 13px; }
.cb-footer__bottom {
  display: flex; align-items: center; gap: 10px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border2);
  color: var(--faint); font-size: 14px;
}
.cb-footer__sep { width: 4px; height: 4px; border-radius: 999px; background: rgba(246, 248, 255, 0.28); }

/* Simple floating animation used by homepage banner image */
.animated-image { animation: cbFloat 3.2s ease-in-out infinite; }
@keyframes cbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Footer-above legacy strip (index.php) */
.footer-ablove {
  margin-top: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: rgba(16, 20, 32, 0.28);
  backdrop-filter: blur(12px);
  color: var(--muted);
}
