/* =================================================
   Switchboard marketing site — blue / enterprise
   ================================================= */

.sb-page {
  background: #080E1A;
  color: #F0F4FF;
  min-height: 100vh;
  font-family: "Poppins", system-ui, sans-serif;
  scroll-behavior: smooth;
}
.sb-page * { box-sizing: border-box; }

.sb-container {
  width: min(100% - var(--side), 1200px);
  margin-inline: auto;
}

.sb-section {
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
}
.sb-section-alt {
  background: #0a1226;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ====== Typography ====== */
.sb-h1 {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 22px 0 22px;
  text-wrap: balance;
}
.sb-h1-accent {
  color: #3D82FF;
  font-style: italic;
  font-family: "Poppins", serif;
  font-weight: 500;
}
.sb-h2 {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 16px 0 0;
  text-wrap: balance;
}
.sb-h2 em {
  font-family: "Poppins", serif;
  font-style: italic;
  font-weight: 500;
  color: #3D82FF;
}
.sb-h3 {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 14px;
}
.sb-eyebrow {
  font-family: "DM Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3D82FF;
  margin-bottom: 8px;
}
.sb-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #8A9BBF;
  line-height: 1.65;
  max-width: 60ch;
}
.sb-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #3D82FF;
  background: rgba(0, 87, 255, 0.08);
  border: 1px solid rgba(0, 87, 255, 0.3);
}

/* ====== Nav ====== */
.sb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.sb-header.scrolled {
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: #1A2844;
}
.sb-nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
  padding: 0 calc(var(--side) / 2);
}
.sb-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.sb-brand-text {
  font-family: "Michroma", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
}
.sb-nav-links {
  display: flex;
  gap: clamp(14px, 1.6vw, 28px);
  margin-left: auto;
}
.sb-nav-links a {
  color: #8A9BBF;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.sb-nav-links a:hover { color: #fff; }
@media (max-width: 820px) {
  .sb-nav-links { display: none; }
}

/* ====== Buttons ====== */
.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.sb-btn:hover { transform: translateY(-1px); }
.sb-btn-lg { padding: 16px 28px; font-size: 14px; }
.sb-btn-sm { padding: 8px 14px; font-size: 12px; }
.sb-btn-block { width: 100%; justify-content: center; }
.sb-btn-primary {
  background: #0057FF;
  color: #fff;
  box-shadow: 0 6px 24px -6px rgba(0, 87, 255, 0.55);
}
.sb-btn-primary:hover {
  background: #3D82FF;
  box-shadow: 0 10px 30px -6px rgba(0, 87, 255, 0.7);
}
.sb-btn-outline {
  background: transparent;
  color: #3D82FF;
  border-color: rgba(0, 87, 255, 0.4);
}
.sb-btn-outline:hover {
  background: rgba(0, 87, 255, 0.08);
  border-color: #3D82FF;
}
.sb-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}
.sb-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.sb-btn-light {
  background: white;
  color: #0057FF;
}
.sb-btn-light:hover { background: #f1f5f9; }

/* ====== Hero ====== */
.sb-hero {
  position: relative;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.sb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(0, 87, 255, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(61, 130, 255, 0.1), transparent 60%);
}
.sb-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.sb-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
}
@media (max-width: 900px) {
  .sb-hero-grid { grid-template-columns: 1fr; }
}
.sb-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.sb-social-proof {
  margin-top: 36px;
  color: #8A9BBF;
  font-size: 13px;
}
.sb-social-proof strong { color: #F0F4FF; font-weight: 500; }

/* ====== Command Dashboard mockup ====== */
.sb-dash-card {
  background: #0D1526;
  border: 1px solid #1A2844;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 40px 80px -20px rgba(0, 87, 255, 0.35);
}
.sb-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #1A2844;
}
.sb-dash-title {
  font-family: "Michroma", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F0F4FF;
}
.sb-dash-time {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: #8A9BBF;
}
.sb-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 0;
}
.sb-dash-stat {
  background: rgba(0, 87, 255, 0.06);
  border: 1px solid rgba(0, 87, 255, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
}
.sb-dash-stat-warn {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.25);
}
.sb-dash-stat-good {
  background: rgba(26, 219, 138, 0.06);
  border-color: rgba(26, 219, 138, 0.25);
}
.sb-dash-stat-num {
  font-family: "Michroma", sans-serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.005em;
}
.sb-dash-stat-warn .sb-dash-stat-num { color: #F59E0B; }
.sb-dash-stat-good .sb-dash-stat-num { color: #1ADB8A; }
.sb-dash-stat-label {
  font-size: 10px;
  color: #8A9BBF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.sb-dash-section-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A9BBF;
  margin: 12px 0 8px;
}
.sb-dash-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sb-dash-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  font-size: 12px;
  color: #dbe1f0;
}
.sb-dash-row strong { color: #fff; font-weight: 500; }
.sb-dash-row-icon { font-size: 14px; }
.sb-dash-row-text { flex: 1; }
.sb-dash-row-time {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: #8A9BBF;
}

.sb-dash-pipeline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.sb-pipe-step {
  flex: 1;
  background: rgba(0, 87, 255, 0.06);
  border: 1px solid rgba(0, 87, 255, 0.18);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.sb-pipe-num {
  font-family: "Michroma", sans-serif;
  font-size: 16px;
  color: #3D82FF;
}
.sb-pipe-label {
  font-size: 9px;
  color: #8A9BBF;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.sb-pipe-arrow {
  color: #1A2844;
  font-size: 16px;
}

/* ====== Problem ====== */
.sb-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.sb-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.sb-pain-card {
  background: #0D1526;
  border: 1px solid #1A2844;
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  height: 100%;
}
.sb-pain-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.sb-pain-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  color: #fff;
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.sb-pain-desc {
  color: #8A9BBF;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.sb-transition-line {
  margin-top: 56px;
  text-align: center;
  font-family: "Michroma", sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  color: #F0F4FF;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.5;
}

/* ====== Module cards ====== */
.sb-module-card {
  position: relative;
  background: #0D1526;
  border: 1px solid #1A2844;
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  height: 100%;
  transition: border-color .25s, transform .25s;
}
.sb-module-card:hover {
  border-color: rgba(0, 87, 255, 0.5);
  transform: translateY(-2px);
}
.sb-module-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0, 87, 255, 0.12);
  color: #3D82FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sb-module-title {
  font-family: "Michroma", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.005em;
}
.sb-module-desc {
  font-size: 14px;
  color: #8A9BBF;
  line-height: 1.65;
  margin: 0;
}
.sb-module-arrow {
  position: absolute;
  top: 24px; right: 24px;
  color: #3D82FF;
  font-size: 18px;
  opacity: 0.5;
  transition: opacity .2s, transform .2s;
}
.sb-module-card:hover .sb-module-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ====== Feature deep dives ====== */
.sb-features-list {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 10vw, 140px);
  margin-top: 64px;
}
.sb-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.sb-feature-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}
.sb-feature-row.reverse > div:first-child {
  order: 2;
}
@media (max-width: 900px) {
  .sb-feature-row, .sb-feature-row.reverse { grid-template-columns: 1fr; }
  .sb-feature-row.reverse > div:first-child { order: 0; }
}
.sb-feat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0, 87, 255, 0.12);
  color: #3D82FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sb-feat-body {
  color: #8A9BBF;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 56ch;
}
.sb-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 8px 16px;
}
.sb-feat-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #dbe1f0;
  padding: 4px 0;
}
.sb-feat-list svg { flex-shrink: 0; margin-top: 3px; }
.sb-feat-visual {
  display: flex;
  justify-content: center;
}

/* Visual cards inside features */
.sb-vcard {
  background: #0D1526;
  border: 1px solid #1A2844;
  border-radius: 14px;
  padding: 24px;
  width: 100%;
  max-width: 480px;
}
.sb-vcard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.sb-vstat {
  background: rgba(0,87,255,0.08);
  border: 1px solid rgba(0,87,255,0.18);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-family: "Michroma", sans-serif;
}
.sb-vstat div { font-size: 22px; color: #3D82FF; }
.sb-vstat span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A9BBF;
  margin-top: 4px;
  font-family: "Poppins", sans-serif;
}
.sb-vcard-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding-top: 14px;
  border-top: 1px solid #1A2844;
}
.sb-vbar {
  flex: 1;
  background: linear-gradient(180deg, #3D82FF, #0057FF);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.sb-vcontact-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #1A2844;
}
.sb-vavatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3D82FF, #0057FF);
  color: white;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sb-vtimeline {
  display: flex; flex-direction: column;
  gap: 8px;
}
.sb-vtline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid rgba(0,87,255,0.4);
  border-radius: 4px;
}
.sb-vtline-icon { font-size: 14px; }

/* Engine timeline visual */
.sb-engine-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sb-engine-step {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(0,87,255,0.04);
  border: 1px solid rgba(0,87,255,0.15);
  border-radius: 10px;
}
.sb-engine-step.done {
  background: rgba(26, 219, 138, 0.06);
  border-color: rgba(26, 219, 138, 0.25);
}
.sb-engine-icon { font-size: 18px; text-align: center; }
.sb-engine-label {
  font-size: 13px;
  color: #F0F4FF;
}
.sb-engine-time {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: #8A9BBF;
}
.sb-engine-line {
  width: 2px;
  height: 18px;
  background: rgba(0, 87, 255, 0.25);
  margin-left: 28px;
}

/* Voice call visual */
.sb-voice-call {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sb-voice-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1ADB8A;
  font-size: 13px;
  font-weight: 500;
}
.sb-voice-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1ADB8A;
  box-shadow: 0 0 0 5px rgba(26, 219, 138, 0.2);
  animation: livepulse 1.5s ease-in-out infinite;
}
.sb-voice-caller {
  font-family: "DM Mono", monospace;
  font-size: 16px;
  color: #fff;
}
.sb-voice-intent {
  font-size: 13px;
  color: #8A9BBF;
}
.sb-voice-intent strong { color: #3D82FF; }
.sb-voice-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 60px;
  padding: 0 4px;
  background: rgba(0, 87, 255, 0.05);
  border-radius: 8px;
}
.sb-voice-bar {
  flex: 1;
  background: #3D82FF;
  border-radius: 2px;
  animation: sb-wave 1.2s ease-in-out infinite;
}
@keyframes sb-wave {
  0%, 100% { height: 8px; opacity: 0.4; }
  50% { height: 70%; opacity: 1; }
}
.sb-voice-status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  font-size: 13px;
  color: #dbe1f0;
}
.sb-voice-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3D82FF;
  animation: livepulse 1.5s ease-in-out infinite;
}

/* Calendar visual */
.sb-cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.sb-cal-day {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sb-cal-dayname {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #8A9BBF;
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px solid #1A2844;
}
.sb-cal-slots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sb-cal-slot {
  height: 22px;
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}
.sb-cal-slot.booked {
  background: rgba(61, 130, 255, 0.4);
}
.sb-cal-slot.buffer {
  background: repeating-linear-gradient(45deg, rgba(245,158,11,0.2), rgba(245,158,11,0.2) 4px, transparent 4px, transparent 8px);
}
.sb-cal-slot.new {
  background: #0057FF;
  box-shadow: 0 0 0 1px #3D82FF, 0 4px 12px -2px rgba(0,87,255,0.5);
}
.sb-cal-legend {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #1A2844;
  font-size: 11px;
  color: #8A9BBF;
  flex-wrap: wrap;
}
.sb-cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sb-cal-leg {
  width: 10px; height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.sb-cal-leg-booked { background: rgba(61, 130, 255, 0.4); }
.sb-cal-leg-buffer { background: repeating-linear-gradient(45deg, rgba(245,158,11,0.4), rgba(245,158,11,0.4) 2px, transparent 2px, transparent 4px); }
.sb-cal-leg-new { background: #0057FF; }

/* Settings visual */
.sb-settings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #1A2844;
  font-size: 13px;
}
.sb-settings-row strong { color: #fff; }
.sb-settings-prompt {
  margin-top: 14px;
  padding: 14px;
  background: rgba(0, 87, 255, 0.06);
  border: 1px solid rgba(0, 87, 255, 0.18);
  border-radius: 10px;
}
.sb-settings-prompt-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #8A9BBF;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sb-settings-prompt-text {
  font-size: 13px;
  color: #F0F4FF;
  font-style: italic;
  line-height: 1.5;
}

/* ====== How It Works flow ====== */
.sb-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: 56px;
  position: relative;
}
@media (max-width: 768px) {
  .sb-flow { grid-template-columns: 1fr; }
}
.sb-flow-step {
  background: #0D1526;
  border: 1px solid #1A2844;
  border-radius: 14px;
  padding: 28px;
  position: relative;
}
.sb-flow-num {
  font-family: "Michroma", sans-serif;
  font-size: 36px;
  color: #3D82FF;
  opacity: 0.6;
  margin-bottom: 14px;
}
.sb-flow-title {
  font-family: "Michroma", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
}
.sb-flow-desc {
  font-size: 14px;
  color: #8A9BBF;
  line-height: 1.65;
  margin: 0;
}

/* ====== Add-Ons ====== */
.sb-addon-card {
  background: #0D1526;
  border: 1px solid #1A2844;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sb-addon-badge {
  display: inline-block;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 18px;
  align-self: flex-start;
}
.sb-addon-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0, 87, 255, 0.12);
  color: #3D82FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sb-addon-title {
  font-family: "Michroma", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}
.sb-addon-tag {
  font-size: 13px;
  color: #3D82FF;
  margin: 0 0 16px;
  font-style: italic;
}
.sb-addon-body {
  font-size: 14px;
  color: #8A9BBF;
  line-height: 1.65;
  margin: 0 0 20px;
}
.sb-addon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 13px;
  color: #dbe1f0;
}
.sb-addon-list li {
  padding: 6px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.sb-addon-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #3D82FF;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ====== Trust ====== */
.sb-trust-card {
  background: #0D1526;
  border: 1px solid #1A2844;
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  height: 100%;
}
.sb-trust-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.sb-trust-title {
  font-family: "Michroma", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.005em;
}
.sb-trust-desc {
  color: #8A9BBF;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ====== Final CTA ====== */
.sb-cta-card {
  background: linear-gradient(135deg, #0057FF 0%, #003FCC 60%, #002280 100%);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}
.sb-cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.sb-cta-card > * { position: relative; z-index: 1; }
.sb-cta-card .sb-eyebrow {
  color: rgba(255,255,255,0.85);
  text-align: center;
}

/* ====== Footer ====== */
.sb-footer {
  background: #050a14;
  padding: clamp(48px, 7vw, 72px) 0 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.sb-footer-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 768px) {
  .sb-footer-row { grid-template-columns: 1fr; }
  .sb-footer-row > div:last-child { text-align: left !important; }
}
.sb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}
.sb-footer-links a {
  color: #8A9BBF;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.sb-footer-links a:hover { color: #fff; }
.sb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}
