:root {
  --sb-surface-deep: #05070a;
  --sb-surface-charcoal: #14171f;
  --sb-surface: #11131b;
  --sb-surface-lowest: #0c0e16;
  --sb-surface-low: #191b24;
  --sb-surface-container: #1d1f28;
  --sb-surface-high: #282a32;
  --sb-surface-highest: #33343e;
  --sb-on-surface: #e2e1ee;
  --sb-on-surface-variant: #bbc9cf;
  --sb-text-muted: #adb7be;
  --sb-outline: #859399;
  --sb-outline-variant: #3c494e;
  --sb-primary: #a4e6ff;
  --sb-primary-strong: #00d1ff;
  --sb-on-primary: #003543;
  --sb-secondary: #ebb2ff;
  --sb-tertiary: #4bf1ff;
  --sb-tertiary-strong: #00d5e2;
  --sb-status-uptime: #00ff66;
  --sb-border-glow: rgba(0, 209, 255, 0.15);
  --sb-glass-bg: rgba(10, 12, 20, 0.72);
  --sb-glass-bg-strong: rgba(17, 19, 27, 0.84);
  --sb-shadow-glow: 0 0 30px rgba(0, 209, 255, 0.22);
  --sb-shadow-header: 0 8px 32px rgba(0, 209, 255, 0.05);
  --sb-font-heading: Sora, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sb-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sb-font-mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sb-container: 1280px;
  --sb-gutter: 24px;
  --sb-page-margin: clamp(20px, 4vw, 64px);
  --sb-section-gap: clamp(72px, 9vw, 120px);
  --sb-radius-sm: 2px;
  --sb-radius: 4px;
  --sb-radius-md: 6px;
  --sb-radius-lg: 8px;
  --sb-radius-xl: 12px;
  --sb-header-height: 80px;
  --sb-header-logo-width: 184px;
  --sb-footer-logo-width: 184px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--sb-surface-deep);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(76, 214, 255, 0.12), transparent 34rem),
    radial-gradient(circle at 100% 42%, rgba(235, 178, 255, 0.06), transparent 38rem),
    var(--sb-surface-deep);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-body);
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.7;
}

body.sb-mobile-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sb-primary);
}

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

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  min-height: 100vh;
}

.site-main {
  position: relative;
  z-index: 1;
  padding: var(--sb-section-gap) var(--sb-page-margin);
}

.site-main.sb-elementor-page {
  padding: 0;
  min-height: calc(100vh - var(--sb-header-height));
}

.sb-elementor-content {
  width: 100%;
}

.sb-elementor-content > .elementor,
.sb-elementor-content > .elementor-location-single,
.sb-elementor-content > .elementor-location-archive {
  width: 100%;
}

.sb-elementor-content:empty {
  min-height: 32vh;
}

.sb-elementor-page--full-width .sb-elementor-content > * {
  max-width: none;
}

.sb-elementor-page--canvas {
  min-height: 100vh;
}

.sb-shell-header,
.sb-shell-empty {
  padding-block: clamp(72px, 10vw, 132px) clamp(40px, 6vw, 72px);
}

.sb-shell-header h1 {
  max-width: 920px;
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.sb-shell-header p,
.sb-shell-empty p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--sb-on-surface-variant);
  font-size: clamp(17px, 2vw, 20px);
}

.sb-el-header,
.sb-el-footer,
.sb-el-section {
  width: 100%;
  padding-inline: var(--sb-page-margin);
}

.sb-el-announcement {
  width: 100%;
  padding-inline: var(--sb-page-margin);
  border-bottom: 1px solid rgba(164, 230, 255, 0.18);
  background: rgba(0, 209, 255, 0.08);
}

.sb-el-announcement > .e-con-inner {
  justify-content: center;
  width: min(100%, var(--sb-container)) !important;
  margin-inline: auto;
  padding-block: 8px;
}

.sb-el-announcement p {
  margin: 0;
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.sb-el-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--sb-header-height);
  border-bottom: 1px solid rgba(164, 230, 255, 0.12);
  background: rgba(13, 15, 23, 0.9);
  backdrop-filter: blur(16px);
}

.sb-el-header > .e-con-inner {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  width: min(100%, 1440px);
}

.sb-el-header > .e-con-inner > .sb-el-brand,
.sb-el-header > .e-con-inner > .sb-el-header-menu,
.sb-el-header > .e-con-inner > .sb-el-header-actions {
  width: auto !important;
  min-width: 0;
}

.sb-el-header > .e-con-inner > .sb-el-brand {
  grid-column: 1;
}

.sb-el-header > .e-con-inner > .sb-el-header-menu {
  grid-column: 2;
}

.sb-el-header > .e-con-inner > .sb-el-header-actions {
  grid-column: 3;
}

.admin-bar .sb-el-header {
  top: 32px;
}

.sb-el-brand .elementor-heading-title,
.sb-el-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 800;
  letter-spacing: 0;
}

.sb-el-brand::before {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(164, 230, 255, 0.42);
  border-radius: var(--sb-radius-md);
  background:
    linear-gradient(90deg, transparent 7px, rgba(164, 230, 255, 0.9) 7px 10px, transparent 10px 13px, rgba(164, 230, 255, 0.72) 13px 16px, transparent 16px 19px, rgba(164, 230, 255, 0.62) 19px 22px, transparent 22px),
    linear-gradient(180deg, rgba(0, 209, 255, 0.24), rgba(0, 209, 255, 0.04));
  box-shadow: 0 0 16px rgba(0, 209, 255, 0.32);
  content: "";
}

.sb-el-header-menu .elementor-nav-menu {
  gap: clamp(6px, 0.9vw, 14px);
  flex-wrap: nowrap !important;
}

.sb-el-header-menu .elementor-nav-menu a,
.sb-el-footer-menu .elementor-nav-menu a {
  color: var(--sb-on-surface-variant);
  font-family: var(--sb-font-body);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.sb-el-header-menu .elementor-nav-menu a {
  padding-inline: clamp(4px, 0.55vw, 8px) !important;
}

.sb-el-header-menu .elementor-nav-menu a:hover,
.sb-el-footer-menu .elementor-nav-menu a:hover {
  color: var(--sb-primary);
}

.sb-el-header-actions,
.sb-el-actions,
.sb-el-header-actions > .e-con-inner,
.sb-el-actions > .e-con-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sb-el-header-actions > .e-con-inner {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.sb-el-header-actions .elementor-widget-button {
  width: auto !important;
}

.sb-el-stitch-home,
.sb-el-stitch-home .elementor-widget-container,
.sb-stitch-home {
  width: 100%;
}

.sb-el-stitch-home {
  margin: 0;
}

.sb-el-section {
  width: 100%;
  max-width: calc(var(--sb-container) + (var(--sb-page-margin) * 2));
  margin-inline: auto;
  padding-block: clamp(72px, 9vw, 120px);
}

.sb-el-section > .e-con-inner {
  align-items: center !important;
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
}

.sb-el-hero {
  min-height: min(760px, calc(100vh - var(--sb-header-height)));
}

.sb-el-hero > .e-con-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.sb-el-home-hero {
  min-height: min(820px, calc(100vh - var(--sb-header-height)));
  padding-block: clamp(92px, 11vw, 156px) clamp(76px, 8vw, 116px);
}

.sb-el-hero-copy,
.sb-el-hero-visual,
.sb-el-section-heading {
  min-width: 0;
}

.sb-el-hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 360px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--sb-border-glow);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.16), transparent 44%),
    var(--sb-glass-bg);
  box-shadow: var(--sb-shadow-glow);
}

.sb-el-home-visual {
  width: 100% !important;
  height: clamp(420px, 44vw, 540px) !important;
  min-height: clamp(420px, 44vw, 540px);
  overflow: visible;
  padding: 0;
  border-color: rgba(164, 230, 255, 0.2);
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 209, 255, 0.22), transparent 19rem),
    linear-gradient(135deg, rgba(20, 23, 31, 0.96), rgba(5, 7, 10, 0.96));
}

.sb-el-home-visual::before {
  position: absolute;
  inset: 10% 9%;
  z-index: 1;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    repeating-linear-gradient(180deg, transparent 0 46px, rgba(164, 230, 255, 0.14) 46px 47px),
    radial-gradient(circle at 50% 18%, rgba(0, 209, 255, 0.16), transparent 14rem);
  content: "";
}

.sb-el-home-visual::after {
  position: absolute;
  inset: 22% 16%;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.78), transparent) 0 0 / 100% 3px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.64), transparent) 0 25% / 100% 3px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.54), transparent) 0 50% / 100% 3px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.64), transparent) 0 75% / 100% 3px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.78), transparent) 0 100% / 100% 3px no-repeat;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.42));
  content: "";
}

.sb-el-hero-visual-html,
.sb-el-hero-visual-html .elementor-widget-container {
  position: absolute;
  inset: 0;
}

.sb-el-rack {
  position: absolute;
  inset: 12% 10%;
  overflow: hidden;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.1), rgba(5, 7, 10, 0.9)),
    linear-gradient(135deg, rgba(0, 209, 255, 0.12), transparent 50%);
}

.sb-el-rack::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(164, 230, 255, 0.16);
  border-radius: var(--sb-radius-lg);
  background:
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.08) 0 1px, transparent 1px 46px),
    linear-gradient(90deg, transparent, rgba(164, 230, 255, 0.08), transparent);
  content: "";
}

.sb-el-rack span {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.78), transparent);
  box-shadow: 0 0 22px rgba(0, 209, 255, 0.5);
}

.sb-el-rack span:nth-child(1) { top: 24%; }
.sb-el-rack span:nth-child(2) { top: 36%; }
.sb-el-rack span:nth-child(3) { top: 48%; }
.sb-el-rack span:nth-child(4) { top: 60%; }
.sb-el-rack span:nth-child(5) { top: 72%; }

.sb-el-floating-metric {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 52px auto;
  gap: 2px 14px;
  align-items: center;
  min-width: 210px;
  padding: 16px;
  border: 1px solid rgba(164, 230, 255, 0.24);
  border-radius: var(--sb-radius-xl);
  background: rgba(10, 12, 20, 0.88);
  box-shadow: var(--sb-shadow-glow);
  backdrop-filter: blur(14px);
}

.sb-el-floating-metric span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 255, 102, 0.3);
  border-radius: 999px;
  background: rgba(0, 255, 102, 0.08);
  color: var(--sb-status-uptime);
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
}

.sb-el-floating-metric strong {
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 24px;
  line-height: 1;
}

.sb-el-floating-metric small {
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
}

.sb-el-floating-metric--uptime {
  top: 8%;
  left: -5%;
}

.sb-el-floating-metric--support {
  right: -4%;
  bottom: 12%;
}

.sb-el-floating-metric--support span {
  border-color: rgba(235, 178, 255, 0.32);
  background: rgba(235, 178, 255, 0.08);
  color: var(--sb-secondary);
}

.sb-el-eyebrow p,
.sb-el-badge p {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sb-el-h1 .elementor-heading-title,
.sb-el-h1 {
  max-width: 760px;
  color: var(--sb-on-surface) !important;
  font-family: var(--sb-font-heading);
  font-size: clamp(44px, 5.7vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
}

.sb-el-h1 .elementor-heading-title span,
.sb-el-h1 span {
  color: transparent !important;
  background: linear-gradient(90deg, var(--sb-primary), var(--sb-tertiary));
  -webkit-background-clip: text;
  background-clip: text;
}

.sb-el-h2 .elementor-heading-title,
.sb-el-h2 {
  color: var(--sb-on-surface) !important;
  font-family: var(--sb-font-heading);
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.sb-el-h3 .elementor-heading-title,
.sb-el-h3 {
  color: var(--sb-on-surface) !important;
  font-family: var(--sb-font-heading);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.14;
  letter-spacing: 0;
}

.sb-el-lead p,
.sb-el-section-copy p,
.sb-el-card-copy p,
.sb-el-section .elementor-widget-text-editor p {
  color: var(--sb-on-surface-variant);
}

.sb-el-lead p {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
}

.sb-el-section-heading {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  align-self: center !important;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

.sb-el-section-heading > .e-con-inner {
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}

.sb-el-section-heading .elementor-widget {
  width: 100%;
  text-align: center;
}

.sb-el-section-copy p {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.sb-el-card-grid {
  width: 100%;
}

.sb-el-card-grid > .e-con-inner {
  display: grid !important;
  gap: 18px;
  width: 100%;
}

.sb-el-card-grid--three > .e-con-inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-el-card-grid--four > .e-con-inner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sb-el-card-grid--two > .e-con-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-el-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(20px, 2.1vw, 26px);
  border: 1px solid var(--sb-border-glow);
  border-radius: var(--sb-radius-lg);
  background: var(--sb-glass-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.sb-el-card:hover {
  border-color: rgba(164, 230, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(0, 209, 255, 0.045), transparent 52%),
    var(--sb-glass-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 18px 60px rgba(0, 209, 255, 0.11);
  transform: translateY(-3px);
}

.sb-el-card-copy p,
.sb-el-card-list li {
  font-size: 14px;
  line-height: 1.55;
}

.sb-el-card::before {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(164, 230, 255, 0.24);
  border-radius: var(--sb-radius-md);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.2), rgba(0, 209, 255, 0.04));
  content: "";
}

.sb-el-card > .e-con-inner::before {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(164, 230, 255, 0.24);
  border-radius: var(--sb-radius-md);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.2), rgba(0, 209, 255, 0.04));
  content: "";
}

.sb-el-card--icon::before,
.sb-el-card--icon > .e-con-inner::before {
  display: none;
}

.sb-el-card-icon {
  position: relative;
  z-index: 1;
  width: fit-content !important;
  margin-bottom: 20px;
}

.sb-el-card-icon .elementor-widget-container,
.sb-el-card-icon .elementor-widget-container > div {
  display: inline-flex;
}

.sb-el-card-icon .sb-icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  border: 1px solid rgba(164, 230, 255, 0.3);
  border-radius: var(--sb-radius-lg);
  background:
    radial-gradient(circle at 35% 25%, rgba(75, 241, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(0, 209, 255, 0.16), rgba(0, 209, 255, 0.035));
  color: var(--sb-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(0, 209, 255, 0.1);
}

.sb-el-card--icon:hover .sb-el-card-icon .sb-icon {
  border-color: rgba(164, 230, 255, 0.58);
  color: var(--sb-tertiary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 0 28px rgba(0, 209, 255, 0.18);
}

.sb-el-card .elementor-widget-button {
  margin-top: auto;
}

.sb-el-card-list ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--sb-on-surface-variant);
}

.sb-el-button .elementor-button,
.sb-el-button a.elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--sb-radius-lg);
  background: linear-gradient(135deg, var(--sb-primary), var(--sb-tertiary)) !important;
  color: var(--sb-on-primary) !important;
  font-family: var(--sb-font-mono);
  padding: 13px 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.sb-el-button--secondary .elementor-button,
.sb-el-button--secondary a.elementor-button,
.sb-el-link-button .elementor-button {
  border: 1px solid rgba(164, 230, 255, 0.35);
  background: rgba(17, 19, 27, 0.72) !important;
  color: var(--sb-on-surface) !important;
}

.sb-el-header-menu .elementor-menu-toggle {
  margin-inline-start: auto;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: var(--sb-radius-lg);
  background: rgba(17, 19, 27, 0.78);
  color: var(--sb-primary);
}

.sb-el-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 960px;
  margin-inline: auto;
  margin-block: clamp(72px, 10vw, 128px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--sb-border-glow);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 209, 255, 0.2), transparent 34rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.055), transparent 58%),
    var(--sb-glass-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 209, 255, 0.09);
  text-align: center;
}

.sb-el-final-cta::before {
  position: absolute;
  inset: auto 12% -42% 12%;
  z-index: -1;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.18), transparent 70%);
  content: "";
  filter: blur(10px);
}

.sb-el-final-cta > .e-con-inner {
  align-items: center !important;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.sb-el-final-cta .sb-el-h2 .elementor-heading-title {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
}

.sb-el-final-cta .sb-el-section-copy p {
  max-width: 660px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
}

.sb-el-final-cta .sb-el-actions > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sb-el-final-cta .sb-el-actions,
.sb-el-final-cta .sb-el-actions .elementor-widget-button {
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-final-cta .elementor-button {
  min-width: 150px;
}

.sb-el-related-links {
  width: 100%;
}

.sb-el-related-links__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: rgba(226, 245, 255, 0.62);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.sb-el-related-links__nav span {
  color: rgba(226, 245, 255, 0.72);
}

.sb-el-related-links__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(164, 230, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 15, 24, 0.72);
  color: #bffaff;
  text-decoration: none;
}

.sb-el-related-links__nav a:hover,
.sb-el-related-links__nav a:focus {
  border-color: rgba(67, 241, 237, 0.55);
  color: #ffffff;
  background: rgba(0, 209, 255, 0.12);
}

.sb-el-service-hero {
  min-height: min(720px, calc(100vh - var(--sb-header-height)));
  padding-block: clamp(72px, 8vw, 126px);
}

.sb-el-service-hero .sb-el-h1,
.sb-el-service-hero .sb-el-h1 .elementor-heading-title {
  max-width: 820px;
}

.sb-el-service-visual {
  min-height: clamp(390px, 38vw, 520px);
  overflow: hidden;
  isolation: isolate;
}

.sb-el-service-visual .sb-el-badge {
  position: relative;
  z-index: 3;
  width: fit-content !important;
}

.sb-el-service-visual .sb-el-badge p {
  background: rgba(0, 209, 255, 0.11);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.08);
}

.sb-el-service-visual-html,
.sb-el-service-visual-html .elementor-widget-container,
.sb-el-service-visual-art {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  pointer-events: none;
}

.sb-el-service-visual-art {
  overflow: hidden;
}

.sb-el-service-visual-art::before,
.sb-el-service-visual-art::after {
  position: absolute;
  content: "";
}

.sb-el-service-visual--vps .sb-el-service-visual-art::before {
  inset: 16% 12%;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 34%, rgba(0, 209, 255, 0.18), transparent 8rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(5, 7, 10, 0.3));
  box-shadow:
    inset 0 0 40px rgba(0, 209, 255, 0.08),
    0 0 40px rgba(0, 209, 255, 0.12);
}

.sb-el-service-visual--vps .sb-el-service-visual-art::after {
  inset: 28% 22%;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(12deg, transparent 12%, rgba(0, 209, 255, 0.32), transparent 52%),
    linear-gradient(-20deg, transparent 24%, rgba(235, 178, 255, 0.16), transparent 62%);
  opacity: 0.85;
}

.sb-el-service-visual--vps .sb-el-service-visual-art span {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 28%, rgba(75, 241, 255, 0.28), transparent 46%),
    rgba(10, 12, 20, 0.78);
  box-shadow: 0 0 24px rgba(0, 209, 255, 0.14);
}

.sb-el-service-visual--vps .sb-el-service-visual-art span:nth-child(1) { top: 20%; left: 22%; }
.sb-el-service-visual--vps .sb-el-service-visual-art span:nth-child(2) { top: 36%; right: 18%; }
.sb-el-service-visual--vps .sb-el-service-visual-art span:nth-child(3) { right: 32%; bottom: 22%; }
.sb-el-service-visual--vps .sb-el-service-visual-art span:nth-child(4) { bottom: 28%; left: 18%; }
.sb-el-service-visual--vps .sb-el-service-visual-art span:nth-child(5) { top: 14%; right: 36%; width: 34px; height: 34px; border-radius: 999px; }
.sb-el-service-visual--vps .sb-el-service-visual-art span:nth-child(6) { bottom: 16%; right: 16%; width: 34px; height: 34px; border-radius: 999px; }

.sb-el-vps-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 72% 44%, rgba(0, 209, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-vps-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-vps-hero::after {
  position: absolute;
  inset: 18% -12% auto 54%;
  z-index: -1;
  height: 56%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.16), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-vps-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.02fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-vps-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-vps-hero .sb-el-h1,
.sb-el-vps-hero .sb-el-h1 .elementor-heading-title {
  max-width: 790px;
  font-size: clamp(50px, 6.75vw, 77px);
  line-height: 0.995;
}

.sb-el-vps-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-vps-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-vps-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-vps-hero .sb-el-button .elementor-button,
.sb-el-vps-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-vps-hero .sb-el-button--primary .elementor-button,
.sb-el-vps-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-vps-hero .sb-el-button--secondary .elementor-button,
.sb-el-vps-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-vps-visual {
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-vps-visual > .e-con-inner,
.sb-el-vps-visual-html,
.sb-el-vps-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-vps-control-plane {
  position: relative;
  width: 100%;
}

.sb-el-vps-control-frame {
  position: relative;
  padding: 9px;
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-vps-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
}

.sb-el-vps-image-shell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: cover;
}

.sb-el-vps-micro-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-vps-micro-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  max-width: min(230px, 52%);
  padding: 9px 12px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.86);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 209, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sb-el-vps-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 22px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 10px;
}

.sb-el-vps-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-vps-micro-card--kvm {
  top: 10%;
  left: 3%;
}

.sb-el-vps-micro-card--storage {
  top: 40%;
  right: 3%;
}

.sb-el-vps-micro-card--os {
  bottom: 18%;
  left: 8%;
}

.sb-el-vps-micro-card--ip {
  right: 14%;
  bottom: 6%;
}

.sb-el-vps-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-vps-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-vps-feature-strip-html,
.sb-el-vps-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-vps-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-vps-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-vps-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-vps-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-vps-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-vps-feature-strip + .sb-el-service-section--vps {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-dedicated-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 76% 42%, rgba(0, 209, 255, 0.13), transparent 29rem),
    radial-gradient(circle at 42% 74%, rgba(75, 241, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-dedicated-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-dedicated-hero::after {
  position: absolute;
  inset: 16% -10% auto 52%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.15), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-dedicated-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.02fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-dedicated-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-dedicated-hero .sb-el-h1,
.sb-el-dedicated-hero .sb-el-h1 .elementor-heading-title {
  max-width: 790px;
  font-size: clamp(50px, 6.75vw, 77px);
  line-height: 0.995;
}

.sb-el-dedicated-hero .sb-el-h1 span,
.sb-el-dedicated-hero .sb-el-h1 .elementor-heading-title span,
.sb-el-location-dedicated-hero .sb-el-h1 span,
.sb-el-location-dedicated-hero .sb-el-h1 .elementor-heading-title span {
  display: inline-block;
  white-space: nowrap;
}

.sb-el-dedicated-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-dedicated-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-dedicated-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-dedicated-hero .sb-el-button .elementor-button,
.sb-el-dedicated-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-dedicated-hero .sb-el-button--primary .elementor-button,
.sb-el-dedicated-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-dedicated-hero .sb-el-button--secondary .elementor-button,
.sb-el-dedicated-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-dedicated-visual {
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-dedicated-visual > .e-con-inner,
.sb-el-dedicated-visual-html,
.sb-el-dedicated-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-dedicated-control-plane {
  position: relative;
  width: 100%;
}

.sb-el-dedicated-control-frame {
  position: relative;
  padding: 9px;
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-dedicated-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
}

.sb-el-dedicated-image-shell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: cover;
}

.sb-el-dedicated-micro-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-dedicated-micro-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  max-width: min(250px, 56%);
  padding: 9px 12px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.86);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 209, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sb-el-dedicated-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 10px;
}

.sb-el-dedicated-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-dedicated-micro-card--kvm {
  top: 10%;
  left: 3%;
}

.sb-el-dedicated-micro-card--bandwidth {
  top: 38%;
  right: 3%;
}

.sb-el-dedicated-micro-card--ddos {
  bottom: 18%;
  left: 7%;
}

.sb-el-dedicated-micro-card--config {
  right: 7%;
  bottom: 6%;
}

.sb-el-dedicated-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-dedicated-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-dedicated-feature-strip-html,
.sb-el-dedicated-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-dedicated-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-dedicated-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-dedicated-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-dedicated-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-dedicated-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-dedicated-feature-strip + .sb-el-service-section--dedicated {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-colocation-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 78% 34%, rgba(0, 209, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 60% 78%, rgba(75, 241, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-colocation-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.042) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-colocation-hero::after {
  position: absolute;
  inset: 15% -10% auto 51%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.15), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-colocation-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-colocation-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-colocation-hero .sb-el-h1,
.sb-el-colocation-hero .sb-el-h1 .elementor-heading-title {
  max-width: 810px;
  font-size: clamp(50px, 6.75vw, 77px);
  line-height: 0.995;
}

.sb-el-colocation-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-colocation-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-colocation-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-colocation-hero .sb-el-button .elementor-button,
.sb-el-colocation-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-colocation-hero .sb-el-button--primary .elementor-button,
.sb-el-colocation-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-colocation-hero .sb-el-button--secondary .elementor-button,
.sb-el-colocation-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-colocation-visual {
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-colocation-visual > .e-con-inner,
.sb-el-colocation-visual-html,
.sb-el-colocation-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-colocation-control-plane {
  position: relative;
  width: 100%;
}

.sb-el-colocation-control-frame {
  position: relative;
  padding: 9px;
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-colocation-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
}

.sb-el-colocation-image-shell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: cover;
}

.sb-el-colocation-micro-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-colocation-micro-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: min(220px, 48%);
  padding: 8px 11px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.86);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 209, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sb-el-colocation-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 21px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 9px;
}

.sb-el-colocation-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-colocation-micro-card--capacity {
  top: 11%;
  left: 3%;
}

.sb-el-colocation-micro-card--ip {
  top: 5%;
  right: 8%;
}

.sb-el-colocation-micro-card--bgp {
  top: 39%;
  right: 2%;
}

.sb-el-colocation-micro-card--uplinks {
  right: 4%;
  bottom: 22%;
}

.sb-el-colocation-micro-card--power {
  bottom: 19%;
  left: 5%;
}

.sb-el-colocation-micro-card--hands {
  right: 13%;
  bottom: 6%;
}

.sb-el-colocation-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-colocation-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-colocation-feature-strip-html,
.sb-el-colocation-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-colocation-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-colocation-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-colocation-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-colocation-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-colocation-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-colocation-feature-strip + .sb-el-service-section--colocation {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-locations-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 76% 36%, rgba(0, 209, 255, 0.13), transparent 29rem),
    radial-gradient(circle at 32% 68%, rgba(75, 241, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-locations-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.042) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-locations-hero::after {
  position: absolute;
  inset: 15% -10% auto 51%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.15), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-locations-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-locations-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-locations-hero .sb-el-h1,
.sb-el-locations-hero .sb-el-h1 .elementor-heading-title {
  max-width: 790px;
  font-size: clamp(52px, 6.9vw, 80px);
  line-height: 0.995;
}

.sb-el-locations-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-locations-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-locations-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-locations-hero .sb-el-button .elementor-button,
.sb-el-locations-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-locations-hero .sb-el-button--primary .elementor-button,
.sb-el-locations-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-locations-hero .sb-el-button--secondary .elementor-button,
.sb-el-locations-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-locations-visual {
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-locations-visual > .e-con-inner,
.sb-el-locations-visual-html,
.sb-el-locations-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-locations-network-plane {
  position: relative;
  width: 100%;
}

.sb-el-locations-network-frame {
  position: relative;
  padding: 9px;
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-locations-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
}

.sb-el-locations-image-shell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: cover;
}

.sb-el-locations-micro-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-locations-micro-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: min(250px, 54%);
  padding: 8px 11px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.86);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 209, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sb-el-locations-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 21px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 9px;
}

.sb-el-locations-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-locations-micro-card--routing {
  top: 5%;
  left: 4%;
}

.sb-el-locations-micro-card--latency {
  top: 5%;
  right: 3%;
}

.sb-el-locations-micro-card--regions {
  top: 44%;
  left: 1%;
}

.sb-el-locations-micro-card--visibility {
  top: 44%;
  right: 1%;
}

.sb-el-locations-micro-card--ddos {
  bottom: 5%;
  left: 6%;
}

.sb-el-locations-micro-card--throughput {
  right: 6%;
  bottom: 5%;
}

.sb-el-locations-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-locations-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-locations-feature-strip-html,
.sb-el-locations-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-locations-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-locations-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-locations-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-locations-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-locations-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-locations-feature-strip + .sb-el-service-section--locations {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-location-vps-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 74% 36%, rgba(0, 209, 255, 0.13), transparent 29rem),
    radial-gradient(circle at 34% 70%, rgba(75, 241, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-location-vps-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.042) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-location-vps-hero::after {
  position: absolute;
  inset: 15% -10% auto 51%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.15), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-location-vps-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-location-vps-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-location-vps-hero .sb-el-h1,
.sb-el-location-vps-hero .sb-el-h1 .elementor-heading-title {
  max-width: 790px;
  font-size: clamp(52px, 6.9vw, 80px);
  line-height: 0.995;
}

.sb-el-location-vps-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-location-vps-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-location-vps-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-location-vps-hero .sb-el-button .elementor-button,
.sb-el-location-vps-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-location-vps-hero .sb-el-button--primary .elementor-button,
.sb-el-location-vps-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-location-vps-hero .sb-el-button--secondary .elementor-button,
.sb-el-location-vps-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-location-vps-hero--os {
  min-height: min(610px, calc(100vh - var(--sb-header-height)));
  padding-block: clamp(58px, 5.3vw, 84px) clamp(46px, 4.8vw, 72px);
}

.sb-el-location-vps-hero--os > .e-con-inner {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.96fr) !important;
}

.sb-el-location-vps-hero--os .sb-el-h1,
.sb-el-location-vps-hero--os .sb-el-h1 .elementor-heading-title {
  font-size: clamp(48px, 6vw, 72px);
}

.sb-el-location-vps-hero--os .sb-el-lead p {
  max-width: 620px;
}

.sb-el-location-vps-visual {
  min-height: clamp(410px, 36vw, 550px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-location-vps-visual > .e-con-inner,
.sb-el-location-vps-visual-html,
.sb-el-location-vps-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-location-vps-plane {
  position: relative;
  width: 100%;
}

.sb-el-location-vps-frame {
  position: relative;
  min-height: clamp(410px, 36vw, 550px);
  padding: clamp(20px, 2.5vw, 32px);
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 50% 32%, rgba(75, 241, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-location-vps-visual--os {
  min-height: clamp(360px, 32vw, 470px);
}

.sb-el-location-vps-visual--os .sb-el-location-vps-frame {
  min-height: clamp(360px, 32vw, 470px);
}

.sb-el-location-vps-frame::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: calc(var(--sb-radius-xl) - 5px);
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.sb-el-location-vps-frame::after {
  position: absolute;
  inset: 11% 14% 13%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.12), transparent 70%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.sb-el-location-vps-map,
.sb-el-location-vps-cluster,
.sb-el-location-vps-chip-row,
.sb-el-location-vps-micro-layer {
  position: relative;
  z-index: 2;
}

.sb-el-location-vps-map {
  width: min(100%, 360px);
  margin-inline: auto;
  padding-top: 2px;
}

.sb-el-location-vps-map svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(0, 209, 255, 0.22));
}

.sb-el-location-vps-map text {
  fill: rgba(75, 241, 255, 0.72);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
}

.sb-el-location-vps-map-shape {
  fill: rgba(0, 209, 255, 0.075);
  stroke: rgba(75, 241, 255, 0.58);
  stroke-dasharray: 4 3;
  stroke-width: 1.5;
}

.sb-el-location-vps-route {
  fill: none;
  stroke: rgba(75, 241, 255, 0.58);
  stroke-dasharray: 6 4;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.sb-el-location-vps-route--west-b,
.sb-el-location-vps-route--east-b {
  opacity: 0.72;
}

.sb-el-location-vps-marker-ring {
  fill: rgba(0, 209, 255, 0.08);
  stroke: rgba(75, 241, 255, 0.42);
  stroke-width: 2;
}

.sb-el-location-vps-marker {
  fill: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.8));
}

.sb-el-location-vps-location-label,
.sb-el-location-vps-latency {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius-sm);
  background: rgba(8, 17, 30, 0.82);
  color: var(--sb-tertiary);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.11);
}

.sb-el-location-vps-location-label {
  top: 56%;
  left: 29%;
}

.sb-el-location-vps-latency--west {
  left: -1%;
  top: 60%;
}

.sb-el-location-vps-latency--east {
  right: -2%;
  top: 70%;
}

.sb-el-location-vps-cluster {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: clamp(10px, 1vw, 16px);
}

.sb-el-location-vps-nodes {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
}

.sb-el-location-vps-node {
  position: relative;
  display: grid;
  align-content: start;
  width: clamp(44px, 4.3vw, 58px);
  min-height: 112px;
  gap: 7px;
  padding: 14px 8px 8px;
  overflow: hidden;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background:
    linear-gradient(180deg, rgba(22, 63, 82, 0.82), rgba(8, 17, 30, 0.84)),
    rgba(10, 12, 20, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(0, 209, 255, 0.11);
}

.sb-el-location-vps-node--2 {
  min-height: 136px;
}

.sb-el-location-vps-node--3 {
  min-height: 96px;
}

.sb-el-location-vps-node--4 {
  min-height: 124px;
}

.sb-el-location-vps-node i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(75, 241, 255, 0.42);
}

.sb-el-location-vps-node b {
  position: absolute;
  top: 10px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sb-status-uptime);
  box-shadow: 0 0 9px rgba(0, 255, 102, 0.68);
}

.sb-el-location-vps-cluster > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 8px 14px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 17, 30, 0.82);
  color: var(--sb-tertiary);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.sb-el-location-vps-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: clamp(14px, 1.6vw, 22px) auto 0;
  max-width: 510px;
}

.sb-el-location-vps-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.74);
  color: rgba(230, 247, 255, 0.86);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.sb-el-location-vps-chip .sb-icon {
  width: 16px;
  height: 16px;
  color: var(--sb-tertiary);
}

.sb-el-location-vps-micro-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.sb-el-location-vps-micro-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  max-width: min(240px, 50%);
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.88);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 209, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sb-el-location-vps-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 21px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 9px;
}

.sb-el-location-vps-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-location-vps-micro-card--location { top: -5%; left: 5%; }
.sb-el-location-vps-micro-card--kvm { top: -2%; right: 2%; }
.sb-el-location-vps-micro-card--os { top: 38%; left: -5%; }
.sb-el-location-vps-micro-card--ip { top: 49%; right: -6%; }
.sb-el-location-vps-micro-card--storage { bottom: 2%; left: 8%; }
.sb-el-location-vps-micro-card--ddos { right: 8%; bottom: 0; }

.sb-el-location-vps-hero--usa .sb-el-location-vps-frame,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-frame,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-frame,
.sb-el-location-vps-hero--uk .sb-el-location-vps-frame,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-frame,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-frame,
.sb-el-location-vps-hero--france .sb-el-location-vps-frame,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-frame,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-frame,
.sb-el-location-vps-hero--germany .sb-el-location-vps-frame,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-frame,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-frame {
  overflow: hidden;
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--uk .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--france .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--germany .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-frame::after,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-frame::after {
  opacity: 0.78;
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--uk .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--france .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--germany .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-chip-row,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-chip-row {
  max-width: 430px;
  margin-top: clamp(12px, 1.3vw, 18px);
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-chip,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-chip,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-chip,
.sb-el-location-vps-hero--uk .sb-el-location-vps-chip,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-chip,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-chip,
.sb-el-location-vps-hero--france .sb-el-location-vps-chip,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-chip,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-chip,
.sb-el-location-vps-hero--germany .sb-el-location-vps-chip,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-chip,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-chip {
  min-height: 28px;
  padding: 6px 9px;
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--uk .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--france .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--germany .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-micro-card,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-micro-card {
  max-width: min(205px, 46%);
  min-height: 34px;
  padding: 7px 10px;
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--uk .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--france .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--germany .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-micro-card--location,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-micro-card--location {
  top: 2%;
  left: 7%;
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--uk .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--france .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--germany .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-micro-card--kvm,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-micro-card--kvm {
  top: 5%;
  right: 4%;
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--uk .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--france .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--germany .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-micro-card--os,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-micro-card--os {
  top: 42%;
  left: 4%;
}

.sb-el-location-vps-hero--usa .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--usa-linux-vps .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--usa-windows-vps .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--uk .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--uk-linux-vps .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--uk-windows-vps .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--france .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--france-linux-vps .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--france-windows-vps .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--germany .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--germany-linux-vps .sb-el-location-vps-micro-card--ip,
.sb-el-location-vps-hero--germany-windows-vps .sb-el-location-vps-micro-card--ip {
  top: 48%;
  right: 4%;
}

.sb-el-location-vps-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-location-vps-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-location-vps-feature-strip-html,
.sb-el-location-vps-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-location-vps-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-location-vps-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-location-vps-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-location-vps-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-location-vps-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-location-vps-feature-strip + .sb-el-service-section--turkey-vps,
.sb-el-location-vps-feature-strip + .sb-el-service-section--netherland-vps,
.sb-el-location-vps-feature-strip + .sb-el-service-section--usa-cloud-vps,
.sb-el-location-vps-feature-strip + .sb-el-service-section--united-kingdom-vps,
.sb-el-location-vps-feature-strip + .sb-el-service-section--france-vps,
.sb-el-location-vps-feature-strip + .sb-el-service-section--germany-vps,
.sb-el-location-vps-feature-strip + .sb-el-service-section--location-os-vps {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-location-dedicated-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 74% 36%, rgba(0, 209, 255, 0.13), transparent 29rem),
    radial-gradient(circle at 32% 72%, rgba(75, 241, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-location-dedicated-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-location-dedicated-hero::after {
  position: absolute;
  inset: 15% -10% auto 51%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.15), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-location-dedicated-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-location-dedicated-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-location-dedicated-hero .sb-el-h1,
.sb-el-location-dedicated-hero .sb-el-h1 .elementor-heading-title {
  max-width: 790px;
  font-size: clamp(52px, 6.9vw, 80px);
  line-height: 0.995;
}

.sb-el-location-dedicated-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-location-dedicated-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-location-dedicated-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-location-dedicated-hero .sb-el-button .elementor-button,
.sb-el-location-dedicated-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-location-dedicated-hero .sb-el-button--primary .elementor-button,
.sb-el-location-dedicated-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-location-dedicated-hero .sb-el-button--secondary .elementor-button,
.sb-el-location-dedicated-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-location-dedicated-visual {
  min-height: clamp(410px, 36vw, 550px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-location-dedicated-visual > .e-con-inner,
.sb-el-location-dedicated-visual-html,
.sb-el-location-dedicated-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-location-dedicated-plane {
  position: relative;
  width: 100%;
}

.sb-el-location-dedicated-frame {
  position: relative;
  min-height: clamp(410px, 36vw, 550px);
  padding: clamp(16px, 2.2vw, 26px);
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 50% 32%, rgba(75, 241, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 36px rgba(0, 209, 255, 0.14),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-location-dedicated-frame::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: calc(var(--sb-radius-xl) - 5px);
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.sb-el-location-dedicated-frame::after {
  position: absolute;
  inset: 11% 14% 13%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.12), transparent 70%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.sb-el-location-dedicated-route-map,
.sb-el-location-dedicated-image-shell,
.sb-el-location-dedicated-micro-layer {
  position: relative;
  z-index: 2;
}

.sb-el-location-dedicated-route-map {
  position: absolute;
  inset: 24px 26px auto;
  z-index: 3;
  min-height: 112px;
  opacity: 0.62;
  pointer-events: none;
}

.sb-el-location-dedicated-region,
.sb-el-location-dedicated-latency {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius-sm);
  background: rgba(8, 17, 30, 0.72);
  color: var(--sb-tertiary);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.09);
}

.sb-el-location-dedicated-region {
  top: 26px;
  left: 45%;
  transform: translateX(-50%);
}

.sb-el-location-dedicated-marker {
  position: absolute;
  top: 45px;
  left: 39%;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(75, 241, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.16);
}

.sb-el-location-dedicated-marker i {
  position: absolute;
  inset: 9px;
  display: block;
  border-radius: inherit;
  background: var(--sb-tertiary);
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.8);
}

.sb-el-location-dedicated-marker::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: inherit;
  content: "";
  opacity: 0.72;
}

.sb-el-location-dedicated-route {
  position: absolute;
  top: 45px;
  height: 1px;
  border-top: 1px dashed rgba(75, 241, 255, 0.34);
  filter: drop-shadow(0 0 6px rgba(0, 209, 255, 0.18));
  transform-origin: left center;
}

.sb-el-location-dedicated-route--west {
  left: 7%;
  width: 32%;
  transform: rotate(-12deg);
}

.sb-el-location-dedicated-route--east {
  left: 41%;
  width: 47%;
  transform: rotate(9deg);
}

.sb-el-location-dedicated-latency--west {
  top: 6px;
  left: 2%;
}

.sb-el-location-dedicated-latency--east {
  top: 74px;
  right: 1%;
}

.sb-el-location-dedicated-image-shell {
  display: grid;
  align-items: center;
  min-height: clamp(350px, 31vw, 480px);
  padding: clamp(38px, 4.4vw, 64px) 0 clamp(18px, 2.2vw, 28px);
}

.sb-el-location-dedicated-image-shell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(0, 209, 255, 0.16))
    drop-shadow(0 24px 46px rgba(0, 0, 0, 0.28));
}

.sb-el-location-dedicated-micro-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.sb-el-location-dedicated-micro-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  max-width: min(245px, 54%);
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(75, 241, 255, 0.32);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.88);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 16px rgba(0, 209, 255, 0.08);
  backdrop-filter: blur(14px);
}

.sb-el-location-dedicated-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 21px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 9px;
}

.sb-el-location-dedicated-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-location-dedicated-micro-card--location { top: 3%; left: 5%; }
.sb-el-location-dedicated-micro-card--kvm { top: 10%; right: 3%; }
.sb-el-location-dedicated-micro-card--uplink { bottom: 18%; left: 7%; }
.sb-el-location-dedicated-micro-card--ddos { right: 7%; bottom: 6%; }

.sb-el-location-dedicated-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-location-dedicated-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-location-dedicated-feature-strip-html,
.sb-el-location-dedicated-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-location-dedicated-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-location-dedicated-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-location-dedicated-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-location-dedicated-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-location-dedicated-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-location-dedicated-feature-strip + .sb-el-service-section--turkey-dedicated,
.sb-el-location-dedicated-feature-strip + .sb-el-service-section--netherlands-dedicated,
.sb-el-location-dedicated-feature-strip + .sb-el-service-section--usa-dedicated,
.sb-el-location-dedicated-feature-strip + .sb-el-dedicated-location-netherlands,
.sb-el-location-dedicated-feature-strip + .sb-el-dedicated-location-usa {
  padding-top: clamp(86px, 8.5vw, 124px);
}

@media (prefers-reduced-motion: no-preference) {
  .sb-el-location-dedicated-marker::after {
    animation: sb-location-dedicated-marker-pulse 4.8s ease-out infinite;
  }
}

@keyframes sb-location-dedicated-marker-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.86);
  }

  62% {
    opacity: 0;
    transform: scale(1.85);
  }

  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

.sb-el-about-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 76% 36%, rgba(0, 209, 255, 0.13), transparent 29rem),
    radial-gradient(circle at 36% 70%, rgba(75, 241, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-about-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.042) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-about-hero::after {
  position: absolute;
  inset: 15% -10% auto 51%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.15), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-about-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-about-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-about-hero .sb-el-h1,
.sb-el-about-hero .sb-el-h1 .elementor-heading-title {
  max-width: 790px;
  font-size: clamp(50px, 6.75vw, 77px);
  line-height: 0.995;
}

.sb-el-about-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-about-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-about-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-about-hero .sb-el-button .elementor-button,
.sb-el-about-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-about-hero .sb-el-button--primary .elementor-button,
.sb-el-about-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-about-hero .sb-el-button--secondary .elementor-button,
.sb-el-about-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-about-visual {
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-about-visual > .e-con-inner,
.sb-el-about-visual-html,
.sb-el-about-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-about-presence-plane {
  position: relative;
  width: 100%;
}

.sb-el-about-presence-frame {
  position: relative;
  padding: 9px;
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-about-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
}

.sb-el-about-image-shell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: cover;
}

.sb-el-about-micro-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-about-micro-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: min(250px, 54%);
  padding: 8px 11px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.86);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 209, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sb-el-about-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 21px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 9px;
}

.sb-el-about-micro-mark::before {
  content: attr(data-mark);
}

.sb-el-about-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-about-micro-card--uk {
  top: 5%;
  left: 4%;
}

.sb-el-about-micro-card--turkey {
  top: 5%;
  right: 3%;
}

.sb-el-about-micro-card--provider {
  top: 44%;
  left: 1%;
}

.sb-el-about-micro-card--enterprise {
  top: 44%;
  right: 1%;
}

.sb-el-about-micro-card--managed {
  bottom: 5%;
  left: 6%;
}

.sb-el-about-micro-card--global {
  right: 6%;
  bottom: 5%;
}

.sb-el-about-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-about-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-about-feature-strip-html,
.sb-el-about-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-about-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-about-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-about-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-about-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-about-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-about-feature-strip + .sb-el-service-section--about {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-contact-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 76% 36%, rgba(0, 209, 255, 0.13), transparent 29rem),
    radial-gradient(circle at 34% 70%, rgba(75, 241, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-contact-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.042) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-contact-hero::after {
  position: absolute;
  inset: 15% -10% auto 51%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.15), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-contact-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-contact-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-contact-hero .sb-el-h1,
.sb-el-contact-hero .sb-el-h1 .elementor-heading-title {
  max-width: 790px;
  font-size: clamp(50px, 6.75vw, 77px);
  line-height: 0.995;
}

.sb-el-contact-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-contact-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-contact-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-contact-hero .sb-el-button .elementor-button,
.sb-el-contact-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-contact-hero .sb-el-button--primary .elementor-button,
.sb-el-contact-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-contact-hero .sb-el-button--secondary .elementor-button,
.sb-el-contact-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-contact-visual {
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-contact-visual > .e-con-inner,
.sb-el-contact-visual-html,
.sb-el-contact-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-contact-consultation-plane {
  position: relative;
  width: 100%;
}

.sb-el-contact-consultation-frame {
  position: relative;
  padding: 9px;
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-contact-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.78);
}

.sb-el-contact-image-shell img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  object-fit: contain;
  object-position: center;
}

.sb-el-contact-micro-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-contact-micro-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: min(230px, 50%);
  padding: 8px 11px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius);
  background: rgba(8, 17, 30, 0.86);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 209, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sb-el-contact-micro-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 21px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-size: 9px;
}

.sb-el-contact-micro-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-el-contact-micro-card--sales {
  top: 7%;
  left: 4%;
}

.sb-el-contact-micro-card--support {
  top: 7%;
  right: 4%;
}

.sb-el-contact-micro-card--client {
  bottom: 7%;
  left: 6%;
}

.sb-el-contact-micro-card--custom {
  right: 6%;
  bottom: 7%;
}

.sb-el-contact-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-contact-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-contact-feature-strip-html,
.sb-el-contact-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-contact-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-contact-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-contact-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-contact-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-contact-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-contact-feature-strip + .sb-el-service-section--contact {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-faq-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  overflow-x: hidden !important;
  max-width: none;
  min-height: min(675px, calc(100vh - var(--sb-header-height)));
  padding: clamp(64px, 6vw, 100px) var(--sb-page-margin) clamp(56px, 5.5vw, 84px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 76% 36%, rgba(0, 209, 255, 0.13), transparent 29rem),
    radial-gradient(circle at 35% 72%, rgba(75, 241, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-faq-hero::before {
  position: absolute;
  inset: 30% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-faq-hero::after {
  position: absolute;
  inset: 15% -10% auto 51%;
  z-index: -1;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.14), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-faq-hero > .e-con-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr) !important;
  gap: clamp(32px, 4vw, 58px);
}

.sb-el-faq-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-faq-hero .sb-el-h1,
.sb-el-faq-hero .sb-el-h1 .elementor-heading-title {
  max-width: 820px;
  font-size: clamp(50px, 6.45vw, 74px);
  line-height: 0.995;
}

.sb-el-faq-hero .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-faq-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

.sb-el-faq-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.sb-el-faq-hero .sb-el-button .elementor-button,
.sb-el-faq-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

.sb-el-faq-hero .sb-el-button--primary .elementor-button,
.sb-el-faq-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.sb-el-faq-hero .sb-el-button--secondary .elementor-button,
.sb-el-faq-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb-el-faq-visual {
  min-height: clamp(390px, 35vw, 520px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-faq-visual > .e-con-inner,
.sb-el-faq-visual-html,
.sb-el-faq-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-faq-knowledge-plane {
  position: relative;
  width: 100%;
}

.sb-el-faq-knowledge-frame {
  position: relative;
  min-height: clamp(390px, 35vw, 520px);
  padding: clamp(20px, 2.5vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 24% 18%, rgba(75, 241, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-el-faq-knowledge-frame::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: calc(var(--sb-radius-xl) - 5px);
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.68;
  pointer-events: none;
}

.sb-el-faq-visual-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin-inline: auto;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(180deg, rgba(5, 20, 36, 0.86), rgba(5, 7, 10, 0.8)),
    rgba(5, 7, 10, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.26);
}

.sb-el-faq-visual-topline,
.sb-el-faq-visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(230, 247, 255, 0.66);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.sb-el-faq-visual-footer {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 16px auto 0;
}

.sb-el-faq-search {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(75, 241, 255, 0.3);
  border-radius: var(--sb-radius);
  background: rgba(0, 209, 255, 0.08);
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sb-el-faq-search-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--sb-tertiary);
  border-radius: 999px;
  filter: drop-shadow(0 0 8px rgba(0, 209, 255, 0.32));
}

.sb-el-faq-search-icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--sb-tertiary);
  content: "";
  transform: rotate(45deg);
}

.sb-el-faq-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sb-el-faq-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius-sm);
  background: rgba(8, 17, 30, 0.72);
  color: rgba(230, 247, 255, 0.84);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.sb-el-faq-visual-rows {
  display: grid;
  gap: 10px;
}

.sb-el-faq-visual-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(164, 230, 255, 0.14);
  border-radius: var(--sb-radius);
  background: rgba(10, 12, 20, 0.58);
}

.sb-el-faq-visual-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  border: 1px solid rgba(75, 241, 255, 0.28);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.11);
  color: var(--sb-tertiary);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
}

.sb-el-faq-visual-question {
  min-width: 0;
  color: rgba(230, 247, 255, 0.86);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-faq-visual-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(75, 241, 255, 0.3);
  border-radius: 999px;
}

.sb-el-faq-visual-toggle::before,
.sb-el-faq-visual-toggle::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--sb-tertiary);
  content: "";
  transform: translate(-50%, -50%);
}

.sb-el-faq-visual-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sb-el-faq-visual-connectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-faq-visual-connectors span {
  position: absolute;
  border: 1px solid rgba(75, 241, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.09);
}

.sb-el-faq-visual-connectors span:nth-child(1) {
  top: 20%;
  left: -12%;
  width: 34%;
  height: 42%;
  border-right: 0;
}

.sb-el-faq-visual-connectors span:nth-child(2) {
  right: -14%;
  bottom: 14%;
  width: 38%;
  height: 38%;
  border-left: 0;
}

.sb-el-faq-visual-connectors span:nth-child(3) {
  top: 14%;
  right: 18%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.1), transparent 70%);
}

.sb-el-faq-feature-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-el-faq-feature-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 24px;
}

.sb-el-faq-feature-strip-html,
.sb-el-faq-feature-strip-html .elementor-widget-container {
  width: 100%;
}

.sb-el-faq-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.sb-el-faq-feature {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-el-faq-feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-el-faq-feature-icon .sb-icon {
  width: 27px;
  height: 27px;
}

.sb-el-faq-feature-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-el-faq-feature-strip + .sb-el-service-section--faq,
.sb-el-faq-feature-strip + .sb-el-faq-group {
  padding-top: clamp(86px, 8.5vw, 124px);
}

.sb-el-service-visual--dedicated .sb-el-service-visual-art::before {
  inset: 12% 14%;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-xl);
  background:
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.1) 0 1px, transparent 1px 54px),
    linear-gradient(135deg, rgba(0, 209, 255, 0.14), rgba(5, 7, 10, 0.34));
  box-shadow:
    inset 0 0 44px rgba(0, 209, 255, 0.09),
    0 0 42px rgba(0, 209, 255, 0.14);
}

.sb-el-service-visual--dedicated .sb-el-service-visual-art::after {
  inset: 24% 22%;
  background:
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.66), transparent) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.5), transparent) 0 30% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.5), transparent) 0 60% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.66), transparent) 0 100% / 100% 2px no-repeat;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.38));
}

.sb-el-service-visual--dedicated .sb-el-service-visual-art span {
  position: absolute;
  left: 20%;
  right: 20%;
  z-index: 2;
  height: 30px;
  border: 1px solid rgba(164, 230, 255, 0.16);
  border-radius: var(--sb-radius);
  background:
    linear-gradient(90deg, rgba(0, 209, 255, 0.14), transparent),
    rgba(10, 12, 20, 0.72);
}

.sb-el-service-visual--dedicated .sb-el-service-visual-art span:nth-child(1) { top: 22%; }
.sb-el-service-visual--dedicated .sb-el-service-visual-art span:nth-child(2) { top: 34%; }
.sb-el-service-visual--dedicated .sb-el-service-visual-art span:nth-child(3) { top: 46%; }
.sb-el-service-visual--dedicated .sb-el-service-visual-art span:nth-child(4) { top: 58%; }
.sb-el-service-visual--dedicated .sb-el-service-visual-art span:nth-child(5) { top: 70%; }
.sb-el-service-visual--dedicated .sb-el-service-visual-art span:nth-child(6) { display: none; }

.sb-el-service-visual--colocation .sb-el-service-visual-art::before {
  inset: 11% 13%;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius-xl);
  background:
    repeating-linear-gradient(90deg, rgba(164, 230, 255, 0.08) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.1) 0 1px, transparent 1px 58px),
    radial-gradient(circle at 34% 20%, rgba(0, 209, 255, 0.2), transparent 9rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(5, 7, 10, 0.34));
  box-shadow:
    inset 0 0 42px rgba(0, 209, 255, 0.08),
    0 0 44px rgba(0, 209, 255, 0.13);
}

.sb-el-service-visual--colocation .sb-el-service-visual-art::after {
  inset: 22% 18% 18%;
  border-inline: 1px solid rgba(164, 230, 255, 0.18);
  background:
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.36), transparent) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.24), transparent) 0 28% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.24), transparent) 0 56% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.36), transparent) 0 100% / 100% 2px no-repeat;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.28));
}

.sb-el-service-visual--colocation .sb-el-service-visual-art span {
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 112px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius);
  background:
    linear-gradient(180deg, rgba(0, 209, 255, 0.15), transparent 40%),
    rgba(10, 12, 20, 0.74);
  box-shadow: 0 0 24px rgba(0, 209, 255, 0.1);
}

.sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(1) { left: 22%; top: 26%; }
.sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(2) { left: 36%; top: 18%; height: 150px; }
.sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(3) { left: 50%; top: 26%; }
.sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(4) { right: 22%; top: 18%; height: 150px; }
.sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(5) { left: 28%; bottom: 16%; width: 44px; height: 44px; border-radius: 999px; }
.sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(6) { right: 28%; bottom: 16%; width: 44px; height: 44px; border-radius: 999px; }

.sb-el-service-visual--locations .sb-el-service-visual-art::before {
  inset: 12% 9%;
  border: 1px solid rgba(164, 230, 255, 0.11);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 48%, rgba(0, 209, 255, 0.22), transparent 7rem),
    radial-gradient(circle at 48% 32%, rgba(0, 209, 255, 0.16), transparent 8rem),
    radial-gradient(circle at 72% 54%, rgba(235, 178, 255, 0.13), transparent 8rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.1), rgba(5, 7, 10, 0.28));
  box-shadow:
    inset 0 0 42px rgba(0, 209, 255, 0.07),
    0 0 42px rgba(0, 209, 255, 0.11);
}

.sb-el-service-visual--locations .sb-el-service-visual-art::after {
  inset: 20% 14%;
  background:
    linear-gradient(11deg, transparent 18%, rgba(75, 241, 255, 0.42), transparent 52%),
    linear-gradient(-9deg, transparent 28%, rgba(75, 241, 255, 0.32), transparent 70%),
    linear-gradient(28deg, transparent 34%, rgba(235, 178, 255, 0.2), transparent 68%);
  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.28));
}

.sb-el-service-visual--locations .sb-el-service-visual-art span {
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(75, 241, 255, 0.32), transparent 48%),
    rgba(10, 12, 20, 0.78);
  box-shadow: 0 0 24px rgba(0, 209, 255, 0.16);
}

.sb-el-service-visual--locations .sb-el-service-visual-art span:nth-child(1) { top: 46%; left: 22%; }
.sb-el-service-visual--locations .sb-el-service-visual-art span:nth-child(2) { top: 30%; left: 42%; }
.sb-el-service-visual--locations .sb-el-service-visual-art span:nth-child(3) { top: 44%; left: 54%; }
.sb-el-service-visual--locations .sb-el-service-visual-art span:nth-child(4) { top: 38%; right: 28%; }
.sb-el-service-visual--locations .sb-el-service-visual-art span:nth-child(5) { bottom: 26%; right: 20%; }
.sb-el-service-visual--locations .sb-el-service-visual-art span:nth-child(6) { bottom: 24%; left: 34%; }

.sb-el-service-visual--turkey-vps .sb-el-service-visual-art::before {
  inset: 13% 10%;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 46%, rgba(0, 209, 255, 0.22), transparent 8rem),
    radial-gradient(circle at 64% 35%, rgba(75, 241, 255, 0.14), transparent 9rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.13), rgba(5, 7, 10, 0.34));
  box-shadow:
    inset 0 0 44px rgba(0, 209, 255, 0.08),
    0 0 44px rgba(0, 209, 255, 0.14);
}

.sb-el-service-visual--turkey-vps .sb-el-service-visual-art::after {
  inset: 20% 14%;
  background:
    linear-gradient(18deg, transparent 16%, rgba(75, 241, 255, 0.38), transparent 54%),
    linear-gradient(-12deg, transparent 24%, rgba(75, 241, 255, 0.34), transparent 64%),
    linear-gradient(90deg, transparent, rgba(235, 178, 255, 0.16), transparent) 0 54% / 100% 2px no-repeat;
  opacity: 0.92;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.3));
}

.sb-el-service-visual--turkey-vps .sb-el-service-visual-art span {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(164, 230, 255, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 34% 28%, rgba(75, 241, 255, 0.34), transparent 48%),
    linear-gradient(145deg, rgba(0, 209, 255, 0.12), rgba(10, 12, 20, 0.82));
  box-shadow: 0 0 24px rgba(0, 209, 255, 0.16);
}

.sb-el-service-visual--turkey-vps .sb-el-service-visual-art span:nth-child(1) { top: 20%; left: 20%; }
.sb-el-service-visual--turkey-vps .sb-el-service-visual-art span:nth-child(2) { top: 34%; right: 18%; }
.sb-el-service-visual--turkey-vps .sb-el-service-visual-art span:nth-child(3) { right: 32%; bottom: 20%; }
.sb-el-service-visual--turkey-vps .sb-el-service-visual-art span:nth-child(4) { bottom: 28%; left: 18%; }
.sb-el-service-visual--turkey-vps .sb-el-service-visual-art span:nth-child(5) { top: 46%; left: 45%; width: 36px; height: 36px; border-radius: 999px; }
.sb-el-service-visual--turkey-vps .sb-el-service-visual-art span:nth-child(6) { bottom: 14%; right: 16%; width: 34px; height: 34px; border-radius: 999px; }

.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art::before {
  inset: 10% 12%;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius-xl);
  background:
    repeating-linear-gradient(90deg, rgba(164, 230, 255, 0.08) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.11) 0 1px, transparent 1px 52px),
    radial-gradient(circle at 32% 22%, rgba(0, 209, 255, 0.2), transparent 9rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.13), rgba(5, 7, 10, 0.36));
  box-shadow:
    inset 0 0 48px rgba(0, 209, 255, 0.09),
    0 0 46px rgba(0, 209, 255, 0.15);
}

.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art::after {
  inset: 22% 18%;
  border-inline: 1px solid rgba(164, 230, 255, 0.16);
  background:
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.66), transparent) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.48), transparent) 0 25% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.48), transparent) 0 50% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.48), transparent) 0 75% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.66), transparent) 0 100% / 100% 2px no-repeat;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.36));
}

.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span {
  position: absolute;
  left: 18%;
  right: 18%;
  z-index: 2;
  height: 28px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius);
  background:
    linear-gradient(90deg, rgba(0, 209, 255, 0.16), transparent 54%),
    rgba(10, 12, 20, 0.74);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.11);
}

.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span:nth-child(1) { top: 21%; }
.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span:nth-child(2) { top: 33%; }
.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span:nth-child(3) { top: 45%; }
.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span:nth-child(4) { top: 57%; }
.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span:nth-child(5) { top: 69%; }
.sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span:nth-child(6) { right: 12%; left: auto; top: 17%; width: 42px; height: 42px; border-radius: 999px; }

.sb-el-service-visual--about .sb-el-service-visual-art::before,
.sb-el-service-visual--contact .sb-el-service-visual-art::before,
.sb-el-service-visual--faq .sb-el-service-visual-art::before {
  inset: 12% 10%;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 30%, rgba(0, 209, 255, 0.2), transparent 8rem),
    radial-gradient(circle at 72% 64%, rgba(235, 178, 255, 0.1), transparent 9rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(5, 7, 10, 0.34));
  box-shadow:
    inset 0 0 42px rgba(0, 209, 255, 0.08),
    0 0 42px rgba(0, 209, 255, 0.13);
}

.sb-el-service-visual--about .sb-el-service-visual-art::after {
  inset: 22% 16%;
  background:
    linear-gradient(18deg, transparent 18%, rgba(75, 241, 255, 0.34), transparent 56%),
    linear-gradient(-16deg, transparent 30%, rgba(75, 241, 255, 0.28), transparent 70%),
    linear-gradient(90deg, transparent, rgba(235, 178, 255, 0.14), transparent) 0 54% / 100% 2px no-repeat;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.28));
}

.sb-el-service-visual--contact .sb-el-service-visual-art::after {
  inset: 20% 16%;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(90deg, rgba(75, 241, 255, 0.36), transparent) 0 20% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.32), transparent) 0 50% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(235, 178, 255, 0.18), transparent) 0 80% / 100% 2px no-repeat;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.28));
}

.sb-el-service-visual--faq .sb-el-service-visual-art::after {
  inset: 18% 16%;
  background:
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.12) 0 1px, transparent 1px 42px),
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.3), transparent) 0 38% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.26), transparent) 0 72% / 100% 2px no-repeat;
  filter: drop-shadow(0 0 14px rgba(0, 209, 255, 0.24));
}

.sb-el-service-visual--about .sb-el-service-visual-art span,
.sb-el-service-visual--contact .sb-el-service-visual-art span,
.sb-el-service-visual--faq .sb-el-service-visual-art span {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 34% 28%, rgba(75, 241, 255, 0.3), transparent 48%),
    rgba(10, 12, 20, 0.8);
  box-shadow: 0 0 22px rgba(0, 209, 255, 0.14);
}

.sb-el-service-visual--about .sb-el-service-visual-art span:nth-child(1),
.sb-el-service-visual--contact .sb-el-service-visual-art span:nth-child(1),
.sb-el-service-visual--faq .sb-el-service-visual-art span:nth-child(1) { top: 22%; left: 20%; }

.sb-el-service-visual--about .sb-el-service-visual-art span:nth-child(2),
.sb-el-service-visual--contact .sb-el-service-visual-art span:nth-child(2),
.sb-el-service-visual--faq .sb-el-service-visual-art span:nth-child(2) { top: 30%; right: 20%; }

.sb-el-service-visual--about .sb-el-service-visual-art span:nth-child(3),
.sb-el-service-visual--contact .sb-el-service-visual-art span:nth-child(3),
.sb-el-service-visual--faq .sb-el-service-visual-art span:nth-child(3) { right: 32%; bottom: 24%; }

.sb-el-service-visual--about .sb-el-service-visual-art span:nth-child(4),
.sb-el-service-visual--contact .sb-el-service-visual-art span:nth-child(4),
.sb-el-service-visual--faq .sb-el-service-visual-art span:nth-child(4) { bottom: 30%; left: 24%; }

.sb-el-service-visual--about .sb-el-service-visual-art span:nth-child(5),
.sb-el-service-visual--contact .sb-el-service-visual-art span:nth-child(5),
.sb-el-service-visual--faq .sb-el-service-visual-art span:nth-child(5) { top: 48%; left: 45%; width: 34px; height: 34px; border-radius: 999px; }

.sb-el-service-visual--about .sb-el-service-visual-art span:nth-child(6),
.sb-el-service-visual--contact .sb-el-service-visual-art span:nth-child(6),
.sb-el-service-visual--faq .sb-el-service-visual-art span:nth-child(6) { bottom: 16%; right: 18%; width: 34px; height: 34px; border-radius: 999px; }

.sb-el-service-proof {
  max-width: none;
  padding-block: clamp(30px, 4vw, 52px);
  border-block: 1px solid rgba(60, 73, 78, 0.32);
  background: rgba(5, 7, 10, 0.58);
}

.sb-el-service-proof > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
}

.sb-el-service-proof .sb-el-card {
  min-height: 168px;
  padding: 22px;
}

.sb-el-service-proof .sb-el-card .sb-el-h3 .elementor-heading-title {
  font-size: 18px;
}

.sb-el-service-section {
  padding-block: clamp(70px, 8vw, 112px);
}

.sb-el-service-cards .sb-el-card,
.sb-el-benefit-cards .sb-el-card,
.sb-el-direct-control .sb-el-card,
.sb-el-region-cards .sb-el-card {
  min-height: 260px;
}

.sb-el-service-cards .sb-el-card-grid > .e-con-inner {
  gap: 20px;
}

.sb-el-region-cards .sb-el-card {
  min-height: 300px;
}

.sb-el-service-section--turkey-vps .sb-el-card,
.sb-el-service-section--netherland-vps .sb-el-card,
.sb-el-service-section--usa-cloud-vps .sb-el-card,
.sb-el-service-section--united-kingdom-vps .sb-el-card,
.sb-el-service-section--france-vps .sb-el-card,
.sb-el-service-section--germany-vps .sb-el-card,
.sb-el-service-section--location-os-vps .sb-el-card,
.sb-el-service-section--turkey-dedicated .sb-el-card,
.sb-el-service-section--netherlands-dedicated .sb-el-card,
.sb-el-service-section--usa-dedicated .sb-el-card,
.sb-el-dedicated-location-netherlands .sb-el-card,
.sb-el-dedicated-location-usa .sb-el-card,
.sb-el-service-section--about .sb-el-card,
.sb-el-service-section--contact .sb-el-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 209, 255, 0.085), transparent 11rem),
    linear-gradient(145deg, rgba(10, 12, 20, 0.92), rgba(5, 7, 10, 0.84));
}

.sb-el-service-section--turkey-vps .sb-el-card:hover,
.sb-el-service-section--netherland-vps .sb-el-card:hover,
.sb-el-service-section--usa-cloud-vps .sb-el-card:hover,
.sb-el-service-section--united-kingdom-vps .sb-el-card:hover,
.sb-el-service-section--france-vps .sb-el-card:hover,
.sb-el-service-section--germany-vps .sb-el-card:hover,
.sb-el-service-section--location-os-vps .sb-el-card:hover,
.sb-el-service-section--turkey-dedicated .sb-el-card:hover,
.sb-el-service-section--netherlands-dedicated .sb-el-card:hover,
.sb-el-service-section--usa-dedicated .sb-el-card:hover,
.sb-el-dedicated-location-netherlands .sb-el-card:hover,
.sb-el-dedicated-location-usa .sb-el-card:hover,
.sb-el-service-section--about .sb-el-card:hover,
.sb-el-service-section--contact .sb-el-card:hover {
  border-color: rgba(164, 230, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 68px rgba(0, 209, 255, 0.12);
}

.sb-el-service-section--turkey-vps .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--netherland-vps .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--usa-cloud-vps .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--united-kingdom-vps .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--france-vps .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--germany-vps .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--location-os-vps .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--turkey-dedicated .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--netherlands-dedicated .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--usa-dedicated .sb-el-card-grid--three > .e-con-inner,
.sb-el-dedicated-location-netherlands .sb-el-card-grid--three > .e-con-inner,
.sb-el-dedicated-location-usa .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--about .sb-el-card-grid--three > .e-con-inner,
.sb-el-service-section--contact .sb-el-card-grid--three > .e-con-inner {
  gap: 22px;
}

.sb-el-service-section--turkey-vps .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--netherland-vps .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--usa-cloud-vps .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--united-kingdom-vps .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--france-vps .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--germany-vps .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--location-os-vps .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--turkey-dedicated .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--netherlands-dedicated .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--usa-dedicated .sb-el-card-grid--three .sb-el-card,
.sb-el-dedicated-location-netherlands .sb-el-card-grid--three .sb-el-card,
.sb-el-dedicated-location-usa .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--about .sb-el-card-grid--three .sb-el-card,
.sb-el-service-section--contact .sb-el-card-grid--three .sb-el-card {
  min-height: 285px;
}

.sb-el-contact-form-section > .e-con-inner {
  max-width: 1120px;
}

.sb-el-contact-form-section .sb-el-form .elementor-widget-container {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 209, 255, 0.1), transparent 14rem),
    rgba(8, 11, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 70px rgba(0, 0, 0, 0.24);
}

.sb-el-faq-group {
  padding-block: clamp(44px, 5vw, 78px);
}

.sb-el-faq-group .sb-el-section-heading {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.sb-el-faq-group .sb-el-section-heading .sb-el-h2 .elementor-heading-title {
  font-size: clamp(30px, 4vw, 42px);
}

.sb-el-os-section {
  padding-block: clamp(48px, 6vw, 82px);
}

.sb-el-os-section .sb-el-chip p {
  border-color: rgba(164, 230, 255, 0.28);
  background:
    radial-gradient(circle at 18% 18%, rgba(75, 241, 255, 0.18), transparent 44%),
    rgba(10, 12, 20, 0.8);
}

.sb-el-service-final-cta--turkey-vps,
.sb-el-service-final-cta--netherland-vps,
.sb-el-service-final-cta--usa-cloud-vps,
.sb-el-service-final-cta--united-kingdom-vps,
.sb-el-service-final-cta--france-vps,
.sb-el-service-final-cta--germany-vps,
.sb-el-service-final-cta--location-os-vps,
.sb-el-service-final-cta--turkey-dedicated,
.sb-el-service-final-cta--netherlands-dedicated,
.sb-el-service-final-cta--usa-dedicated,
.sb-el-service-final-cta--about,
.sb-el-service-final-cta--contact,
.sb-el-service-final-cta--faq {
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 209, 255, 0.2), transparent 34rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.055), transparent 58%),
    var(--sb-glass-bg);
}

.sb-el-plan-grid .sb-el-card {
  min-height: 360px;
}

.sb-el-plan-price p {
  margin: 4px 0 18px;
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 14px;
  font-weight: 900;
}

.sb-el-chip-list > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sb-el-chip {
  width: auto !important;
  max-width: none !important;
}

.sb-el-chip p {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.1), rgba(0, 209, 255, 0.03)),
    rgba(10, 12, 20, 0.76);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sb-el-service-final-cta {
  max-width: 1040px;
}

.sb-el-trust-strip {
  width: 100%;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(60, 73, 78, 0.34);
  background: rgba(5, 7, 10, 0.58);
}

.sb-el-trust-strip > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  width: min(100%, var(--sb-container)) !important;
  margin-inline: auto;
  padding-block: 28px;
}

.sb-el-trust-strip .elementor-widget,
.sb-el-trust-item {
  width: auto !important;
  max-width: none !important;
  flex: 0 1 auto !important;
}

.sb-el-trust-item p,
.sb-el-location-pill p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 800;
}

.sb-el-trust-item p span,
.sb-el-location-pill p span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sb-primary-strong);
  box-shadow: 0 0 10px rgba(0, 209, 255, 0.72);
}

.sb-el-network-section {
  position: relative;
  max-width: none;
  overflow: hidden;
  border-block: 1px solid rgba(60, 73, 78, 0.32);
  background: rgba(5, 7, 10, 0.72);
}

.sb-el-network-section > .e-con-inner {
  position: relative;
  min-height: 320px;
}

.sb-el-network-map-widget,
.sb-el-network-map-widget .elementor-widget-container,
.sb-el-network-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-el-network-map::before {
  position: absolute;
  inset: 10% 4%;
  border: 1px solid rgba(164, 230, 255, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 209, 255, 0.22), transparent 7rem),
    radial-gradient(circle at 62% 34%, rgba(0, 209, 255, 0.16), transparent 8rem),
    radial-gradient(circle at 78% 56%, rgba(235, 178, 255, 0.12), transparent 8rem);
  content: "";
  filter: blur(2px);
}

.sb-el-network-map span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.48), transparent);
  transform-origin: left center;
}

.sb-el-network-map span:nth-child(1) { top: 38%; left: 18%; width: 42%; transform: rotate(8deg); }
.sb-el-network-map span:nth-child(2) { top: 58%; left: 24%; width: 54%; transform: rotate(-10deg); }
.sb-el-network-map span:nth-child(3) { top: 47%; left: 43%; width: 30%; transform: rotate(28deg); }
.sb-el-network-map span:nth-child(4) { top: 32%; left: 52%; width: 22%; transform: rotate(-22deg); }
.sb-el-network-map span:nth-child(5) { top: 66%; left: 36%; width: 26%; transform: rotate(18deg); }
.sb-el-network-map span:nth-child(6) { top: 42%; left: 28%; width: 44%; transform: rotate(-2deg); }

.sb-el-location-pills > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sb-el-location-pills .elementor-widget,
.sb-el-location-pill {
  width: auto !important;
  max-width: none !important;
  flex: 0 1 auto !important;
}

.sb-el-location-pill p {
  padding: 10px 16px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 12, 20, 0.74);
  color: var(--sb-on-surface);
}

.sb-el-highlight-section .sb-el-card {
  min-height: 250px;
  overflow: hidden;
}

.sb-el-highlight-section .sb-el-card::after {
  position: absolute;
  right: 20px;
  top: 10px;
  color: rgba(164, 230, 255, 0.06);
  font-family: var(--sb-font-heading);
  font-size: clamp(80px, 12vw, 150px);
  font-weight: 800;
  line-height: 1;
  content: "01";
}

.sb-el-highlight-section .sb-el-card:nth-child(2)::after {
  content: "02";
}

.sb-el-why-section .sb-el-card {
  min-height: auto;
  padding: 22px;
}

.sb-el-accordion .elementor-accordion-item {
  border-color: var(--sb-border-glow);
  background: rgba(10, 12, 20, 0.66);
}

.sb-el-accordion .elementor-tab-title,
.sb-el-accordion .elementor-tab-content {
  color: var(--sb-on-surface);
}

.sb-el-form .elementor-field-group label {
  color: var(--sb-on-surface);
  font-weight: 700;
}

.sb-el-form .elementor-field,
.sb-el-form .elementor-field-textual {
  border-color: rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.7);
  color: var(--sb-on-surface);
}

.sb-el-footer {
  border-top: 1px solid rgba(164, 230, 255, 0.12);
  background: rgba(5, 7, 10, 0.94);
}

.sb-el-footer-grid {
  max-width: var(--sb-container);
  margin-inline: auto;
}

.sb-el-footer-grid > .e-con-inner {
  display: grid !important;
  grid-template-columns: 1.4fr repeat(5, minmax(120px, 1fr)) !important;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
}

.sb-el-footer-title .elementor-heading-title {
  color: var(--sb-on-surface);
  font-size: 16px;
}

.sb-el-footer-bottom {
  max-width: var(--sb-container);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(164, 230, 255, 0.1);
}

.sb-el-article-template,
.sb-el-archive-template {
  max-width: 980px;
}

.sb-container {
  width: min(100% - (var(--sb-page-margin) * 2), var(--sb-container));
  margin-inline: auto;
}

.sb-section {
  padding-block: var(--sb-section-gap);
}

.sb-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.sb-glass,
.site-placeholder {
  border: 1px solid var(--sb-border-glow);
  border-radius: var(--sb-radius-lg);
  background: var(--sb-glass-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.site-placeholder {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border: 1px solid var(--sb-primary);
  border-radius: var(--sb-radius);
  background: var(--sb-surface-deep);
  color: var(--sb-primary);
  box-shadow: var(--sb-shadow-glow);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--sb-primary);
  outline-offset: 3px;
}

.sb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: var(--sb-radius-lg);
  font-family: var(--sb-font-mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.sb-button:hover {
  transform: translateY(-1px);
}

.sb-button--primary {
  border: 1px solid rgba(164, 230, 255, 0.36);
  background: linear-gradient(90deg, var(--sb-primary), var(--sb-tertiary));
  color: var(--sb-on-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.sb-button--primary:hover {
  color: var(--sb-on-primary);
  box-shadow: 0 0 24px rgba(0, 209, 255, 0.36);
}

.sb-button--secondary {
  border: 1px solid rgba(164, 230, 255, 0.3);
  background: rgba(17, 19, 27, 0.62);
  color: var(--sb-on-surface);
}

.sb-button--secondary:hover {
  border-color: rgba(164, 230, 255, 0.74);
  background: rgba(51, 52, 62, 0.5);
  color: var(--sb-primary);
}

.sb-announcement {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(164, 230, 255, 0.18);
  background: rgba(0, 209, 255, 0.06);
}

.sb-announcement--subtle {
  background: rgba(5, 7, 10, 0.78);
}

.sb-announcement--accent {
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.16), rgba(235, 178, 255, 0.08));
}

.sb-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 8px;
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.sb-announcement__link {
  color: var(--sb-on-surface);
  text-decoration: none;
}

.sb-announcement__link:hover {
  color: var(--sb-primary);
}

.sb-announcement__dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(164, 230, 255, 0.24);
  border-radius: 999px;
  background: rgba(10, 12, 20, 0.5);
  color: var(--sb-primary);
  cursor: pointer;
}

.sb-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--sb-header-height);
  border-bottom: 1px solid rgba(60, 73, 78, 0.38);
  background: rgba(17, 19, 27, 0.84);
  box-shadow: var(--sb-shadow-header);
  backdrop-filter: blur(20px);
}

.sb-site-header--static {
  position: relative;
}

.sb-site-header--layout-compact .sb-menu a {
  padding-inline: 8px;
  font-size: 13px;
}

.sb-site-header--layout-wide .sb-header__inner {
  max-width: 1440px;
}

.admin-bar .sb-site-header {
  top: 32px;
}

.admin-bar .sb-mobile-panel {
  top: 32px;
}

.sb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(12px, 1.6vw, 24px);
}

.sb-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(21px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.sb-brand:hover {
  color: var(--sb-on-surface);
}

.sb-brand__wordmark {
  line-height: 1;
}

.sb-brand__mark {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  align-items: end;
  justify-content: center;
  width: 32px;
  height: 32px;
  gap: 3px;
  border: 1px solid rgba(164, 230, 255, 0.36);
  border-radius: var(--sb-radius-md);
  background: rgba(0, 209, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.16);
}

.sb-brand__mark span {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: var(--sb-primary);
  box-shadow: 0 0 8px rgba(0, 209, 255, 0.5);
}

.sb-brand__mark span:nth-child(1) {
  height: 10px;
}

.sb-brand__mark span:nth-child(2) {
  height: 16px;
}

.sb-brand__mark span:nth-child(3) {
  height: 13px;
}

.sb-brand__logo {
  display: block;
  width: auto;
  max-height: 48px;
  object-fit: contain;
}

.sb-brand__logo--sticky,
.sb-brand__logo--mobile {
  display: none;
}

body.sb-header-scrolled .sb-brand--has-sticky .sb-brand__logo--header {
  display: none;
}

body.sb-header-scrolled .sb-brand__logo--sticky {
  display: block;
}

.sb-site-footer .sb-brand__logo {
  max-height: 40px;
}

.sb-primary-nav {
  min-width: 0;
  flex: 1 1 auto;
  margin-left: clamp(8px, 1vw, 16px);
}

.sb-menu,
.sb-mobile-menu,
.sb-footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sb-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 0.55vw, 9px);
  overflow: visible;
  white-space: nowrap;
  scrollbar-width: none;
}

.sb-menu::-webkit-scrollbar {
  display: none;
}

.sb-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px clamp(5px, 0.45vw, 8px);
  border-radius: var(--sb-radius);
  color: var(--sb-on-surface-variant);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.sb-menu a:hover,
.sb-menu .current-menu-item > a,
.sb-menu .current_page_item > a,
.sb-menu a[aria-current="page"] {
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  transform: translateY(-1px);
}

.sb-header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  white-space: nowrap;
}

.sb-link-utility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(164, 230, 255, 0.34);
  border-radius: var(--sb-radius-lg);
  background: rgba(12, 15, 24, 0.68);
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.sb-link-utility:hover {
  border-color: rgba(164, 230, 255, 0.74);
  color: var(--sb-primary);
  transform: translateY(-1px);
}

.sb-menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(164, 230, 255, 0.24);
  border-radius: var(--sb-radius-lg);
  background: rgba(10, 12, 20, 0.68);
  color: var(--sb-on-surface);
  cursor: pointer;
}

.sb-menu-toggle__bar {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.sb-menu-toggle__bar:nth-of-type(2) {
  transform: translateY(-6px);
}

.sb-menu-toggle__bar:nth-of-type(4) {
  transform: translateY(6px);
}

.sb-menu-toggle[aria-expanded="true"] .sb-menu-toggle__bar:nth-of-type(2) {
  transform: rotate(45deg);
}

.sb-menu-toggle[aria-expanded="true"] .sb-menu-toggle__bar:nth-of-type(3) {
  opacity: 0;
}

.sb-menu-toggle[aria-expanded="true"] .sb-menu-toggle__bar:nth-of-type(4) {
  transform: rotate(-45deg);
}

.sb-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: calc(var(--sb-header-height) + 40px) var(--sb-page-margin) 40px;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 209, 255, 0.14), transparent 24rem),
    rgba(5, 7, 10, 0.96);
  backdrop-filter: blur(20px);
}

.sb-mobile-panel[hidden] {
  display: none;
}

.sb-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: visible;
  white-space: normal;
}

.sb-mobile-menu a {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid rgba(60, 73, 78, 0.36);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.sb-mobile-menu a:hover,
.sb-mobile-menu .current-menu-item > a,
.sb-mobile-menu .current_page_item > a,
.sb-mobile-menu a[aria-current="page"] {
  color: var(--sb-primary);
}

.sb-mobile-actions {
  display: grid;
  gap: 12px;
}

.sb-mobile-actions .sb-button {
  width: 100%;
}

.sb-site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(60, 73, 78, 0.38);
  background: rgba(5, 7, 10, 0.96);
}

.sb-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(5, minmax(130px, 1fr));
  gap: var(--sb-gutter);
  padding-block: var(--sb-section-gap);
}

.sb-footer__brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: var(--sb-text-muted);
  font-size: 14px;
}

.sb-footer__column h2 {
  margin: 0 0 18px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 18px;
  font-weight: 600;
}

.sb-footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sb-footer-links a {
  color: var(--sb-text-muted);
  font-size: 14px;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.sb-footer-links a:hover {
  color: var(--sb-primary);
  transform: translateX(3px);
}

.sb-footer-links .current-menu-item > a,
.sb-footer-links .current_page_item > a,
.sb-footer-links a[aria-current="page"] {
  color: var(--sb-primary);
}

.sb-footer__bottom {
  padding-block: 24px 32px;
  border-top: 1px solid rgba(60, 73, 78, 0.28);
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  letter-spacing: 0;
}

.sb-footer__bottom p {
  margin: 0;
}

.site-main.sb-home-main {
  padding: 0;
}

.sb-home-section,
.sb-home-band {
  position: relative;
  z-index: 1;
  padding-block: var(--sb-section-gap);
}

.sb-home-band {
  border-block: 1px solid rgba(60, 73, 78, 0.28);
  background: rgba(5, 7, 10, 0.52);
}

.sb-section-heading {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.sb-section-heading h2,
.sb-home-hero h1,
.sb-highlight-card h3,
.sb-final-cta h2 {
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-weight: 700;
  line-height: 1.1;
}

.sb-section-heading h2 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 600;
}

.sb-section-heading p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--sb-text-muted);
  font-size: 16px;
}

.sb-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 540px) 1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 96px);
  min-height: min(700px, calc(100vh - var(--sb-header-height)));
  padding-block: clamp(66px, 7vw, 108px) clamp(58px, 6vw, 86px);
  padding-left: max(var(--sb-page-margin), calc((100vw - var(--sb-container)) / 2)) !important;
  padding-right: var(--sb-page-margin) !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
  overflow: visible;
}

.sb-home-hero::before,
.sb-home-final-cta::before {
  position: absolute;
  z-index: -1;
  width: min(540px, 70vw);
  height: min(540px, 70vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.16), transparent 68%);
  content: "";
  filter: blur(8px);
  pointer-events: none;
}

.sb-home-hero::before {
  display: none;
}

.sb-home-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.sb-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.05);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 14px;
  font-weight: 600;
}

.sb-status-dot,
.sb-trust-icon,
.sb-location-pill span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sb-status-uptime);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.72);
}

.sb-home-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6.6vw, 76px);
  line-height: 0.99;
}

.sb-home-hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, var(--sb-primary), var(--sb-tertiary));
  -webkit-background-clip: text;
  background-clip: text;
}

.sb-home-hero__content > p {
  max-width: 680px;
  margin: 0;
  color: var(--sb-text-muted);
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.65;
}

.sb-home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.sb-home-actions--center {
  justify-content: center;
}

.sb-home-hero__visual {
  position: relative;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 0;
  min-height: 0;
  overflow: visible !important;
}

.sb-home-platform-visual {
  width: 100%;
  overflow: visible;
}

.sb-home-hero-image-frame {
  /* Legacy framed wrapper — intentionally neutralized so the hero artwork
     renders edge-to-edge without a dark box around it. */
  position: static;
  display: contents;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.sb-home-hero-image-wrapper {
  position: relative;
  width: clamp(920px, 72vw, 1380px) !important;
  max-width: 1150px !important;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.sb-home-hero-image-wrapper::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 42.5% !important;
  transform: translate(-50%, -50%);
  width: min(480px, 70%);
  height: min(480px, 70%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.10), transparent 65%);
  content: "";
  filter: blur(24px);
  pointer-events: none;
}

.sb-home-hero-image {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin-inline: 0 0 !important;
  margin-left: auto !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: right center !important;
  aspect-ratio: 1264 / 691;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.34));
  transform: scale(1.15) !important;
  transform-origin: right center !important;
}

.sb-home-platform-frame {
  position: relative;
  width: 100%;
  min-height: clamp(400px, 35vw, 540px);
  padding: clamp(20px, 2.5vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 50% 42%, rgba(75, 241, 255, 0.18), transparent 17rem),
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 44px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-home-platform-frame::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: calc(var(--sb-radius-xl) - 5px);
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.sb-home-platform-frame::after {
  position: absolute;
  inset: 20% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.13), transparent 70%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.sb-home-platform-connectors {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sb-home-platform-connectors span {
  position: absolute;
  border: 1px solid rgba(75, 241, 255, 0.17);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.09);
}

.sb-home-platform-connectors span:nth-child(1) { top: 19%; left: 12%; width: 34%; height: 28%; border-right: 0; }
.sb-home-platform-connectors span:nth-child(2) { top: 18%; right: 12%; width: 34%; height: 28%; border-left: 0; }
.sb-home-platform-connectors span:nth-child(3) { right: 11%; bottom: 18%; width: 34%; height: 30%; border-left: 0; }
.sb-home-platform-connectors span:nth-child(4) { bottom: 18%; left: 11%; width: 34%; height: 30%; border-right: 0; }
.sb-home-platform-connectors span:nth-child(5) { top: 9%; left: 50%; width: 1px; height: 34%; border-width: 0 0 0 1px; border-radius: 0; }
.sb-home-platform-connectors span:nth-child(6) { left: 50%; bottom: 9%; width: 1px; height: 34%; border-width: 0 0 0 1px; border-radius: 0; }

.sb-home-platform-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: grid;
  width: min(230px, 42%);
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(180deg, rgba(5, 20, 36, 0.94), rgba(5, 7, 10, 0.86)),
    rgba(5, 7, 10, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 32px rgba(0, 209, 255, 0.2),
    0 24px 58px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  place-items: center;
  text-align: center;
}

.sb-home-platform-core__eyebrow,
.sb-home-platform-core small,
.sb-home-platform-node small {
  color: rgba(230, 247, 255, 0.64);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.sb-home-platform-core strong {
  color: #e6f7ff;
  font-family: var(--sb-font-heading);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
}

.sb-home-platform-nodes {
  position: absolute;
  inset: clamp(22px, 3vw, 36px);
  z-index: 2;
}

.sb-home-platform-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  width: min(235px, 38%);
  min-height: 66px;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.74);
  color: var(--sb-on-surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.sb-home-platform-node__icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-home-platform-node__icon .sb-icon {
  width: 28px;
  height: 28px;
}

.sb-home-platform-node__copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.sb-home-platform-node strong {
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sb-home-platform-node--vps { top: 4%; left: 5%; }
.sb-home-platform-node--dedicated { top: 4%; right: 5%; }
.sb-home-platform-node--colocation { right: 5%; bottom: 4%; }
.sb-home-platform-node--ddos { bottom: 4%; left: 5%; }
.sb-home-platform-node--locations { top: 42%; left: 0; }
.sb-home-platform-node--support { top: 42%; right: 0; }

.sb-hero-rack {
  position: absolute;
  inset: 34px 0;
  overflow: hidden;
  border-color: rgba(164, 230, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.05), rgba(5, 7, 10, 0.88)),
    radial-gradient(circle at 50% 20%, rgba(0, 209, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(20, 23, 31, 0.96), rgba(5, 7, 10, 0.96));
}

.sb-hero-rack::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.08) 0 1px, transparent 1px 44px),
    linear-gradient(90deg, transparent, rgba(164, 230, 255, 0.08), transparent);
  content: "";
}

.sb-rack-lines {
  position: absolute;
  inset: 20% 16%;
  display: grid;
  gap: 22px;
}

.sb-rack-lines span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.76), transparent);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.42);
}

.sb-floating-metric {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  padding: 16px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: var(--sb-radius-xl);
  background: rgba(10, 12, 20, 0.82);
  box-shadow: var(--sb-shadow-glow);
  backdrop-filter: blur(14px);
}

.sb-floating-metric--uptime {
  top: 58px;
  left: -24px;
}

.sb-floating-metric--support {
  right: -12px;
  bottom: 82px;
}

.sb-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 255, 102, 0.28);
  border-radius: 999px;
  background: rgba(0, 255, 102, 0.08);
  color: var(--sb-status-uptime);
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 700;
}

.sb-floating-metric--support .sb-metric-icon {
  border-color: rgba(235, 178, 255, 0.3);
  background: rgba(235, 178, 255, 0.08);
  color: var(--sb-secondary);
}

.sb-floating-metric strong,
.sb-floating-metric small {
  display: block;
}

.sb-floating-metric strong {
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 22px;
}

.sb-floating-metric small {
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
}

.sb-trust-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

.sb-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding-block: 22px;
}

.sb-trust-item {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-trust-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--sb-tertiary);
  box-shadow: none;
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

.sb-trust-icon .sb-icon {
  width: 24px;
  height: 24px;
}

.sb-trust-item > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sb-card-grid,
.sb-feature-grid,
.sb-highlight-grid,
.sb-reason-grid {
  display: grid;
  gap: 24px;
}

.sb-card-grid--services,
.sb-card-grid--pricing {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sb-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sb-service-card,
.sb-pricing-card,
.sb-feature-card,
.sb-highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sb-service-card:hover,
.sb-pricing-card:hover,
.sb-feature-card:hover,
.sb-highlight-card:hover {
  border-color: rgba(164, 230, 255, 0.48);
  box-shadow: var(--sb-shadow-glow);
  transform: translateY(-3px);
}

.sb-card-icon,
.sb-feature-icon,
.sb-feature-tag,
.sb-reason-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(164, 230, 255, 0.24);
  border-radius: var(--sb-radius-lg);
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
}

.sb-feature-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-color: rgba(164, 230, 255, 0.32);
  background:
    radial-gradient(circle at 35% 25%, rgba(75, 241, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(0, 209, 255, 0.16), rgba(0, 209, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(0, 209, 255, 0.1);
}

.sb-feature-icon::after {
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.16), transparent 68%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.sb-icon {
  width: 32px;
  height: 32px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(0, 209, 255, 0.22));
}

.sb-feature-card:hover .sb-feature-icon {
  border-color: rgba(164, 230, 255, 0.58);
  color: var(--sb-tertiary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 28px rgba(0, 209, 255, 0.18);
}

.sb-feature-card:hover .sb-feature-icon::after {
  opacity: 1;
}

.sb-service-card h3,
.sb-pricing-card h3,
.sb-feature-card h3,
.sb-reason-item h3 {
  margin: 20px 0 8px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 22px;
  line-height: 1.25;
}

.sb-service-card p,
.sb-pricing-card p,
.sb-feature-card p,
.sb-reason-item p,
.sb-highlight-card p {
  color: var(--sb-text-muted);
}

.sb-service-card p,
.sb-pricing-card p {
  margin: 0 0 24px;
}

.sb-home-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1120px);
  margin-inline: auto;
  align-items: stretch;
  justify-content: center;
}

.sb-home-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid rgba(0, 209, 255, 0.22);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.14), transparent 42%),
    var(--sb-glass-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 38px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sb-home-path-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(140deg, rgba(164, 230, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 12%, rgba(75, 241, 255, 0.08), transparent 22%);
  opacity: 0.9;
}

.sb-home-path-card:hover {
  border-color: rgba(164, 230, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(0, 209, 255, 0.14),
    0 22px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.sb-home-path-card > * {
  position: relative;
  z-index: 1;
}

.sb-home-path-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sb-home-path-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-lg);
  background:
    radial-gradient(circle at 35% 28%, rgba(75, 241, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(0, 209, 255, 0.16), rgba(0, 209, 255, 0.04));
  color: var(--sb-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 20px rgba(0, 209, 255, 0.08);
}

.sb-home-path-card__icon .sb-icon {
  width: 28px;
  height: 28px;
}

.sb-home-path-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sb-home-path-card h3 {
  margin: 0 0 14px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.18;
}

.sb-home-path-card p {
  margin: 0 0 28px;
  color: var(--sb-text-muted);
  line-height: 1.7;
}

.sb-home-path-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 18px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.sb-home-path-card__cta:hover,
.sb-home-path-card__cta:focus {
  color: var(--sb-on-primary);
  border-color: rgba(164, 230, 255, 0.48);
  background: linear-gradient(135deg, rgba(164, 230, 255, 0.9), rgba(75, 241, 255, 0.72));
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.18);
}

.sb-home-options {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.sb-home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.sb-home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(0, 209, 255, 0.2);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.12), transparent 40%),
    var(--sb-glass-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sb-home-service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(145deg, rgba(164, 230, 255, 0.08), transparent 38%),
    radial-gradient(circle at 85% 12%, rgba(75, 241, 255, 0.08), transparent 24%);
}

.sb-home-service-card::after {
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(164, 230, 255, 0.7), rgba(75, 241, 255, 0.18) 62%, transparent);
  content: "";
  opacity: 0.9;
}

.sb-home-service-card:hover {
  border-color: rgba(164, 230, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(0, 209, 255, 0.12),
    0 22px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.sb-home-service-card > * {
  position: relative;
  z-index: 1;
}

.sb-home-service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.sb-home-service-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sb-home-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(164, 230, 255, 0.26);
  border-radius: var(--sb-radius-lg);
  background:
    radial-gradient(circle at 35% 28%, rgba(75, 241, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(0, 209, 255, 0.14), rgba(0, 209, 255, 0.04));
  color: var(--sb-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(0, 209, 255, 0.08);
}

.sb-home-service-card__icon .sb-icon {
  width: 24px;
  height: 24px;
}

.sb-home-service-card h3 {
  margin: 0 0 12px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(21px, 1.9vw, 25px);
  line-height: 1.16;
  text-wrap: balance;
}

.sb-home-service-card p {
  margin: 0 0 18px;
  color: var(--sb-text-muted);
  line-height: 1.58;
}

.sb-home-service-card__tags,
.sb-home-region-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sb-home-tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 10px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--sb-on-surface-variant);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.sb-home-service-card__cta,
.sb-home-region-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  min-height: 40px;
  padding: 11px 16px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.sb-home-service-card__cta:hover,
.sb-home-service-card__cta:focus,
.sb-home-region-card__cta:hover,
.sb-home-region-card__cta:focus {
  color: var(--sb-on-primary);
  border-color: rgba(164, 230, 255, 0.48);
  background: linear-gradient(135deg, rgba(164, 230, 255, 0.9), rgba(75, 241, 255, 0.72));
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.18);
}

.sb-home-options__regions {
  padding: clamp(18px, 2.3vw, 26px);
  border: 1px solid rgba(164, 230, 255, 0.1);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(9, 12, 20, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(0, 0, 0, 0.12);
}

.sb-home-options__regions-header {
  margin-bottom: 18px;
}

.sb-home-options__regions-header h3 {
  margin: 0 0 6px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
}

.sb-home-options__regions-header p {
  margin: 0;
  color: var(--sb-text-muted);
  line-height: 1.55;
}

.sb-home-region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  grid-auto-rows: 1fr;
}

.sb-home-region-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(164, 230, 255, 0.16);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(11, 14, 22, 0.7);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sb-home-region-card:hover {
  border-color: rgba(164, 230, 255, 0.34);
  box-shadow: 0 0 22px rgba(0, 209, 255, 0.08);
  transform: translateY(-2px);
}

.sb-home-region-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sb-home-region-card__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: var(--sb-radius-md);
  background:
    radial-gradient(circle at 30% 28%, rgba(75, 241, 255, 0.18), transparent 40%),
    rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-home-region-card h4 {
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 18px;
  line-height: 1.18;
}

.sb-home-region-card p {
  margin: 0 0 14px;
  color: var(--sb-text-muted);
  line-height: 1.52;
}

.sb-vps-region-grid,
.sb-vps-os-path-grid {
  display: grid;
  gap: 18px;
  width: 100%;
}

.sb-vps-region-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.sb-vps-os-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin-top: clamp(12px, 2vw, 22px);
}

.sb-vps-region-card,
.sb-vps-os-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid rgba(0, 209, 255, 0.2);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.12), transparent 40%),
    var(--sb-glass-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sb-vps-region-card::before,
.sb-vps-os-path-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(145deg, rgba(164, 230, 255, 0.08), transparent 38%),
    radial-gradient(circle at 85% 12%, rgba(75, 241, 255, 0.08), transparent 24%);
}

.sb-vps-region-card::after,
.sb-vps-os-path-card::after {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(164, 230, 255, 0.7), rgba(75, 241, 255, 0.18) 62%, transparent);
  content: "";
  opacity: 0.9;
}

.sb-vps-region-card:hover,
.sb-vps-os-path-card:hover {
  border-color: rgba(164, 230, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(0, 209, 255, 0.12),
    0 22px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.sb-vps-region-card > *,
.sb-vps-os-path-card > * {
  position: relative;
  z-index: 1;
}

.sb-vps-region-card__top,
.sb-vps-os-path-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.sb-vps-region-card__badge,
.sb-vps-os-path-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sb-vps-region-card__icon,
.sb-vps-os-path-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(164, 230, 255, 0.26);
  border-radius: var(--sb-radius-lg);
  background:
    radial-gradient(circle at 35% 28%, rgba(75, 241, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(0, 209, 255, 0.14), rgba(0, 209, 255, 0.04));
  color: var(--sb-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(0, 209, 255, 0.08);
}

.sb-vps-region-card__icon .sb-icon,
.sb-vps-os-path-card__icon .sb-icon {
  width: 22px;
  height: 22px;
}

.sb-vps-region-card h3,
.sb-vps-os-path-card h3 {
  margin: 0 0 12px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(21px, 1.9vw, 25px);
  line-height: 1.18;
  text-wrap: balance;
}

.sb-vps-region-card p,
.sb-vps-os-path-card p {
  margin: 0 0 18px;
  color: var(--sb-text-muted);
  line-height: 1.58;
}

.sb-vps-region-card__actions {
  margin-bottom: 18px;
}

.sb-vps-region-card__actions-title {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sb-on-surface-variant);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sb-vps-region-card__chips,
.sb-vps-os-path-card__chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sb-vps-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(164, 230, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--sb-on-surface-variant);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.sb-vps-link-chip:hover,
.sb-vps-link-chip:focus {
  color: var(--sb-primary);
  border-color: rgba(164, 230, 255, 0.32);
  background: rgba(0, 209, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.1);
  transform: translateY(-1px);
}

.sb-vps-region-card__cta,
.sb-vps-os-path-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  min-height: 40px;
  padding: 11px 16px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.sb-vps-region-card__cta:hover,
.sb-vps-region-card__cta:focus,
.sb-vps-os-path-card__cta:hover,
.sb-vps-os-path-card__cta:focus {
  color: var(--sb-on-primary);
  border-color: rgba(164, 230, 255, 0.48);
  background: linear-gradient(135deg, rgba(164, 230, 255, 0.9), rgba(75, 241, 255, 0.72));
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.18);
}

.sb-vps-os-path-card__chip-grid {
  margin-bottom: 4px;
}

.sb-vps-os-path-card--scope .sb-vps-os-path-card__badge {
  color: var(--sb-tertiary);
}

@media (max-width: 1180px) {
  .sb-home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-vps-region-grid,
  .sb-vps-os-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .sb-home-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .sb-home-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .sb-home-service-grid,
  .sb-home-region-grid {
    grid-template-columns: 1fr;
  }

  .sb-vps-region-grid,
  .sb-vps-os-path-grid {
    grid-template-columns: 1fr;
  }

  .sb-home-options__regions {
    padding: 18px;
  }

  .sb-home-service-card,
  .sb-home-region-card {
    padding: 20px;
  }

  .sb-vps-region-card,
  .sb-vps-os-path-card {
    padding: 20px;
  }

  .sb-home-path-grid {
    grid-template-columns: 1fr;
  }

  .sb-home-path-card {
    padding: 24px;
  }
}

.sb-feature-card p,
.sb-reason-item p {
  margin: 0;
  font-size: 14px;
}

.sb-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  color: var(--sb-text-muted);
  list-style: none;
}

.sb-check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.sb-check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 255, 102, 0.45);
  border-radius: 999px;
  background: rgba(0, 255, 102, 0.16);
  content: "";
}

.sb-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.sb-card-link:hover {
  border-color: rgba(164, 230, 255, 0.7);
  background: rgba(0, 209, 255, 0.1);
  color: var(--sb-primary);
}

.sb-network-section {
  overflow: hidden;
}

.sb-network-map {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.sb-network-map::before {
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(164, 230, 255, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 46%, rgba(0, 209, 255, 0.18), transparent 7rem),
    radial-gradient(circle at 62% 38%, rgba(0, 209, 255, 0.16), transparent 8rem),
    radial-gradient(circle at 78% 58%, rgba(235, 178, 255, 0.12), transparent 8rem);
  content: "";
  filter: blur(2px);
}

.sb-network-map span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.5), transparent);
  transform-origin: left center;
}

.sb-network-map span:nth-child(1) {
  top: 38%;
  left: 18%;
  width: 42%;
  transform: rotate(8deg);
}

.sb-network-map span:nth-child(2) {
  top: 58%;
  left: 24%;
  width: 54%;
  transform: rotate(-10deg);
}

.sb-network-map span:nth-child(3) {
  top: 47%;
  left: 43%;
  width: 30%;
  transform: rotate(28deg);
}

.sb-network-map span:nth-child(4) {
  top: 32%;
  left: 52%;
  width: 22%;
  transform: rotate(-22deg);
}

.sb-network-map span:nth-child(5) {
  top: 66%;
  left: 36%;
  width: 26%;
  transform: rotate(18deg);
}

.sb-network-map span:nth-child(6) {
  top: 52%;
  left: 8%;
  width: 22%;
  transform: rotate(-18deg);
}

.sb-location-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.sb-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid var(--sb-border-glow);
  border-radius: 999px;
  background: rgba(10, 12, 20, 0.72);
  color: var(--sb-on-surface);
  font-family: var(--sb-font-mono);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.sb-price {
  margin: 0 0 28px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 14px;
  font-weight: 600;
}

.sb-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 8px;
  border-radius: var(--sb-radius);
  background: rgba(0, 209, 255, 0.14);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sb-pricing-card--featured {
  border-color: rgba(164, 230, 255, 0.38);
}

.sb-feature-card {
  min-height: 240px;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  border-color: rgba(0, 209, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(0, 209, 255, 0.04), transparent 46%),
    rgba(8, 11, 18, 0.82);
}

.sb-feature-card h3 {
  font-size: 18px;
}

.sb-highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb-highlight-card {
  min-height: 380px;
  justify-content: space-between;
  overflow: hidden;
  border-color: rgba(60, 73, 78, 0.32);
}

.sb-highlight-card__symbol {
  position: absolute;
  top: -12px;
  right: -8px;
  color: rgba(164, 230, 255, 0.05);
  font-family: var(--sb-font-heading);
  font-size: clamp(120px, 16vw, 190px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.sb-highlight-card h3 {
  position: relative;
  max-width: 520px;
  font-size: clamp(32px, 4vw, 42px);
}

.sb-highlight-card p {
  position: relative;
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.sb-highlight-card .sb-button {
  width: fit-content;
  max-width: 100%;
  margin-top: 36px;
  white-space: normal;
}

.sb-reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.sb-reason-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
}

.sb-reason-item h3 {
  margin-top: 0;
  font-size: 18px;
}

.sb-faq-list {
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  gap: 16px;
}

.sb-faq-item {
  overflow: hidden;
  border-color: rgba(164, 230, 255, 0.16);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(145deg, rgba(0, 209, 255, 0.035), transparent 46%),
    rgba(8, 11, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 48px rgba(0, 0, 0, 0.18);
}

.sb-faq-item[open] {
  border-color: rgba(164, 230, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(0, 209, 255, 0.06), transparent 50%),
    rgba(8, 11, 18, 0.9);
}

.sb-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--sb-on-surface);
  cursor: pointer;
  font-family: var(--sb-font-heading);
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

.sb-faq-item summary:focus-visible {
  outline: 2px solid var(--sb-primary-strong);
  outline-offset: -4px;
}

.sb-faq-item summary::-webkit-details-marker {
  display: none;
}

.sb-faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.sb-faq-icon::before,
.sb-faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--sb-primary);
  content: "";
  transform: translate(-50%, -50%);
}

.sb-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.sb-faq-item[open] .sb-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sb-faq-answer {
  padding: 0 24px 22px;
}

.sb-faq-answer p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(164, 230, 255, 0.12);
  color: var(--sb-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sb-home-final-cta {
  overflow: hidden;
}

.sb-home-final-cta::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sb-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px);
  border-color: rgba(164, 230, 255, 0.24);
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 209, 255, 0.18), transparent 32rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.055), transparent 58%),
    var(--sb-glass-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 209, 255, 0.09);
  text-align: center;
}

.sb-final-cta::before {
  position: absolute;
  inset: auto 12% -44% 12%;
  z-index: -1;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.18), transparent 70%);
  content: "";
  filter: blur(10px);
}

.sb-final-cta h2 {
  font-size: clamp(32px, 5vw, 46px);
}

.sb-final-cta p {
  max-width: 620px;
  margin: 18px auto 28px;
  color: var(--sb-text-muted);
  font-size: 18px;
}

.sb-final-cta .sb-button,
.sb-home-final-cta .sb-button,
.sb-legal-final-cta .sb-button {
  min-width: 150px;
  min-height: 46px;
  padding: 13px 22px;
}

.sb-service-main {
  background:
    radial-gradient(circle at 6% 18%, rgba(0, 209, 255, 0.08), transparent 34rem),
    radial-gradient(circle at 100% 48%, rgba(235, 178, 255, 0.05), transparent 36rem);
}

.sb-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding-block: clamp(84px, 11vw, 136px);
}

.sb-page-hero--compact,
.sb-page-hero--legal-compact {
  padding-block: clamp(56px, 8vw, 96px);
}

.sb-page-hero--text-only {
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
  text-align: center;
}

.sb-page-hero--text-only .sb-page-hero__copy {
  align-items: center;
}

.sb-page-hero--location .sb-page-hero__visual {
  border-color: rgba(0, 255, 102, 0.22);
}

.sb-page-hero--network-map .sb-page-hero__visual {
  background:
    radial-gradient(circle at 24% 44%, rgba(0, 209, 255, 0.2), transparent 12rem),
    radial-gradient(circle at 78% 62%, rgba(235, 178, 255, 0.12), transparent 13rem),
    linear-gradient(135deg, rgba(20, 23, 31, 0.86), rgba(5, 7, 10, 0.98));
}

.sb-page-hero--contact-support .sb-page-hero__visual {
  border-color: rgba(235, 178, 255, 0.24);
}

.sb-page-hero--blog .sb-page-hero__visual {
  min-height: 360px;
}

.sb-page-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.sb-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.sb-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
}

.sb-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 12, 20, 0.72);
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
}

.sb-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
}

.sb-page-hero h1 span {
  display: inline;
  color: transparent;
  background: linear-gradient(90deg, var(--sb-primary), var(--sb-tertiary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.sb-page-hero__copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--sb-text-muted);
  font-size: clamp(17px, 2vw, 18px);
  line-height: 1.7;
}

.sb-page-hero__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-color: rgba(164, 230, 255, 0.2);
  background:
    radial-gradient(circle at 35% 22%, rgba(0, 209, 255, 0.22), transparent 15rem),
    radial-gradient(circle at 70% 72%, rgba(235, 178, 255, 0.08), transparent 15rem),
    linear-gradient(135deg, rgba(20, 23, 31, 0.92), rgba(5, 7, 10, 0.98));
}

.sb-page-hero__visual::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(164, 230, 255, 0.13);
  border-radius: var(--sb-radius-xl);
  background:
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.08) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(164, 230, 255, 0.06) 0 1px, transparent 1px 64px);
  content: "";
}

.sb-page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-page-hero__nodes span,
.sb-network-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(164, 230, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.1);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(0, 209, 255, 0.22);
}

.sb-page-hero__nodes span:nth-child(1) {
  top: 20%;
  left: 18%;
}

.sb-page-hero__nodes span:nth-child(2) {
  top: 34%;
  right: 20%;
}

.sb-page-hero__nodes span:nth-child(3) {
  right: 32%;
  bottom: 20%;
}

.sb-page-hero__nodes span:nth-child(4) {
  bottom: 32%;
  left: 26%;
}

.sb-page-hero__nodes span::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sb-primary);
  content: "";
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.72);
}

.sb-service-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: var(--sb-section-gap);
}

.sb-overview-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
}

.sb-overview-card h2 {
  margin: 0 0 6px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 18px;
}

.sb-overview-card p {
  margin: 0;
  color: var(--sb-text-muted);
  font-size: 14px;
}

.sb-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.sb-chip-grid--left {
  justify-content: flex-start;
}

.sb-split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 5vw, 52px);
}

.sb-section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 700;
}

.sb-split-panel h2 {
  max-width: 680px;
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}

.sb-split-panel p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--sb-text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.sb-region-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(24px, 4vw, 36px);
  overflow: hidden;
}

.sb-region-card::before,
.sb-location-card::before {
  position: absolute;
  inset: auto -20% -35% 20%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.sb-region-card h3,
.sb-location-card h3 {
  position: relative;
  margin: 20px 0 10px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 24px;
}

.sb-region-card p,
.sb-location-card p {
  position: relative;
  margin: 0 0 24px;
  color: var(--sb-text-muted);
}

.sb-network-canvas {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 45%, rgba(0, 209, 255, 0.14), transparent 8rem),
    radial-gradient(circle at 55% 35%, rgba(75, 241, 255, 0.14), transparent 8rem),
    radial-gradient(circle at 72% 52%, rgba(235, 178, 255, 0.12), transparent 8rem),
    linear-gradient(135deg, rgba(17, 19, 27, 0.9), rgba(5, 7, 10, 0.96));
}

.sb-network-canvas::before {
  position: absolute;
  inset: 18% 8%;
  border: 1px solid rgba(164, 230, 255, 0.1);
  border-radius: 999px;
  content: "";
}

.sb-network-canvas::after {
  position: absolute;
  inset: 25% 12%;
  background:
    linear-gradient(14deg, transparent 15%, rgba(0, 209, 255, 0.28), transparent 48%),
    linear-gradient(-10deg, transparent 32%, rgba(235, 178, 255, 0.22), transparent 66%);
  content: "";
  opacity: 0.7;
}

.sb-network-node:nth-child(1) {
  top: 48%;
  left: 60%;
}

.sb-network-node:nth-child(2) {
  top: 42%;
  left: 25%;
}

.sb-network-node:nth-child(3) {
  top: 35%;
  left: 52%;
}

.sb-network-node:nth-child(4) {
  top: 37%;
  left: 47%;
}

.sb-network-node:nth-child(5) {
  top: 40%;
  left: 55%;
}

.sb-network-node:nth-child(6) {
  top: 43%;
  left: 50%;
}

.sb-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sb-location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.sb-location-card--featured {
  grid-column: span 2;
}

.sb-location-card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.sb-location-card__header h3 {
  margin: 0 0 4px;
}

.sb-location-card__header span:not(.sb-card-icon) {
  color: var(--sb-status-uptime);
  font-family: var(--sb-font-mono);
  font-size: 12px;
}

.sb-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.sb-contact-form,
.sb-contact-panel {
  padding: clamp(24px, 4vw, 40px);
}

.sb-form-heading {
  margin-bottom: 28px;
}

.sb-form-heading h2,
.sb-contact-panel h2,
.sb-faq-group > h2 {
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
}

.sb-form-heading p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--sb-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.sb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.sb-field {
  display: grid;
  gap: 8px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
}

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

.sb-field input,
.sb-field select,
.sb-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
  color: var(--sb-on-surface);
  font: inherit;
  font-family: var(--sb-font-body);
  font-size: 15px;
  outline: none;
  padding: 12px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.sb-field textarea {
  resize: vertical;
}

.sb-field input:focus,
.sb-field select:focus,
.sb-field textarea:focus {
  border-color: rgba(164, 230, 255, 0.68);
  background: rgba(10, 12, 20, 0.86);
  box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.12);
}

.sb-contact-aside {
  display: grid;
  gap: 18px;
}

.sb-contact-panel .sb-check-list {
  margin: 24px 0 0;
}

.sb-faq-groups {
  display: grid;
  gap: 24px;
}

.sb-faq-group {
  padding: clamp(22px, 4vw, 36px);
}

.sb-faq-group > h2 {
  margin-bottom: 22px;
}

.sb-faq-group .sb-faq-list {
  max-width: none;
}

.sb-blog-main {
  overflow: hidden;
}

.sb-blog-shell-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.sb-blog-shell-hero__copy {
  min-width: 0;
}

.sb-blog-hero-visual {
  position: relative;
  min-height: clamp(280px, 34vw, 430px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 28%, rgba(0, 209, 255, 0.2), transparent 12rem),
    radial-gradient(circle at 76% 70%, rgba(235, 178, 255, 0.09), transparent 14rem),
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.1) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, rgba(20, 23, 31, 0.92), rgba(5, 7, 10, 0.98));
  box-shadow: var(--sb-shadow-glow);
}

.sb-blog-hero-visual span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.7), transparent);
}

.sb-blog-hero-visual span:nth-child(1) {
  top: 34%;
  left: 12%;
  width: 72%;
}

.sb-blog-hero-visual span:nth-child(2) {
  top: 54%;
  left: 22%;
  width: 58%;
}

.sb-blog-hero-visual span:nth-child(3) {
  top: 72%;
  left: 16%;
  width: 46%;
}

.sb-blog-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.sb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sb-blog-card {
  min-width: 0;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.sb-blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(164, 230, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(0, 209, 255, 0.08);
}

.sb-blog-card__media {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(164, 230, 255, 0.14);
  background: rgba(5, 7, 10, 0.72);
}

.sb-blog-card__image,
.sb-single-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-blog-card__image {
  min-height: 220px;
  transition: transform 220ms ease;
}

.sb-blog-card:hover .sb-blog-card__image {
  transform: scale(1.04);
}

.sb-single-hero__fallback {
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at 25% 38%, rgba(0, 209, 255, 0.2), transparent 8rem),
    radial-gradient(circle at 70% 62%, rgba(235, 178, 255, 0.11), transparent 9rem),
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, rgba(17, 19, 27, 0.94), rgba(5, 7, 10, 0.98));
}

.sb-single-hero__fallback span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 241, 255, 0.55), transparent);
}

.sb-single-hero__fallback span:nth-child(1) {
  top: 36%;
  left: 12%;
  width: 68%;
}

.sb-single-hero__fallback span:nth-child(2) {
  top: 54%;
  left: 22%;
  width: 58%;
}

.sb-single-hero__fallback span:nth-child(3) {
  top: 70%;
  left: 16%;
  width: 44%;
}

/* Fallback Visual Card Styles */
.sb-post-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  background: #05070a;
}

.sb-post-card-visual--fallback {
  border-bottom: 1px solid rgba(164, 230, 255, 0.14);
}

.sb-post-card-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 209, 255, 0.15), transparent 12rem),
    repeating-linear-gradient(0deg, rgba(164, 230, 255, 0.03) 0px, rgba(164, 230, 255, 0.03) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg, rgba(164, 230, 255, 0.03) 0px, rgba(164, 230, 255, 0.03) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}

.sb-post-card-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(8, 11, 18, 0.72);
  border: 1px solid rgba(103, 232, 249, 0.16);
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  z-index: 2;
}

.sb-blog-card:hover .sb-post-card-pill,
.elementor-post:hover .sb-post-card-pill,
.sb-post-card-visual:hover .sb-post-card-pill {
  border-color: rgba(103, 232, 249, 0.35);
  box-shadow: 0 4px 16px rgba(0, 209, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sb-post-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sb-font-mono, "Geist Mono", monospace);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #67e8f9;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  background: rgba(103, 232, 249, 0.12);
  border-radius: 4px;
}

.sb-post-card-label {
  font-family: var(--sb-font-sans, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.02em;
}

.sb-post-card-pattern-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  color: rgba(103, 232, 249, 0.04);
  pointer-events: none;
  z-index: 1;
  transition: color 220ms ease, transform 220ms ease;
}

.sb-post-card-visual:hover .sb-post-card-pattern-svg,
.sb-blog-card:hover .sb-post-card-pattern-svg,
.elementor-post:hover .sb-post-card-pattern-svg {
  color: rgba(103, 232, 249, 0.09);
  transform: translate(-50%, -50%) scale(1.05);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .sb-post-card-visual {
  min-height: 190px;
}

.sb-blog-card__body {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
}

.sb-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
}

.sb-post-meta a {
  color: var(--sb-primary);
  text-decoration: none;
}

.sb-post-meta--large span,
.sb-post-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.07);
}

.sb-post-meta a:hover {
  color: var(--sb-tertiary);
}

.sb-post-meta span:not(:first-child)::before {
  color: rgba(187, 201, 207, 0.5);
  content: "/";
  margin-right: 14px;
}

.sb-blog-card h3 {
  margin: 18px 0 12px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 24px;
  line-height: 1.25;
}

.sb-blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.sb-blog-card h3 a:hover {
  color: var(--sb-primary);
}

.sb-blog-card__excerpt {
  color: var(--sb-text-muted);
  line-height: 1.7;
}

.sb-blog-card__excerpt p {
  margin: 0 0 24px;
}

.sb-empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.sb-empty-state h2 {
  margin: 0 0 12px;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(28px, 4vw, 38px);
}

.sb-empty-state p {
  margin: 0;
  color: var(--sb-text-muted);
}

.sb-editor-content {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 40px);
  color: var(--sb-on-surface);
}

.sb-editor-content > *:first-child {
  margin-top: 0;
}

.sb-editor-content > *:last-child {
  margin-bottom: 0;
}

.sb-editor-content :is(p, li) {
  color: var(--sb-text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.sb-editor-content :is(h2, h3, h4) {
  margin: 1.6em 0 0.65em;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  line-height: 1.2;
}

.sb-editor-content h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.sb-editor-content h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.sb-editor-content a {
  color: var(--sb-primary);
}

.sb-editor-content :is(ul, ol) {
  display: grid;
  gap: 10px;
  margin: 0 0 1.6em 1.2em;
  padding: 0;
}

.sb-empty-state .sb-search-form {
  margin-top: 26px;
}

.sb-search-panel {
  max-width: 820px;
  margin: 0 auto 32px;
  padding: 20px;
}

.sb-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.sb-search-form input[type="search"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.68);
  color: var(--sb-on-surface);
  padding: 11px 14px;
}

.sb-search-form input[type="search"]::placeholder {
  color: rgba(187, 201, 207, 0.66);
}

.sb-pagination {
  margin-top: 40px;
}

.sb-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sb-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: var(--sb-radius);
  background: rgba(10, 12, 20, 0.72);
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.sb-pagination .page-numbers.current,
.sb-pagination .page-numbers:hover {
  border-color: rgba(164, 230, 255, 0.5);
  color: var(--sb-primary);
  background: rgba(0, 209, 255, 0.1);
}

.sb-single-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(84px, 11vw, 136px) clamp(48px, 8vw, 86px);
}

.sb-single-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.sb-single-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
}

.sb-post-meta--large {
  padding: 8px 12px;
  border: 1px solid rgba(164, 230, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.07);
}

.sb-single-hero__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-color: rgba(164, 230, 255, 0.22);
  background:
    radial-gradient(circle at 24% 30%, rgba(0, 209, 255, 0.14), transparent 14rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.055), transparent 58%),
    rgba(8, 11, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 80px rgba(0, 209, 255, 0.1);
}

.sb-single-hero__fallback {
  position: absolute;
}

.sb-article-shell {
  max-width: 980px;
}

.sb-article-content {
  padding: clamp(28px, 5vw, 56px);
  color: var(--sb-on-surface);
}

.sb-article-content > *:first-child {
  margin-top: 0;
}

.sb-article-content > *:last-child {
  margin-bottom: 0;
}

.sb-article-content p,
.sb-article-content li {
  color: var(--sb-text-muted);
  font-size: 18px;
  line-height: 1.85;
}

.sb-article-content p {
  margin: 0 0 1.4em;
}

.sb-article-content h2,
.sb-article-content h3,
.sb-article-content h4 {
  margin: 1.7em 0 0.7em;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  line-height: 1.2;
}

.sb-article-content h2 {
  font-size: clamp(30px, 4vw, 40px);
}

.sb-article-content h3 {
  font-size: clamp(24px, 3vw, 30px);
}

.sb-article-content h4 {
  font-size: 22px;
}

.sb-article-content a {
  color: var(--sb-primary);
}

.sb-article-content ul,
.sb-article-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 1.6em 1.2em;
  padding: 0;
}

.sb-article-content blockquote {
  margin: 2rem 0;
  padding: 24px;
  border-left: 3px solid var(--sb-primary);
  border-radius: var(--sb-radius-lg);
  background: rgba(0, 209, 255, 0.06);
}

.sb-article-content blockquote p {
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 22px;
  line-height: 1.55;
}

.sb-article-content pre,
.sb-article-content code {
  border-radius: var(--sb-radius);
  background: rgba(5, 7, 10, 0.9);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
}

.sb-article-content code {
  padding: 0.15em 0.35em;
}

.sb-article-content pre {
  overflow-x: auto;
  padding: 20px;
}

.sb-article-content pre code {
  padding: 0;
  background: transparent;
}

.sb-article-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 2rem 0;
}

.sb-article-content th,
.sb-article-content td {
  border: 1px solid rgba(164, 230, 255, 0.16);
  padding: 12px 14px;
  text-align: left;
}

.sb-article-content th {
  color: var(--sb-on-surface);
  background: rgba(0, 209, 255, 0.08);
}

.sb-article-content img {
  height: auto;
  max-width: 100%;
  border-radius: var(--sb-radius-xl);
  border: 1px solid rgba(164, 230, 255, 0.12);
}

.sb-article-content figcaption {
  margin-top: 10px;
  color: var(--sb-text-muted);
  font-size: 13px;
  text-align: center;
}

.sb-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
}

.sb-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-block: clamp(36px, 6vw, 72px);
}

.sb-post-nav-card {
  padding: 24px;
}

.sb-post-nav-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
}

.sb-post-nav-card a {
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 20px;
  line-height: 1.3;
  text-decoration: none;
}

.sb-post-nav-card a:hover {
  color: var(--sb-primary);
}

.sb-single-final-cta {
  margin-bottom: clamp(48px, 7vw, 96px);
}

.sb-legal-main .sb-page-hero {
  align-items: stretch;
}

.sb-legal-main .sb-page-hero__copy {
  justify-content: center;
}

.sb-legal-main .sb-page-hero__visual {
  min-height: 320px;
}

.sb-legal-hero-visual {
  background:
    radial-gradient(circle at 28% 30%, rgba(0, 209, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 72% 68%, rgba(235, 178, 255, 0.09), transparent 14rem),
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.07) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, rgba(20, 23, 31, 0.92), rgba(5, 7, 10, 0.98));
}

.sb-legal-image-hero {
  position: relative;
  overflow: visible !important;
}

.sb-legal-image-visual {
  position: relative;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.sb-legal-image-visual::before {
  display: none !important;
}

/*
 * Legal page hero visual frame.
 * Mirrors the /dedicated-servers/ hero infrastructure card
 * (sb-el-dedicated-control-frame + sb-el-dedicated-image-shell) so the
 * legal page image belongs to the same premium design system without
 * introducing a second frame style.
 */
.sb-legal-control-plane {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}

.sb-legal-control-frame {
  position: relative;
  padding: 9px;
  overflow: visible;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.sb-legal-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
}

.sb-legal-hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 896;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.sb-legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.sb-legal-sidebar,
.sb-legal-content {
  padding: clamp(24px, 4vw, 40px);
}

.sb-legal-sidebar {
  position: sticky;
  top: calc(var(--sb-header-height) + 32px);
}

.sb-legal-sidebar h2 {
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15;
}

.sb-document-meta {
  display: grid;
  gap: 18px;
  margin: 18px 0 24px;
}

.sb-document-meta div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(164, 230, 255, 0.12);
}

.sb-document-meta dt {
  margin-bottom: 6px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
}

.sb-document-meta dd {
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 18px;
  line-height: 1.35;
}

.sb-legal-sidebar p {
  margin: 0 0 24px;
  color: var(--sb-text-muted);
  line-height: 1.7;
}

.sb-legal-sidebar__actions {
  display: grid;
  gap: 12px;
}

.sb-legal-content {
  color: var(--sb-on-surface);
  min-width: 0;
}

.sb-legal-content--needs-review {
  border-color: rgba(164, 230, 255, 0.28);
}

.sb-legal-content > *:first-child {
  margin-top: 0;
}

.sb-legal-content > *:last-child {
  margin-bottom: 0;
}

.sb-legal-content :is(p, li) {
  color: var(--sb-text-muted);
  font-size: 17px;
  line-height: 1.85;
}

.sb-legal-content p {
  margin: 0 0 1.35em;
}

.sb-legal-content :is(h2, h3, h4) {
  margin: 1.7em 0 0.7em;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  line-height: 1.22;
}

.sb-legal-content h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.sb-legal-content h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.sb-legal-content h4 {
  font-size: 20px;
}

.sb-legal-content a {
  color: var(--sb-primary);
}

.sb-legal-content :is(ul, ol) {
  display: grid;
  gap: 10px;
  margin: 0 0 1.6em 1.2em;
  padding: 0;
}

.sb-legal-content blockquote {
  margin: 2rem 0;
  padding: 22px;
  border-left: 3px solid var(--sb-primary);
  border-radius: var(--sb-radius-lg);
  background: rgba(0, 209, 255, 0.06);
}

.sb-legal-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 2rem 0;
}

.sb-legal-content th,
.sb-legal-content td {
  border: 1px solid rgba(164, 230, 255, 0.16);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.sb-legal-content th {
  color: var(--sb-on-surface);
  background: rgba(0, 209, 255, 0.08);
}

.sb-empty-state--compact {
  max-width: none;
  padding: 0;
  margin: 0;
  background: transparent;
  text-align: left;
}

.sb-empty-state--compact h2 {
  font-size: clamp(24px, 4vw, 32px);
}

.sb-legal-final-cta {
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 209, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.055), transparent 58%),
    var(--sb-glass-bg);
}

.sb-el-legal-hero {
  --overflow: hidden;
  position: relative;
  isolation: isolate;
  overflow: hidden !important;
  max-width: none;
  min-height: min(600px, calc(100vh - var(--sb-header-height)));
  padding: clamp(56px, 5.5vw, 86px) var(--sb-page-margin) clamp(44px, 4.8vw, 70px);
  border-bottom: 1px solid rgba(164, 230, 255, 0.08);
  background:
    radial-gradient(circle at 75% 34%, rgba(0, 209, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 32% 72%, rgba(75, 241, 255, 0.05), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.42), rgba(5, 7, 10, 0));
}

.sb-el-legal-hero::before {
  position: absolute;
  inset: 28% 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.sb-el-legal-hero::after {
  position: absolute;
  inset: 14% -10% auto 52%;
  z-index: -1;
  height: 54%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(75, 241, 255, 0.14), transparent 68%);
  content: "";
  filter: blur(16px);
}

.sb-el-legal-hero > .e-con-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1.02fr) !important;
  gap: clamp(32px, 4vw, 56px);
}

.sb-el-legal-hero-copy {
  justify-content: center;
}

.sb-el-legal-hero .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

.sb-el-legal-hero .sb-el-h1,
.sb-el-legal-hero .sb-el-h1 .elementor-heading-title {
  max-width: 760px;
  font-size: clamp(48px, 6.3vw, 72px);
  line-height: 1;
}

.sb-el-legal-hero .sb-el-lead p {
  max-width: 640px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

.sb-el-legal-hero-visual {
  min-height: clamp(340px, 31vw, 470px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sb-el-legal-hero-visual > .e-con-inner,
.sb-el-legal-visual-html,
.sb-el-legal-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

.sb-el-legal-document-visual {
  position: relative;
  width: 100%;
}

.sb-el-legal-document-frame {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: clamp(340px, 31vw, 470px);
  padding: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(164, 230, 255, 0.26);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 70% 22%, rgba(0, 209, 255, 0.13), transparent 16rem),
    linear-gradient(135deg, rgba(164, 230, 255, 0.1), rgba(164, 230, 255, 0.025)),
    rgba(10, 12, 20, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 36px rgba(0, 209, 255, 0.14),
    0 28px 84px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.sb-el-legal-document-frame::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: calc(var(--sb-radius-xl) - 5px);
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  opacity: 0.64;
  pointer-events: none;
}

.sb-el-legal-document-badge,
.sb-el-legal-document-page,
.sb-el-legal-document-footer {
  position: relative;
  z-index: 2;
}

.sb-el-legal-document-badge,
.sb-el-legal-document-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sb-el-legal-document-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  border: 1px solid rgba(75, 241, 255, 0.34);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
}

.sb-el-legal-document-badge strong,
.sb-el-legal-document-footer span {
  color: var(--sb-tertiary);
}

.sb-el-legal-document-page {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.56);
}

.sb-el-legal-document-title {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(164, 230, 255, 0.14);
  color: #f3fbff;
  font-family: var(--sb-font-heading);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
}

.sb-el-legal-visual-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(52px, 0.35fr);
  align-items: center;
  gap: 10px;
  min-height: 38px;
}

.sb-el-legal-visual-row span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(75, 241, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.1);
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.12);
}

.sb-el-legal-visual-row strong {
  color: rgba(230, 247, 255, 0.84);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sb-el-legal-visual-row i,
.sb-el-legal-document-footer i {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(75, 241, 255, 0.28), rgba(75, 241, 255, 0.08));
}

.sb-el-legal-document-footer i {
  flex: 1;
}

.sb-el-legal-document-section {
  padding: clamp(72px, 8vw, 112px) var(--sb-page-margin);
}

.sb-el-legal-document-section > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
}

.sb-el-legal-layout > .e-con-inner {
  display: grid !important;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr) !important;
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}

.sb-el-legal-sidebar,
.sb-el-legal-content-wrap {
  min-width: 0;
}

.sb-el-legal-sidebar {
  position: sticky;
  top: calc(var(--sb-header-height) + 32px);
  gap: 18px;
}

.sb-el-legal-info-card,
.sb-el-legal-content-card {
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(145deg, rgba(0, 209, 255, 0.045), transparent 48%),
    rgba(8, 11, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 52px rgba(0, 0, 0, 0.2);
}

.sb-el-legal-info-card {
  padding: clamp(22px, 3vw, 32px);
}

.sb-el-legal-info-card h2,
.sb-el-legal-content-card h2,
.sb-el-legal-placeholder-list h3 {
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  line-height: 1.18;
}

.sb-el-legal-info-card h2 {
  font-size: clamp(24px, 3vw, 30px);
}

.sb-el-legal-info-card dl {
  display: grid;
  gap: 16px;
  margin: 18px 0 24px;
}

.sb-el-legal-info-card dl div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(164, 230, 255, 0.12);
}

.sb-el-legal-info-card dt {
  margin-bottom: 6px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sb-el-legal-info-card dd {
  margin: 0;
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  font-size: 17px;
  line-height: 1.35;
}

.sb-el-legal-info-card p {
  margin: 0;
  color: var(--sb-text-muted);
  line-height: 1.7;
}

.sb-el-legal-sidebar .sb-el-actions > .e-con-inner,
.sb-el-legal-final-cta .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-wrap: wrap;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px;
}

.sb-el-legal-sidebar .sb-el-actions > .e-con-inner {
  flex-direction: column !important;
}

.sb-el-legal-sidebar .sb-el-actions .elementor-widget-button,
.sb-el-legal-sidebar .sb-el-actions .elementor-button {
  width: 100% !important;
}

.sb-el-legal-content-card {
  padding: clamp(28px, 4vw, 46px);
  border-color: rgba(164, 230, 255, 0.24);
}

.sb-el-legal-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(75, 241, 255, 0.32);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-tertiary);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sb-el-legal-content-card h2 {
  max-width: 780px;
  font-size: clamp(28px, 4vw, 40px);
}

.sb-el-legal-content-card p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--sb-text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.sb-el-legal-placeholder-list {
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(164, 230, 255, 0.14);
}

.sb-el-legal-placeholder-list h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 3vw, 28px);
}

.sb-el-legal-placeholder-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sb-el-legal-placeholder-list li {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(164, 230, 255, 0.14);
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 20, 36, 0.42);
  color: rgba(230, 247, 255, 0.84);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.sb-el-legal-placeholder-list li span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--sb-tertiary);
  box-shadow: 0 0 10px rgba(0, 209, 255, 0.5);
}

.sb-el-legal-final-cta {
  margin: 0 auto clamp(60px, 7vw, 96px);
  width: min(var(--sb-container), calc(100vw - (var(--sb-page-margin) * 2)));
  border: 1px solid rgba(164, 230, 255, 0.18);
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 209, 255, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(0, 209, 255, 0.055), transparent 58%),
    rgba(8, 11, 18, 0.84);
}

@media (max-width: 1120px) {
  .sb-el-legal-hero > .e-con-inner,
  .sb-el-legal-layout > .e-con-inner {
    grid-template-columns: 1fr !important;
  }

  .sb-el-legal-hero-visual {
    width: min(100%, 760px) !important;
    margin-inline: auto;
  }

  .sb-el-legal-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .sb-el-legal-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-legal-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-legal-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-legal-hero .sb-el-h1,
  .sb-el-legal-hero .sb-el-h1 .elementor-heading-title {
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1.06;
  }

  .sb-el-legal-hero-visual {
    min-height: auto;
    padding: 0;
  }

  .sb-el-legal-document-frame {
    min-height: auto;
    gap: 10px;
    padding: 14px;
  }

  .sb-el-legal-document-page {
    gap: 10px;
    padding: 14px;
  }

  .sb-el-legal-visual-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sb-el-legal-visual-row i {
    display: none;
  }

  .sb-el-legal-document-section {
    padding-block: 64px;
  }

  .sb-el-legal-info-card,
  .sb-el-legal-content-card {
    padding: 22px;
  }

  .sb-el-legal-placeholder-list ul {
    grid-template-columns: 1fr;
  }

  .sb-el-legal-final-cta {
    margin-bottom: 68px;
  }

  .sb-el-legal-final-cta .sb-el-actions > .e-con-inner {
    flex-direction: column !important;
  }

  .sb-el-legal-final-cta .sb-el-actions .elementor-widget-button,
  .sb-el-legal-final-cta .sb-el-actions .elementor-button {
    width: 100% !important;
  }
}

.sb-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sb-service-final-cta {
  overflow: hidden;
}

@media (max-width: 1240px) {
  .sb-primary-nav {
    display: none;
  }

  .sb-header-actions {
    display: none;
  }

  .sb-menu-toggle {
    position: relative;
    display: inline-flex;
    margin-left: auto;
  }

  .sb-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sb-footer__brand {
    grid-column: 1 / -1;
  }

  .sb-card-grid--services,
  .sb-card-grid--pricing,
  .sb-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sb-home-hero__visual {
    min-height: 0;
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .sb-home-hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }

  .sb-home-hero-image-wrapper::before {
    left: 50% !important;
  }

  .sb-home-hero-image {
    width: min(100%, 620px) !important;
    max-width: 100% !important;
    transform: none !important;
    margin-inline: auto !important;
  }

  .sb-legal-image-hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-inline: var(--sb-page-margin) !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: var(--sb-page-margin) !important;
    padding-right: var(--sb-page-margin) !important;
  }

  .sb-legal-image-visual {
    min-height: 0 !important;
    width: min(100%, 760px) !important;
    margin-inline: auto !important;
  }

  .sb-legal-control-plane {
    max-width: 540px;
    margin-inline: auto;
  }

  .sb-legal-hero-image {
    width: 100%;
    margin-inline: auto;
  }

  .sb-home-platform-node {
    width: min(220px, 40%);
  }

  .sb-trust-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sb-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-page-hero,
  .sb-blog-shell-hero,
  .sb-split-panel,
  .sb-contact-layout,
  .sb-legal-layout {
    grid-template-columns: 1fr;
  }

  .sb-legal-sidebar {
    position: static;
  }

  .sb-page-hero__visual {
    min-height: 360px;
  }

  .sb-service-overview,
  .sb-card-grid--three,
  .sb-location-grid,
  .sb-blog-grid,
  .sb-post-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-el-header,
  .sb-el-footer-grid {
    grid-template-columns: 1fr;
  }

  .sb-el-header > .e-con-inner,
  .sb-el-hero > .e-con-inner,
  .sb-el-footer-grid > .e-con-inner {
    grid-template-columns: 1fr !important;
  }

  .sb-el-vps-visual,
  .sb-el-dedicated-visual,
  .sb-el-colocation-visual,
  .sb-el-locations-visual,
  .sb-el-location-vps-visual,
  .sb-el-location-dedicated-visual,
  .sb-el-about-visual,
  .sb-el-contact-visual,
  .sb-el-faq-visual {
    width: min(100%, 760px) !important;
    margin-inline: auto;
  }

  .sb-el-header {
    position: sticky;
    gap: 16px;
    padding-block: 18px;
  }

  .sb-el-header > .e-con-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .sb-el-header > .e-con-inner > .sb-el-header-menu {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .sb-el-header > .e-con-inner > .sb-el-header-actions {
    grid-column: 1 / -1;
  }

  .sb-el-card-grid--two > .e-con-inner,
  .sb-el-card-grid--three > .e-con-inner,
  .sb-el-card-grid--four > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-single-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --sb-header-height: 72px;
  }

  .sb-announcement__inner {
    font-size: 11px;
    line-height: 1.45;
  }

  .sb-el-announcement p {
    font-size: 11px;
    white-space: normal;
  }

  .sb-brand__name {
    max-width: 56vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sb-brand__wordmark {
    display: none;
  }

  .sb-brand--has-mobile .sb-brand__logo--header,
  .sb-brand--has-mobile .sb-brand__logo--sticky,
  .sb-brand--has-mobile .sb-brand__mark,
  .sb-brand--has-mobile .sb-brand__name {
    display: none;
  }

  .sb-brand__logo--mobile {
    display: block;
  }

  .sb-header-actions {
    display: none;
  }

  .sb-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sb-footer__brand p {
    max-width: none;
  }

  .sb-home-hero {
    padding-block: 64px 44px;
  }

  .sb-home-actions .sb-button,
  .sb-card-link,
  .sb-highlight-card .sb-button {
    width: 100%;
    white-space: normal;
  }

  .sb-home-hero__visual {
    min-height: auto;
  }

  .sb-home-platform-frame {
    display: grid;
    min-height: auto;
    gap: 12px;
    padding: 14px;
  }

  .sb-home-platform-frame::after,
  .sb-home-platform-connectors {
    display: none;
  }

  .sb-home-platform-core {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 116px;
    padding: 16px;
    transform: none;
  }

  .sb-home-platform-nodes {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sb-home-platform-node {
    position: static;
    width: 100%;
    min-height: 58px;
    gap: 9px;
    padding: 10px;
  }

  .sb-home-platform-node__icon .sb-icon {
    width: 22px;
    height: 22px;
  }

  .sb-home-platform-node strong {
    font-size: 10px;
  }

  .sb-home-platform-node small {
    font-size: 9px;
  }

  .sb-trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-block: 18px;
  }

  .sb-trust-item {
    min-height: 54px;
    gap: 9px;
    padding: 11px 10px;
    font-size: 11px;
  }

  .sb-trust-icon .sb-icon {
    width: 22px;
    height: 22px;
  }

  .sb-card-grid--services,
  .sb-card-grid--pricing,
  .sb-feature-grid,
  .sb-highlight-grid,
  .sb-reason-grid,
  .sb-service-overview,
  .sb-card-grid--three,
  .sb-location-grid,
  .sb-blog-grid,
  .sb-post-navigation {
    grid-template-columns: 1fr;
  }

  .sb-el-section {
    overflow-x: hidden;
    padding-block: 64px;
  }

  .sb-el-section > .e-con-inner,
  .sb-el-hero-copy,
  .sb-el-section-heading {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .sb-el-hero-copy .elementor-widget,
  .sb-el-hero-copy .elementor-widget-container,
  .sb-el-section-heading .elementor-widget,
  .sb-el-section-heading .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .sb-el-card-grid--two > .e-con-inner,
  .sb-el-card-grid--three > .e-con-inner,
  .sb-el-card-grid--four > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .sb-el-hero {
    min-height: auto;
  }

  .sb-el-home-hero {
    padding-block: 72px;
  }

  .sb-el-h1 .elementor-heading-title,
  .sb-el-h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 48px);
    line-height: 1.06;
    overflow-wrap: normal;
    white-space: normal !important;
  }

  .sb-el-lead p {
    max-width: 100%;
    font-size: 17px;
  }

  .sb-el-hero-visual {
    min-height: 260px;
  }

  .sb-el-service-hero {
    padding-block: 72px;
  }

  .sb-el-vps-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-dedicated-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-colocation-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-locations-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-location-vps-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-location-dedicated-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-about-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-contact-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-faq-hero {
    min-height: auto;
    padding-block: 64px 44px;
  }

  .sb-el-vps-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-dedicated-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-colocation-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-locations-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-location-vps-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-location-dedicated-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-about-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-contact-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-faq-hero::before {
    inset: 22% 0 0;
    background-size: 36px 36px;
  }

  .sb-el-vps-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-dedicated-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-colocation-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-locations-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-location-vps-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-location-dedicated-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-about-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-contact-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-faq-hero::after {
    inset: 38% -30% auto 32%;
    height: 34%;
  }

  .sb-el-vps-hero .sb-el-h1,
  .sb-el-vps-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-dedicated-hero .sb-el-h1,
  .sb-el-dedicated-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-colocation-hero .sb-el-h1,
  .sb-el-colocation-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-locations-hero .sb-el-h1,
  .sb-el-locations-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-location-vps-hero .sb-el-h1,
  .sb-el-location-vps-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-location-dedicated-hero .sb-el-h1,
  .sb-el-location-dedicated-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-about-hero .sb-el-h1,
  .sb-el-about-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-contact-hero .sb-el-h1,
  .sb-el-contact-hero .sb-el-h1 .elementor-heading-title,
  .sb-el-faq-hero .sb-el-h1,
  .sb-el-faq-hero .sb-el-h1 .elementor-heading-title {
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1.06;
  }

  .sb-el-vps-hero .sb-el-actions > .e-con-inner,
  .sb-el-dedicated-hero .sb-el-actions > .e-con-inner,
  .sb-el-colocation-hero .sb-el-actions > .e-con-inner,
  .sb-el-locations-hero .sb-el-actions > .e-con-inner,
  .sb-el-location-vps-hero .sb-el-actions > .e-con-inner,
  .sb-el-location-dedicated-hero .sb-el-actions > .e-con-inner,
  .sb-el-about-hero .sb-el-actions > .e-con-inner,
  .sb-el-contact-hero .sb-el-actions > .e-con-inner,
  .sb-el-faq-hero .sb-el-actions > .e-con-inner {
    --flex-direction: column;
    --align-items: stretch;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .sb-el-vps-hero .sb-el-actions .elementor-widget-button,
  .sb-el-vps-hero .sb-el-actions .elementor-button,
  .sb-el-dedicated-hero .sb-el-actions .elementor-widget-button,
  .sb-el-dedicated-hero .sb-el-actions .elementor-button,
  .sb-el-colocation-hero .sb-el-actions .elementor-widget-button,
  .sb-el-colocation-hero .sb-el-actions .elementor-button,
  .sb-el-locations-hero .sb-el-actions .elementor-widget-button,
  .sb-el-locations-hero .sb-el-actions .elementor-button,
  .sb-el-location-vps-hero .sb-el-actions .elementor-widget-button,
  .sb-el-location-vps-hero .sb-el-actions .elementor-button,
  .sb-el-location-dedicated-hero .sb-el-actions .elementor-widget-button,
  .sb-el-location-dedicated-hero .sb-el-actions .elementor-button,
  .sb-el-about-hero .sb-el-actions .elementor-widget-button,
  .sb-el-about-hero .sb-el-actions .elementor-button,
  .sb-el-contact-hero .sb-el-actions .elementor-widget-button,
  .sb-el-contact-hero .sb-el-actions .elementor-button,
  .sb-el-faq-hero .sb-el-actions .elementor-widget-button,
  .sb-el-faq-hero .sb-el-actions .elementor-button {
    --width: 100%;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 1;
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  .sb-el-service-visual {
    min-height: 320px;
    padding: 20px;
  }

  .sb-el-vps-visual,
  .sb-el-dedicated-visual,
  .sb-el-colocation-visual,
  .sb-el-locations-visual,
  .sb-el-location-vps-visual,
  .sb-el-location-dedicated-visual,
  .sb-el-about-visual,
  .sb-el-contact-visual,
  .sb-el-faq-visual {
    min-height: auto;
    padding: 0;
  }

  .sb-el-vps-control-frame,
  .sb-el-dedicated-control-frame,
  .sb-el-colocation-control-frame,
  .sb-el-locations-network-frame,
  .sb-el-location-vps-frame,
  .sb-el-location-dedicated-frame,
  .sb-el-about-presence-frame,
  .sb-el-contact-consultation-frame,
  .sb-el-faq-knowledge-frame {
    padding: 6px;
  }

  .sb-el-faq-knowledge-frame {
    min-height: auto;
  }

  .sb-el-faq-visual-panel {
    gap: 10px;
    padding: 14px;
  }

  .sb-el-faq-chip-row {
    gap: 6px;
  }

  .sb-el-faq-chip-row span {
    min-height: 26px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .sb-el-faq-visual-row {
    min-height: 44px;
    gap: 8px;
    padding: 9px;
  }

  .sb-el-faq-visual-question {
    font-size: 10px;
  }

  .sb-el-faq-visual-footer {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 9px;
    text-align: center;
  }

  .sb-el-location-vps-frame {
    min-height: auto;
    overflow: hidden;
  }

  .sb-el-location-dedicated-frame {
    min-height: auto;
    overflow: hidden;
  }

  .sb-el-location-dedicated-route-map {
    position: relative;
    inset: auto;
    min-height: 96px;
    margin: 4px 6px 0;
  }

  .sb-el-location-dedicated-region,
  .sb-el-location-dedicated-latency {
    min-height: 22px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .sb-el-location-dedicated-region {
    left: 45%;
    top: 12px;
  }

  .sb-el-location-dedicated-marker {
    top: 48px;
    left: 40%;
  }

  .sb-el-location-dedicated-latency--west {
    left: 0;
    top: 8px;
  }

  .sb-el-location-dedicated-latency--east {
    right: 0;
    top: 66px;
  }

  .sb-el-location-dedicated-image-shell {
    min-height: auto;
    padding: 4px 0 0;
  }

  .sb-el-location-vps-map {
    width: min(100%, 310px);
  }

  .sb-el-location-vps-location-label,
  .sb-el-location-vps-latency {
    min-height: 22px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .sb-el-location-vps-latency--west {
    left: 0;
  }

  .sb-el-location-vps-latency--east {
    right: 0;
  }

  .sb-el-location-vps-nodes {
    gap: 8px;
  }

  .sb-el-location-vps-node {
    width: 40px;
    min-height: 82px;
    gap: 5px;
    padding: 12px 7px 7px;
  }

  .sb-el-location-vps-node--2 {
    min-height: 102px;
  }

  .sb-el-location-vps-node--3 {
    min-height: 74px;
  }

  .sb-el-location-vps-node--4 {
    min-height: 92px;
  }

  .sb-el-location-vps-cluster > span {
    min-height: 28px;
    padding: 7px 11px;
    font-size: 9px;
  }

  .sb-el-location-vps-chip-row {
    gap: 7px;
  }

  .sb-el-location-vps-chip {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .sb-el-vps-micro-layer,
  .sb-el-dedicated-micro-layer,
  .sb-el-colocation-micro-layer,
  .sb-el-locations-micro-layer,
  .sb-el-location-vps-micro-layer,
  .sb-el-location-dedicated-micro-layer,
  .sb-el-about-micro-layer,
  .sb-el-contact-micro-layer {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .sb-el-vps-micro-card,
  .sb-el-dedicated-micro-card,
  .sb-el-colocation-micro-card,
  .sb-el-locations-micro-card,
  .sb-el-location-vps-micro-card,
  .sb-el-location-dedicated-micro-card,
  .sb-el-about-micro-card,
  .sb-el-contact-micro-card {
    position: static;
    max-width: none;
    min-height: 36px;
    padding: 8px;
    gap: 7px;
    font-size: 10px;
    transform: none;
  }

  .sb-el-vps-micro-mark,
  .sb-el-dedicated-micro-mark,
  .sb-el-colocation-micro-mark,
  .sb-el-locations-micro-mark,
  .sb-el-location-vps-micro-mark,
  .sb-el-location-dedicated-micro-mark,
  .sb-el-about-micro-mark,
  .sb-el-contact-micro-mark {
    min-width: 28px;
    height: 20px;
    font-size: 9px;
  }

  .sb-el-vps-feature-strip > .e-con-inner,
  .sb-el-dedicated-feature-strip > .e-con-inner,
  .sb-el-colocation-feature-strip > .e-con-inner,
  .sb-el-locations-feature-strip > .e-con-inner,
  .sb-el-location-vps-feature-strip > .e-con-inner,
  .sb-el-location-dedicated-feature-strip > .e-con-inner,
  .sb-el-about-feature-strip > .e-con-inner,
  .sb-el-contact-feature-strip > .e-con-inner,
  .sb-el-faq-feature-strip > .e-con-inner {
    padding-block: 18px;
  }

  .sb-el-vps-feature-row,
  .sb-el-dedicated-feature-row,
  .sb-el-colocation-feature-row,
  .sb-el-locations-feature-row,
  .sb-el-location-vps-feature-row,
  .sb-el-location-dedicated-feature-row,
  .sb-el-about-feature-row,
  .sb-el-contact-feature-row,
  .sb-el-faq-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sb-el-vps-feature,
  .sb-el-dedicated-feature,
  .sb-el-colocation-feature,
  .sb-el-locations-feature,
  .sb-el-location-vps-feature,
  .sb-el-location-dedicated-feature,
  .sb-el-about-feature,
  .sb-el-contact-feature,
  .sb-el-faq-feature {
    gap: 9px;
    min-height: 54px;
    padding: 11px 10px;
  }

  .sb-el-vps-feature-icon .sb-icon,
  .sb-el-dedicated-feature-icon .sb-icon,
  .sb-el-colocation-feature-icon .sb-icon,
  .sb-el-locations-feature-icon .sb-icon,
  .sb-el-location-vps-feature-icon .sb-icon,
  .sb-el-location-dedicated-feature-icon .sb-icon,
  .sb-el-about-feature-icon .sb-icon,
  .sb-el-contact-feature-icon .sb-icon,
  .sb-el-faq-feature-icon .sb-icon {
    width: 22px;
    height: 22px;
  }

  .sb-el-vps-feature-label,
  .sb-el-dedicated-feature-label,
  .sb-el-colocation-feature-label,
  .sb-el-locations-feature-label,
  .sb-el-location-vps-feature-label,
  .sb-el-location-dedicated-feature-label,
  .sb-el-about-feature-label,
  .sb-el-contact-feature-label,
  .sb-el-faq-feature-label {
    font-size: 11px;
  }

  .sb-el-vps-feature-strip + .sb-el-service-section--vps {
    padding-top: 68px;
  }

  .sb-el-dedicated-feature-strip + .sb-el-service-section--dedicated {
    padding-top: 68px;
  }

  .sb-el-colocation-feature-strip + .sb-el-service-section--colocation {
    padding-top: 68px;
  }

  .sb-el-locations-feature-strip + .sb-el-service-section--locations {
    padding-top: 68px;
  }

  .sb-el-location-vps-feature-strip + .sb-el-service-section--turkey-vps,
  .sb-el-location-vps-feature-strip + .sb-el-service-section--netherland-vps,
  .sb-el-location-vps-feature-strip + .sb-el-service-section--usa-cloud-vps,
  .sb-el-location-vps-feature-strip + .sb-el-service-section--united-kingdom-vps,
  .sb-el-location-vps-feature-strip + .sb-el-service-section--france-vps,
  .sb-el-location-vps-feature-strip + .sb-el-service-section--germany-vps,
  .sb-el-location-vps-feature-strip + .sb-el-service-section--location-os-vps {
    padding-top: 68px;
  }

  .sb-el-location-dedicated-feature-strip + .sb-el-service-section--turkey-dedicated,
  .sb-el-location-dedicated-feature-strip + .sb-el-service-section--netherlands-dedicated,
  .sb-el-location-dedicated-feature-strip + .sb-el-service-section--usa-dedicated,
  .sb-el-location-dedicated-feature-strip + .sb-el-dedicated-location-netherlands,
  .sb-el-location-dedicated-feature-strip + .sb-el-dedicated-location-usa {
    padding-top: 68px;
  }

  .sb-el-about-feature-strip + .sb-el-service-section--about {
    padding-top: 68px;
  }

  .sb-el-contact-feature-strip + .sb-el-service-section--contact {
    padding-top: 68px;
  }

  .sb-el-faq-feature-strip + .sb-el-service-section--faq,
  .sb-el-faq-feature-strip + .sb-el-faq-group {
    padding-top: 68px;
  }

  .sb-el-service-visual--vps .sb-el-service-visual-art span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .sb-el-service-visual--dedicated .sb-el-service-visual-art span {
    left: 14%;
    right: 14%;
    height: 24px;
  }

  .sb-el-service-visual--colocation .sb-el-service-visual-art span {
    width: 44px;
    height: 88px;
  }

  .sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(2),
  .sb-el-service-visual--colocation .sb-el-service-visual-art span:nth-child(4) {
    height: 112px;
  }

  .sb-el-service-visual--locations .sb-el-service-visual-art span {
    width: 34px;
    height: 34px;
  }

  .sb-el-service-visual--turkey-vps .sb-el-service-visual-art span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span {
    left: 14%;
    right: 14%;
    height: 24px;
  }

  .sb-el-service-visual--turkey-dedicated .sb-el-service-visual-art span:nth-child(6) {
    left: auto;
    right: 10%;
    width: 34px;
    height: 34px;
  }

  .sb-el-service-visual--about .sb-el-service-visual-art span,
  .sb-el-service-visual--contact .sb-el-service-visual-art span,
  .sb-el-service-visual--faq .sb-el-service-visual-art span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .sb-el-service-proof,
  .sb-el-service-section {
    padding-block: 56px;
  }

  .sb-el-service-cards .sb-el-card,
  .sb-el-benefit-cards .sb-el-card,
  .sb-el-direct-control .sb-el-card,
  .sb-el-region-cards .sb-el-card,
  .sb-el-plan-grid .sb-el-card {
    min-height: auto;
  }

  .sb-el-card-icon .sb-icon {
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .sb-el-home-visual {
    overflow: hidden;
    height: 320px !important;
    min-height: 320px;
  }

  .sb-el-floating-metric {
    min-width: 160px;
    padding: 12px;
  }

  .sb-el-floating-metric--uptime {
    top: 22px;
    left: 0;
  }

  .sb-el-floating-metric--support {
    display: none;
  }

  .sb-el-floating-metric--uptime {
    left: 8px;
  }

  .sb-el-actions > .e-con-inner,
  .sb-el-header-actions > .e-con-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 100%;
  }

  .sb-el-actions,
  .sb-el-actions .elementor-widget-button,
  .sb-el-actions .elementor-button {
    width: 100% !important;
    max-width: 100% !important;
  }

  .sb-el-actions,
  .sb-el-header-actions {
    align-items: stretch;
    width: 100%;
  }

  .sb-el-actions .elementor-widget-button,
  .sb-el-header-actions .elementor-widget-button {
    width: 100%;
  }

  .sb-el-actions .elementor-button,
  .sb-el-header-actions .elementor-button {
    width: 100%;
  }

  .sb-page-hero {
    padding-block: 72px;
  }

  .sb-page-hero h1 {
    font-size: clamp(38px, 12vw, 46px);
  }

  .sb-page-hero__visual,
  .sb-network-canvas {
    min-height: 320px;
  }

  .sb-overview-card,
  .sb-split-panel,
  .sb-contact-form,
  .sb-contact-panel,
  .sb-faq-group,
  .sb-legal-sidebar,
  .sb-legal-content {
    padding: 24px;
  }

  .sb-form-grid {
    grid-template-columns: 1fr;
  }

  .sb-search-form {
    grid-template-columns: 1fr;
  }

  .sb-location-card--featured {
    grid-column: auto;
  }

  .sb-service-card,
  .sb-pricing-card,
  .sb-feature-card,
  .sb-highlight-card {
    padding: 24px;
  }

  .sb-highlight-card {
    min-height: 320px;
  }

  .sb-reason-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .sb-reason-tag {
    width: 42px;
    height: 42px;
  }

  .sb-location-pill {
    width: 100%;
  }

  .sb-blog-card__media,
  .sb-single-hero__media {
    min-height: 300px;
  }

  .sb-article-content p,
  .sb-article-content li,
  .sb-legal-content :is(p, li) {
    font-size: 16px;
  }

  .sb-faq-item summary {
    align-items: flex-start;
    padding: 20px;
    font-size: 16px;
  }

  .sb-faq-answer {
    padding-inline: 20px;
  }
}

@media (max-width: 782px) {
  .admin-bar .sb-site-header {
    top: 46px;
  }

  .admin-bar .sb-mobile-panel {
    top: 46px;
  }
}

/* Elementor frontend compatibility layer: keep editor UI untouched. */
body:not(.elementor-editor-active) :is(.sb-elementor-content, .elementor-location-header, .elementor-location-footer) {
  --e-global-color-primary: var(--sb-primary);
  --e-global-color-secondary: var(--sb-on-surface);
  --e-global-color-text: var(--sb-on-surface-variant);
  --e-global-color-accent: var(--sb-primary-strong);
  --e-global-typography-primary-font-family: var(--sb-font-heading);
  --e-global-typography-text-font-family: var(--sb-font-body);
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor {
  color: var(--sb-on-surface);
  font-family: var(--sb-font-body);
}

body:not(.elementor-editor-active) .sb-elementor-content :is(.elementor-section, .e-con, .elementor-widget-container) {
  color: inherit;
}

body:not(.elementor-editor-active) .sb-elementor-content :is(.elementor-heading-title, h1, h2, h3, h4, h5, h6) {
  color: var(--sb-on-surface);
  font-family: var(--sb-font-heading);
  letter-spacing: 0;
}

body:not(.elementor-editor-active) .sb-elementor-content :is(p, li, .elementor-text-editor) {
  color: var(--sb-on-surface-variant);
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-widget-text-editor a,
body:not(.elementor-editor-active) .sb-elementor-content .elementor-widget-theme-post-content a {
  color: var(--sb-primary);
}

body:not(.elementor-editor-active) .sb-elementor-content .sb-el-card,
body:not(.elementor-editor-active) .sb-elementor-content .elementor-widget-icon-box .elementor-widget-container {
  border-color: rgba(0, 209, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(0, 209, 255, 0.035), transparent 42%),
    rgba(8, 11, 18, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 48px rgba(0, 0, 0, 0.18);
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-icon {
  color: var(--sb-primary-strong);
  fill: var(--sb-primary-strong);
}

body:not(.elementor-editor-active) :is(.sb-elementor-content, .elementor-location-header, .elementor-location-footer) .elementor-button,
body:not(.elementor-editor-active) :is(.sb-elementor-content, .elementor-location-header, .elementor-location-footer) a.elementor-button,
body:not(.elementor-editor-active) .sb-elementor-content .elementor-form button[type="submit"],
body:not(.elementor-editor-active) .sb-elementor-content .elementor-form .elementor-button[type="submit"] {
  border: 1px solid rgba(164, 230, 255, 0.36) !important;
  border-radius: var(--sb-radius-lg) !important;
  background:
    linear-gradient(135deg, var(--sb-primary), var(--sb-tertiary)) !important;
  color: var(--sb-on-primary) !important;
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.12);
  font-family: var(--sb-font-mono);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: none;
}

body:not(.elementor-editor-active) :is(.sb-elementor-content, .elementor-location-header, .elementor-location-footer) .elementor-button:hover,
body:not(.elementor-editor-active) :is(.sb-elementor-content, .elementor-location-header, .elementor-location-footer) a.elementor-button:hover,
body:not(.elementor-editor-active) .sb-elementor-content .elementor-form button[type="submit"]:hover,
body:not(.elementor-editor-active) .sb-elementor-content .elementor-form .elementor-button[type="submit"]:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

body:not(.elementor-editor-active) :is(.sb-elementor-content, .elementor-location-header, .elementor-location-footer) :is(.sb-el-button--secondary, .sb-el-link-button) .elementor-button {
  border-color: rgba(164, 230, 255, 0.38) !important;
  background: rgba(12, 15, 24, 0.84) !important;
  color: var(--sb-on-surface) !important;
  box-shadow: none;
}

body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu--main .elementor-item,
body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu a {
  color: var(--sb-on-surface-variant) !important;
}

body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu--main .elementor-item:hover,
body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu--main .elementor-item.elementor-item-active,
body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu .current-menu-item > a,
body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu .current_page_item > a,
body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu a[aria-current="page"] {
  color: var(--sb-primary) !important;
}

body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item::before,
body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item::after {
  background-color: var(--sb-primary-strong) !important;
}

@media (min-width: 1201px) {
  body:not(.elementor-editor-active) .elementor-location-header .sb-el-header > .e-con-inner {
    grid-template-columns: auto minmax(0, max-content) auto !important;
    justify-content: center;
    column-gap: clamp(18px, 2.2vw, 34px);
  }

  body:not(.elementor-editor-active) .elementor-location-header .sb-el-header-menu {
    width: auto !important;
    max-width: min(720px, 50vw);
    min-width: 0;
  }

  body:not(.elementor-editor-active) .elementor-location-header .sb-el-header-menu .elementor-nav-menu {
    justify-content: center;
    gap: clamp(5px, 0.65vw, 10px);
  }

  body:not(.elementor-editor-active) .elementor-location-header .sb-el-header-menu .elementor-nav-menu a {
    padding-inline: clamp(3px, 0.42vw, 7px) !important;
    font-size: clamp(11px, 0.82vw, 13px);
  }
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-form {
  display: grid;
  gap: 20px;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-form .elementor-field-group {
  margin-bottom: 16px;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-form .elementor-field-label {
  margin-bottom: 8px;
  color: var(--sb-on-surface);
  font-size: 14px;
  font-weight: 750;
}

body:not(.elementor-editor-active) .sb-elementor-content :is(
  .elementor-form input[type="text"],
  .elementor-form input[type="email"],
  .elementor-form input[type="tel"],
  .elementor-form input[type="url"],
  .elementor-form input[type="number"],
  .elementor-form input[type="search"],
  .elementor-form select,
  .elementor-form textarea,
  .elementor-field-textual,
  .elementor-field
) {
  min-height: 50px;
  border: 1px solid rgba(164, 230, 255, 0.24) !important;
  border-radius: var(--sb-radius-lg) !important;
  background: rgba(5, 7, 10, 0.86) !important;
  color: var(--sb-on-surface) !important;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  outline: none;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-form textarea {
  min-height: 140px;
  resize: vertical;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-form .elementor-field-type-submit {
  margin-top: 4px;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-form button[type="submit"],
body:not(.elementor-editor-active) .sb-elementor-content .elementor-form .elementor-button[type="submit"] {
  min-height: 48px;
  padding: 13px 22px;
}

body:not(.elementor-editor-active) .sb-elementor-content :is(
  .elementor-form input,
  .elementor-form textarea,
  .elementor-field-textual
)::placeholder {
  color: rgba(187, 201, 207, 0.62);
}

body:not(.elementor-editor-active) .sb-elementor-content :is(
  .elementor-form input,
  .elementor-form select,
  .elementor-form textarea,
  .elementor-field-textual
):focus {
  border-color: rgba(75, 241, 255, 0.72) !important;
  box-shadow:
    0 0 0 3px rgba(0, 209, 255, 0.12),
    0 0 24px rgba(0, 209, 255, 0.16);
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-form select option {
  background: var(--sb-surface-lowest);
  color: var(--sb-on-surface);
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-message {
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background: rgba(10, 12, 20, 0.84);
  color: var(--sb-on-surface);
  padding: 14px 16px;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-widget-accordion .elementor-accordion {
  display: grid;
  gap: 16px;
  border: 0 !important;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(164, 230, 255, 0.16) !important;
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 209, 255, 0.055), transparent 12rem),
    linear-gradient(145deg, rgba(0, 209, 255, 0.03), transparent 46%),
    rgba(8, 11, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 48px rgba(0, 0, 0, 0.18);
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-tab-title {
  border: 0 !important;
  padding: 20px 22px;
  color: var(--sb-on-surface) !important;
  font-family: var(--sb-font-heading);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-tab-title.elementor-active {
  background:
    linear-gradient(90deg, rgba(0, 209, 255, 0.12), transparent 72%),
    rgba(0, 209, 255, 0.045);
  color: var(--sb-primary) !important;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-accordion-icon,
body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-accordion-icon :is(i, svg) {
  color: var(--sb-primary-strong) !important;
  fill: var(--sb-primary-strong) !important;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-tab-content {
  border: 0 !important;
  border-top: 1px solid rgba(164, 230, 255, 0.1) !important;
  padding: 18px 20px 22px;
  background: rgba(5, 7, 10, 0.34);
  color: var(--sb-on-surface-variant) !important;
  line-height: 1.7;
}

body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-tab-title:focus-visible,
body:not(.elementor-editor-active) :is(.elementor-location-header, .elementor-location-footer) .elementor-nav-menu a:focus-visible,
body:not(.elementor-editor-active) .sb-elementor-content .elementor-button:focus-visible {
  outline: 2px solid var(--sb-primary-strong);
  outline-offset: 4px;
}

body:not(.elementor-editor-active) .elementor-location-archive {
  display: block;
  width: 100%;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-template {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  padding-block: 0 clamp(80px, 9vw, 126px);
  background:
    radial-gradient(circle at 77% 12%, rgba(0, 209, 255, 0.11), transparent 31rem),
    radial-gradient(circle at 30% 18%, rgba(75, 241, 255, 0.045), transparent 26rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.34), rgba(5, 7, 10, 0) 44rem);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-template > .e-con-inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero > .e-con-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr);
  align-items: center;
  gap: clamp(32px, 4vw, 58px);
  width: min(var(--sb-container), calc(100vw - (var(--sb-page-margin) * 2)));
  max-width: var(--sb-container) !important;
  min-height: min(580px, calc(100vh - var(--sb-header-height)));
  margin-inline: auto;
  padding-block: clamp(48px, 5vw, 74px) clamp(36px, 4vw, 56px);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero::before {
  position: absolute;
  inset: 30% calc(var(--sb-page-margin) * -1) 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-copy {
  align-items: flex-start !important;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-copy .sb-el-eyebrow p {
  border-radius: var(--sb-radius-sm);
  border-color: rgba(75, 241, 255, 0.62);
  background: rgba(0, 209, 255, 0.075);
  color: var(--sb-tertiary);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-copy .sb-el-h1 .elementor-heading-title {
  max-width: 780px;
  font-size: clamp(52px, 6.9vw, 80px);
  line-height: 0.995;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-copy .sb-el-lead p {
  max-width: 660px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-actions > .e-con-inner {
  --display: flex;
  --flex-direction: row;
  --flex-wrap: wrap;
  --align-items: center;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-actions .elementor-widget-button {
  --width: auto;
  --container-widget-width: auto;
  --container-widget-flex-grow: 0;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-button .elementor-button,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-button a.elementor-button {
  min-height: 50px;
  padding: 15px 23px;
  border: 1px solid rgba(164, 230, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(0, 209, 255, 0.18);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-button--primary .elementor-button,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-button--primary a.elementor-button {
  background: linear-gradient(135deg, #c9f4ff, var(--sb-tertiary)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 30px rgba(0, 209, 255, 0.24),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-button--secondary .elementor-button,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-button--secondary a.elementor-button {
  border-color: rgba(164, 230, 255, 0.42);
  background: rgba(12, 18, 30, 0.76) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-visual {
  position: relative;
  min-height: clamp(340px, 30vw, 470px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-visual > .e-con-inner,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-visual-html,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-visual-html .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard {
  position: relative;
  width: 100%;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-frame {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: clamp(340px, 30vw, 470px);
  padding: clamp(16px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(164, 230, 255, 0.28);
  border-radius: var(--sb-radius-xl);
  background:
    radial-gradient(circle at 72% 16%, rgba(0, 209, 255, 0.15), transparent 17rem),
    radial-gradient(circle at 22% 78%, rgba(75, 241, 255, 0.08), transparent 16rem),
    linear-gradient(135deg, rgba(164, 230, 255, 0.12), rgba(164, 230, 255, 0.03)),
    rgba(10, 12, 20, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(0, 209, 255, 0.17),
    0 30px 96px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-frame::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(164, 230, 255, 0.12);
  border-radius: calc(var(--sb-radius-xl) - 5px);
  background-image:
    linear-gradient(rgba(164, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 230, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-frame::after {
  position: absolute;
  inset: 14% 12% 16%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.12), transparent 70%);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-header,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-feed,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-topics,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-notes-panel {
  position: relative;
  z-index: 2;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sb-tertiary);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-header::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sb-tertiary);
  content: "";
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.7);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-header i {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(75, 241, 255, 0.28);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-header i + i {
  margin-left: 0;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-feed {
  display: grid;
  gap: 12px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-card {
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid rgba(75, 241, 255, 0.26);
  border-radius: var(--sb-radius-lg);
  background: rgba(8, 17, 30, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-top span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(75, 241, 255, 0.36);
  border-radius: var(--sb-radius-sm);
  background: rgba(0, 209, 255, 0.12);
  color: var(--sb-tertiary);
  font-family: var(--sb-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-top::after {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(75, 241, 255, 0.28), transparent);
  content: "";
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-top i {
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--sb-tertiary);
  border-right: 1px solid var(--sb-tertiary);
  transform: rotate(45deg);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-card strong {
  display: block;
  margin-bottom: 8px;
  color: #f3fbff;
  font-size: 14px;
  line-height: 1.25;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-card em {
  display: block;
  width: 78%;
  height: 5px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(75, 241, 255, 0.12);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-card em + em {
  width: 52%;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-panel {
  display: grid;
  justify-items: center;
  min-height: 62px;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background: rgba(8, 17, 30, 0.68);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-panel .sb-icon {
  width: 22px;
  height: 22px;
  color: var(--sb-tertiary);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-panel span {
  color: rgba(230, 247, 255, 0.82);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 800;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-panel i {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sb-tertiary), rgba(75, 241, 255, 0.12));
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-notes-panel {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(75, 241, 255, 0.24);
  border-radius: var(--sb-radius-lg);
  background: rgba(5, 7, 10, 0.72);
  color: rgba(230, 247, 255, 0.74);
  font-family: var(--sb-font-mono);
  font-size: 11px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-notes-panel span {
  color: var(--sb-tertiary);
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-notes-panel i {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(75, 241, 255, 0.28), rgba(75, 241, 255, 0.08), transparent);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-notes-panel i:nth-of-type(2) {
  width: 82%;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-notes-panel i:nth-of-type(3) {
  width: 58%;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-strip {
  width: 100%;
  max-width: none;
  padding-inline: var(--sb-page-margin);
  border-block: 1px solid rgba(164, 230, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 209, 255, 0.11), transparent 28rem),
    linear-gradient(90deg, rgba(0, 209, 255, 0.075), transparent 36%, rgba(0, 209, 255, 0.055)),
    rgba(5, 20, 36, 0.76);
  backdrop-filter: blur(10px);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-strip > .e-con-inner {
  width: min(100%, var(--sb-container)) !important;
  max-width: var(--sb-container) !important;
  margin-inline: auto;
  padding-block: 14px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-strip-html,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-strip-html .elementor-widget-container {
  width: 100%;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 209, 255, 0.025)),
    rgba(10, 12, 20, 0.5);
  color: var(--sb-on-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--sb-tertiary);
  filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.24));
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-icon .sb-icon {
  width: 23px;
  height: 23px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-label {
  min-width: 0;
  color: #e6f7ff;
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-posts-shell {
  align-items: center !important;
  width: min(var(--sb-container), calc(100vw - (var(--sb-page-margin) * 2)));
  margin-inline: auto;
  margin-top: clamp(38px, 4vw, 56px);
  margin-bottom: 34px;
  text-align: center;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts {
  width: min(var(--sb-container), calc(100vw - (var(--sb-page-margin) * 2)));
  margin-inline: auto;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-posts-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-posts-container:has(> .elementor-post:only-child) {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(164, 230, 255, 0.18);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(145deg, rgba(0, 209, 255, 0.035), transparent 46%),
    rgba(8, 11, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 52px rgba(0, 0, 0, 0.2);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post:hover {
  transform: translateY(-3px);
  border-color: rgba(164, 230, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 24px 72px rgba(0, 209, 255, 0.08);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post::before {
  display: block;
  min-height: 180px;
  border-bottom: 1px solid rgba(164, 230, 255, 0.14);
  background:
    radial-gradient(circle at 28% 36%, rgba(0, 209, 255, 0.22), transparent 8rem),
    radial-gradient(circle at 78% 64%, rgba(235, 178, 255, 0.1), transparent 9rem),
    repeating-linear-gradient(180deg, rgba(164, 230, 255, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, rgba(17, 19, 27, 0.96), rgba(5, 7, 10, 0.98));
  content: "";
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post:has(.elementor-post__thumbnail__link)::before,
body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post:has(.sb-post-card-visual)::before {
  display: none;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__thumbnail__link {
  display: block;
  min-height: 190px;
  overflow: hidden;
  border-bottom: 1px solid rgba(164, 230, 255, 0.14);
  background:
    radial-gradient(circle at 28% 36%, rgba(0, 209, 255, 0.22), transparent 8rem),
    radial-gradient(circle at 78% 64%, rgba(75, 241, 255, 0.08), transparent 9rem),
    linear-gradient(135deg, rgba(17, 19, 27, 0.96), rgba(5, 7, 10, 0.98));
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__thumbnail {
  height: 100%;
  min-height: 190px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 180ms ease, opacity 180ms ease;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post:hover .elementor-post__thumbnail img {
  opacity: 1;
  transform: scale(1.03);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__title {
  margin: 0 0 12px;
  font-family: var(--sb-font-heading);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__title a {
  color: var(--sb-on-surface);
  text-decoration: none;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__title a:hover {
  color: var(--sb-primary);
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__meta-data {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: var(--sb-text-muted);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 700;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__excerpt {
  color: var(--sb-text-muted);
  line-height: 1.75;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post__read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 16px;
  border: 1px solid rgba(164, 230, 255, 0.26);
  border-radius: var(--sb-radius-lg);
  background: rgba(10, 12, 20, 0.86);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-pagination {
  margin-top: 40px;
}

@media (max-width: 1120px) {
  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero > .e-con-inner {
    grid-template-columns: 1fr;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-visual {
    width: min(100%, 760px) !important;
    margin-inline: auto;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-template {
    padding-block: 0 56px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero,
  .sb-blog-shell-hero {
    min-height: auto;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero > .e-con-inner,
  .sb-blog-shell-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px 44px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero::before {
    inset: 22% calc(var(--sb-page-margin) * -1) 0;
    background-size: 36px 36px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-copy .sb-el-h1 .elementor-heading-title {
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1.06;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-actions > .e-con-inner {
    --flex-direction: column;
    --align-items: stretch;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-actions .elementor-widget-button,
  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero .sb-el-actions .elementor-button {
    --width: 100%;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 1;
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-hero-visual,
  .sb-blog-hero-visual {
    min-height: auto;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-frame {
    min-height: auto;
    gap: 10px;
    padding: 14px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-feed {
    gap: 8px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-card {
    min-height: 72px;
    padding: 11px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-feed-card strong {
    font-size: 11px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-dashboard-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-panel {
    min-height: 66px;
    padding: 10px 8px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-panel span {
    font-size: 9px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-notes-panel {
    padding: 12px;
    font-size: 10px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-strip > .e-con-inner {
    padding-block: 18px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic {
    min-height: 54px;
    justify-content: flex-start;
    gap: 9px;
    padding: 11px 10px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-icon .sb-icon {
    width: 22px;
    height: 22px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-blog-topic-label {
    font-size: 10px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-archive-posts-shell {
    margin-top: 68px;
  }

  body:not(.elementor-editor-active) .elementor-location-archive .sb-el-posts .elementor-post {
    min-height: 420px;
  }

  body:not(.elementor-editor-active) .sb-elementor-content .elementor-form .elementor-field-group {
    width: 100% !important;
  }

  body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-tab-title {
    padding: 16px;
  }

  body:not(.elementor-editor-active) .sb-elementor-content .elementor-accordion .elementor-tab-content {
    padding: 16px;
  }
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin {
  width: min(100%, 1240px);
  margin: 0 auto;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin > .e-con-inner {
  display: grid;
  gap: clamp(32px, 4vw, 54px);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .sb-pricing-plugin-group {
  min-width: 0;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .sb-pricing-plugin-group > .e-con-inner {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .sb-pricing-plugin-group-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .sb-pricing-plugin-group-heading span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(63, 245, 255, 0.24);
  border-radius: 999px;
  color: #91f8ff;
  background: rgba(63, 245, 255, 0.075);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .sb-pricing-plugin-group-heading h3 {
  margin: 0;
  color: #f4fbff;
  font-family: var(--sb-font-display);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .sb-pricing-plugin-group-heading p {
  max-width: 66ch;
  margin: 0;
  color: rgba(210, 235, 246, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .elementor-shortcode {
  min-width: 0;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-pricing {
  --ddc-background: transparent;
  --ddc-card-background: rgba(8, 20, 32, 0.86);
  --ddc-card-background-deep: rgba(4, 10, 18, 0.96);
  --ddc-card-border: rgba(96, 221, 255, 0.18);
  --ddc-featured-border: rgba(63, 245, 255, 0.7);
  --ddc-text-primary: #f3fbff;
  --ddc-text-secondary: rgba(223, 245, 255, 0.82);
  --ddc-muted-text: rgba(177, 207, 221, 0.74);
  --ddc-accent-blue: #34d7ff;
  --ddc-accent-purple: #3ff5ff;
  --ddc-accent-magenta: #71fff1;
  --ddc-cta-gradient: linear-gradient(135deg, #86f3ff 0%, #2fe8e2 100%);
  --ddc-radius: 8px;
  --ddc-shadow: 0 20px 58px -42px rgba(32, 224, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --ddc-shadow-hover: 0 26px 70px -38px rgba(32, 224, 255, 0.72), 0 0 0 1px rgba(63, 245, 255, 0.18);
  font-family: var(--sb-font-body);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-pricing__inner {
  width: 100%;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-grid {
  gap: clamp(14px, 1.4vw, 20px);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-card {
  overflow: hidden;
  border-color: rgba(96, 221, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(89, 233, 255, 0.075), transparent 34%),
    radial-gradient(circle at 50% 0%, rgba(63, 245, 255, 0.13), transparent 48%),
    linear-gradient(180deg, rgba(8, 20, 32, 0.92), rgba(2, 8, 14, 0.98));
  backdrop-filter: blur(16px);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-card:hover {
  border-color: rgba(63, 245, 255, 0.48);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-card__content {
  padding: clamp(22px, 2vw, 28px);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-card__heading h3 {
  color: #f5fbff;
  font-family: var(--sb-font-display);
  font-size: clamp(20px, 1.45vw, 24px);
  letter-spacing: 0;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-card__subtitle,
body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-location__label {
  font-family: var(--sb-font-mono);
  text-transform: uppercase;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-card__subtitle {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(63, 245, 255, 0.2);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(63, 245, 255, 0.07);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-price__amount {
  color: #eaffff;
  font-size: clamp(38px, 4vw, 52px);
  text-shadow: 0 0 24px rgba(63, 245, 255, 0.22);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-price__period {
  color: rgba(205, 238, 249, 0.78);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-location__display,
body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-location__trigger {
  border-color: rgba(96, 221, 255, 0.18);
  background: rgba(4, 15, 25, 0.76);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-location__badge {
  border-color: rgba(63, 245, 255, 0.24);
  color: #e8fcff;
  background: rgba(63, 245, 255, 0.08);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-features li {
  color: rgba(226, 245, 255, 0.82);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-features li > span {
  border-color: rgba(63, 245, 255, 0.28);
  color: #8dfbff;
  background: rgba(63, 245, 255, 0.08);
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-cta {
  min-height: 48px;
  border: 1px solid rgba(154, 251, 255, 0.4);
  color: #031017;
  background: linear-gradient(135deg, #a8f6ff 0%, #43f1ed 100%);
  box-shadow: 0 14px 36px -22px rgba(67, 241, 237, 0.9);
  font-family: var(--sb-font-mono);
  text-transform: uppercase;
}

body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-cta:hover,
body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-cta:focus {
  color: #031017;
  box-shadow: 0 18px 42px -22px rgba(67, 241, 237, 0.95), 0 0 0 1px rgba(154, 251, 255, 0.32);
}

body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--germany-vps {
  padding-bottom: clamp(54px, 6vw, 82px);
}

body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--location-os-vps {
  padding-bottom: clamp(48px, 5.4vw, 76px);
}

body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--turkey-vps + .sb-el-benefit-cards,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--netherland-vps + .sb-el-benefit-cards,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--usa-cloud-vps + .sb-el-benefit-cards,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--united-kingdom-vps + .sb-el-benefit-cards,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--france-vps + .sb-el-benefit-cards,
body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--germany-vps + .sb-el-benefit-cards {
  padding-top: clamp(40px, 4.8vw, 64px);
}

body:not(.elementor-editor-active) .sb-el-section--plans.sb-el-service-section--location-os-vps + .sb-el-benefit-cards {
  padding-top: clamp(36px, 4.4vw, 58px);
}

body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--germany-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--germany-vps,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--turkey-vps + .sb-el-os-section,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--netherland-vps + .sb-el-os-section,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--usa-cloud-vps + .sb-el-os-section,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--united-kingdom-vps + .sb-el-os-section,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--france-vps + .sb-el-os-section,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--germany-vps + .sb-el-os-section,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps + .sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps + .sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps + .sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps + .sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps + .sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps + .sb-el-service-section--germany-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--turkey-vps + .sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--netherland-vps + .sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--usa-cloud-vps + .sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--united-kingdom-vps + .sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--france-vps + .sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--germany-vps + .sb-el-service-section--germany-vps {
  padding-block: clamp(44px, 5vw, 76px);
}

body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--location-os-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--location-os-vps,
body:not(.elementor-editor-active) .sb-el-benefit-cards.sb-el-service-section--location-os-vps + .sb-el-os-section,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps + .sb-el-service-section--location-os-vps,
body:not(.elementor-editor-active) .sb-el-use-cases.sb-el-service-section--location-os-vps + .sb-el-service-section--location-os-vps {
  padding-block: clamp(40px, 4.7vw, 70px);
}

body:not(.elementor-editor-active) .sb-el-service-section--turkey-vps + .sb-el-use-cases.sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-service-section--netherland-vps + .sb-el-use-cases.sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-service-section--usa-cloud-vps + .sb-el-use-cases.sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-service-section--united-kingdom-vps + .sb-el-use-cases.sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-service-section--france-vps + .sb-el-use-cases.sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-service-section--germany-vps + .sb-el-use-cases.sb-el-service-section--germany-vps {
  padding-top: clamp(42px, 4.8vw, 70px);
}

body:not(.elementor-editor-active) .sb-el-service-section--location-os-vps + .sb-el-use-cases.sb-el-service-section--location-os-vps {
  padding-top: clamp(38px, 4.4vw, 64px);
}

body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps {
  text-align: center;
}

body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps {
  text-align: center;
}

body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps .sb-el-section-heading > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps .sb-el-os-chips > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps .sb-el-section-heading > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps .sb-el-os-chips > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps .sb-el-section-heading > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps .sb-el-os-chips > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps .sb-el-section-heading > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps .sb-el-os-chips > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps .sb-el-section-heading > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps .sb-el-os-chips > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps .sb-el-section-heading > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps .sb-el-os-chips > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps .sb-el-section-heading > .e-con-inner,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps .sb-el-os-chips > .e-con-inner {
  align-items: center;
  justify-content: center;
}

body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps .sb-el-section-heading,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps .sb-el-os-chips,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps .sb-el-section-heading,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps .sb-el-os-chips,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps .sb-el-section-heading,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps .sb-el-os-chips,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps .sb-el-section-heading,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps .sb-el-os-chips,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps .sb-el-section-heading,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps .sb-el-os-chips,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps .sb-el-section-heading,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps .sb-el-os-chips,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps .sb-el-section-heading,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps .sb-el-os-chips {
  margin-right: auto;
  margin-left: auto;
}

body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--turkey-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--netherland-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--usa-cloud-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--united-kingdom-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--france-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--germany-vps .sb-el-section-copy,
body:not(.elementor-editor-active) .sb-el-os-section.sb-el-service-section--location-os-vps .sb-el-section-copy {
  max-width: 680px;
}

@media (max-width: 700px) {
  body:not(.elementor-editor-active) .sb-pricing-plugin-skin > .e-con-inner {
    gap: 34px;
  }

  body:not(.elementor-editor-active) .sb-pricing-plugin-skin .sb-pricing-plugin-group-heading h3 {
    font-size: 24px;
  }

  body:not(.elementor-editor-active) .sb-pricing-plugin-skin .ddc-card {
    width: 100%;
    max-width: 100%;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  .sb-announcement,
  .sb-site-header,
  .sb-site-footer,
  .sb-page-hero__visual,
  .sb-home-actions {
    display: none !important;
  }

  .sb-article-content,
  .sb-legal-content {
    border: 0;
    background: #fff;
    box-shadow: none;
    color: #111;
  }

  .sb-article-content a,
  .sb-legal-content a {
    color: #111;
    text-decoration: underline;
  }
}

/* Scoped dedicated region grid and card styles */
.sb-el-dedicated-region-grid > .e-con-inner {
  gap: 24px;
}

.sb-el-dedicated-region-card {
  min-height: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 209, 255, 0.085), transparent 11rem),
    linear-gradient(145deg, rgba(10, 12, 20, 0.94), rgba(5, 7, 10, 0.88));
}

.sb-el-dedicated-region-card:hover {
  border-color: rgba(164, 230, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 68px rgba(0, 209, 255, 0.14);
}

/* Badge tags styling inside hub region cards */
.sb-el-dedicated-region-card .sb-el-card-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
  padding: 0;
  list-style: none;
}

.sb-el-dedicated-region-card .sb-el-card-list li {
  font-size: 11px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--sb-radius-sm);
  border: 1px solid rgba(75, 241, 255, 0.22);
  background: rgba(0, 209, 255, 0.05);
  color: var(--sb-tertiary);
}

.sb-el-dedicated-region-card .sb-el-card-list li::before {
  display: none !important; /* Hide default list bullet marker if any */
}

/* Micro-card positioning for custom hero visual tags */
.sb-el-location-dedicated-micro-card--route {
  top: auto;
  bottom: 18%;
  left: 7%;
}

.sb-el-location-dedicated-micro-card--config,
.sb-el-location-dedicated-micro-card--private {
  top: auto;
  right: 7%;
  bottom: 6%;
}

/* Location-distinct route-map visual positioning */

/* Netherlands (Amsterdam Hub: Move marker and routes towards top-left/west) */
.sb-el-dedicated-location-netherlands .sb-el-location-dedicated-marker {
  top: 38px;
  left: 28%;
}

.sb-el-dedicated-location-netherlands .sb-el-location-dedicated-route--west {
  top: 38px;
  left: 5%;
  width: 23%;
  transform: rotate(-10deg);
}

.sb-el-dedicated-location-netherlands .sb-el-location-dedicated-route--east {
  top: 38px;
  left: 30%;
  width: 58%;
  transform: rotate(8deg);
}

/* Netherlands Hero Micro-Card Layout */
.sb-el-dedicated-location-netherlands .sb-el-location-dedicated-micro-card--location {
  top: 6%;
  left: 8%;
  bottom: auto;
  right: auto;
}
.sb-el-dedicated-location-netherlands .sb-el-location-dedicated-micro-card--route {
  top: 15%;
  right: 10%;
  bottom: auto;
  left: auto;
}
.sb-el-dedicated-location-netherlands .sb-el-location-dedicated-micro-card--kvm {
  bottom: 14%;
  left: 12%;
  top: auto;
  right: auto;
}
.sb-el-dedicated-location-netherlands .sb-el-location-dedicated-micro-card--private {
  right: 8%;
  bottom: 20%;
  top: auto;
  left: auto;
}

/* USA (New York Hub: Move marker and routes far west/left) */
.sb-el-dedicated-location-usa .sb-el-location-dedicated-marker {
  top: 55px;
  left: 18%;
}

.sb-el-dedicated-location-usa .sb-el-location-dedicated-route--west {
  top: 55px;
  left: 4%;
  width: 14%;
  transform: rotate(12deg);
}

.sb-el-dedicated-location-usa .sb-el-location-dedicated-route--east {
  top: 55px;
  left: 20%;
  width: 68%;
  transform: rotate(-8deg);
}

/* USA Hero Micro-Card Layout */
.sb-el-dedicated-location-usa .sb-el-location-dedicated-micro-card--location {
  top: 12%;
  left: 4%;
  bottom: auto;
  right: auto;
}
.sb-el-dedicated-location-usa .sb-el-location-dedicated-micro-card--route {
  top: 4%;
  right: 12%;
  bottom: auto;
  left: auto;
}
.sb-el-dedicated-location-usa .sb-el-location-dedicated-micro-card--kvm {
  bottom: 22%;
  left: 8%;
  top: auto;
  right: auto;
}
.sb-el-dedicated-location-usa .sb-el-location-dedicated-micro-card--config {
  right: 4%;
  bottom: 10%;
  top: auto;
  left: auto;
}

/* Netherlands & USA Page Layout & Card Readability Enhancements */
.sb-el-dedicated-location-netherlands .sb-el-section-heading {
  max-width: 820px !important;
  width: min(100%, 820px) !important;
}

.sb-el-dedicated-location-netherlands .sb-el-plan-grid .sb-el-card,
.sb-el-dedicated-location-usa .sb-el-plan-grid .sb-el-card,
.sb-el-service-section--turkey-dedicated .sb-el-plan-grid .sb-el-card {
  min-height: 400px;
  padding: 24px 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.11), transparent 38%),
    linear-gradient(160deg, rgba(9, 12, 20, 0.96), rgba(6, 8, 14, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 38px rgba(0, 0, 0, 0.22);
}

.sb-el-dedicated-location-netherlands .sb-el-plan-grid .sb-el-card-copy p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.sb-el-dedicated-location-netherlands .sb-el-plan-grid .sb-el-card-list li {
  font-size: 13px !important;
  line-height: 1.45;
  margin-bottom: 8px;
}

.sb-el-dedicated-location-netherlands .sb-el-plan-grid .sb-el-h3 .elementor-heading-title,
.sb-el-dedicated-location-usa .sb-el-plan-grid .sb-el-h3 .elementor-heading-title,
.sb-el-service-section--turkey-dedicated .sb-el-plan-grid .sb-el-h3 .elementor-heading-title {
  font-size: 19px !important;
  line-height: 1.25;
  text-wrap: balance;
}

@media (min-width: 1025px) {
  .sb-el-dedicated-location-netherlands .sb-el-plan-grid > .e-con-inner,
  .sb-el-dedicated-location-usa .sb-el-plan-grid > .e-con-inner,
  .sb-el-service-section--turkey-dedicated .sb-el-plan-grid > .e-con-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (min-width: 1201px) {
  .sb-el-dedicated-location-netherlands .sb-el-plan-grid > .e-con-inner,
  .sb-el-dedicated-location-usa .sb-el-plan-grid > .e-con-inner,
  .sb-el-service-section--turkey-dedicated .sb-el-plan-grid > .e-con-inner {
    gap: 24px !important;
  }
}

/* Dedicated Plan Cards - Structured Feature Tags */
.sb-el-dedicated-location-netherlands .sb-el-plan-grid .sb-el-card-list ul,
.sb-el-dedicated-location-usa .sb-el-plan-grid .sb-el-card-list ul,
.sb-el-service-section--turkey-dedicated .sb-el-plan-grid .sb-el-card-list ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.sb-el-dedicated-location-netherlands .sb-el-plan-grid .sb-el-card-list li,
.sb-el-dedicated-location-usa .sb-el-plan-grid .sb-el-card-list li,
.sb-el-service-section--turkey-dedicated .sb-el-plan-grid .sb-el-card-list li {
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin-bottom: 7px !important;
  color: var(--sb-on-surface) !important;
}

.sb-el-dedicated-chips-wrapper {
  margin-top: 12px;
}

.sb-dedicated-card__tag-groups {
  display: grid;
  gap: 9px;
}

.sb-dedicated-card__tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sb-dedicated-card__tag-group--primary {
  padding-bottom: 1px;
}

.sb-dedicated-card__tag-group--secondary {
  padding-top: 7px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.sb-dedicated-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(164, 230, 255, 0.14);
  background: rgba(255, 255, 255, 0.032);
  color: rgba(232, 239, 248, 0.88);
  font-family: var(--sb-font-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.sb-dedicated-tag::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.78;
}

.sb-dedicated-tag--included {
  border-color: rgba(125, 255, 186, 0.16);
  background: rgba(125, 255, 186, 0.06);
  color: #b9f6d6;
}

.sb-dedicated-tag--optional {
  border-color: rgba(98, 215, 255, 0.18);
  background: rgba(98, 215, 255, 0.06);
  color: #c2efff;
}

.sb-dedicated-tag--request {
  border-color: rgba(255, 205, 114, 0.18);
  background: rgba(255, 205, 114, 0.06);
  color: #ffd89b;
}

.sb-dedicated-tag--hardware {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(96, 165, 250, 0.055);
  color: #dbe8fb;
}

.sb-dedicated-tag--quote {
  border-color: rgba(192, 132, 252, 0.2);
  background: rgba(192, 132, 252, 0.06);
  color: #f0d6ff;
}

.sb-colo-option-grid > .e-con-inner {
  gap: 18px;
}

.sb-colo-option-card {
  min-height: 252px;
  padding: clamp(20px, 2vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.1), transparent 40%),
    linear-gradient(155deg, rgba(10, 12, 20, 0.96), rgba(5, 7, 12, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(0, 0, 0, 0.18);
}

.sb-colo-option-card .sb-el-h3 .elementor-heading-title {
  font-size: 18px;
  line-height: 1.24;
  text-wrap: balance;
}

.sb-colo-option-card .sb-el-card-copy p {
  margin-bottom: 14px;
  line-height: 1.56;
}

.sb-colo-option-card__meta {
  margin-top: auto;
}

.sb-colo-option-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sb-colo-option-tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 11px;
  border: 1px solid rgba(164, 230, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.032);
  color: var(--sb-on-surface-variant);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
}

.sb-colo-planning-matrix {
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(164, 230, 255, 0.14);
  border-radius: var(--sb-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.09), transparent 34%),
    rgba(8, 11, 18, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.18);
}

.sb-colo-planning-matrix__table-wrap {
  overflow-x: auto;
}

.sb-colo-matrix-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.sb-colo-matrix-table th,
.sb-colo-matrix-table td {
  padding: 14px 16px;
  border: 1px solid rgba(164, 230, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.sb-colo-matrix-table thead th {
  color: var(--sb-on-surface);
  background: rgba(0, 209, 255, 0.08);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sb-colo-matrix-table tbody th {
  width: 18%;
  color: var(--sb-on-surface);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 700;
}

.sb-colo-matrix-table td {
  color: var(--sb-text-muted);
  line-height: 1.55;
}

.sb-colo-planning-matrix__footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.sb-colo-planning-matrix__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 11px 16px;
  border: 1px solid rgba(164, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.sb-colo-planning-matrix__cta:hover,
.sb-colo-planning-matrix__cta:focus {
  color: var(--sb-on-primary);
  border-color: rgba(164, 230, 255, 0.48);
  background: linear-gradient(135deg, rgba(164, 230, 255, 0.9), rgba(75, 241, 255, 0.72));
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.18);
}

/* Dedicated Hub Region Card Teaser Style */
.sb-el-dedicated-region-card .sb-el-card-list li:first-child {
  font-weight: 700;
  color: var(--sb-primary) !important;
  font-size: 14px !important;
  margin-bottom: 12px;
}

/* Dedicated Plan Cards Price & Layout Adjustments */
.sb-dedicated-price-amount {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--sb-primary) !important;
  font-family: var(--sb-font-sans) !important;
}

.sb-dedicated-price-period {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--sb-on-surface-variant) !important;
  margin-left: 4px !important;
  text-transform: none !important;
}

.sb-dedicated-price-quote {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--sb-primary) !important;
  font-family: var(--sb-font-sans) !important;
  letter-spacing: 0.01em;
}

.sb-el-dedicated-card {
  min-height: 480px !important;
}

.sb-el-locations-grid > .e-con-inner {
  gap: 24px;
}

.sb-el-locations-grid .sb-el-card--location {
  min-height: 100%;
  padding: 24px 22px;
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.08), transparent 10rem),
    linear-gradient(160deg, rgba(10, 14, 22, 0.96), rgba(7, 9, 14, 0.9));
}

.sb-el-location-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 8px;
}

.sb-el-location-status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}

.sb-el-location-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 209, 255, 0.18);
  background: rgba(0, 209, 255, 0.08);
  color: var(--sb-primary);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.sb-el-location-status-badge--dedicated-orderable {
  border-color: rgba(125, 255, 186, 0.26);
  background: rgba(125, 255, 186, 0.08);
  color: #9ff8cb;
}

.sb-el-location-status-badge--dedicated-quote,
.sb-el-location-status-badge--colocation {
  border-color: rgba(255, 205, 114, 0.3);
  background: rgba(255, 205, 114, 0.08);
  color: #ffd788;
}

.sb-el-location-status-badge--not-listed {
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(148, 163, 184, 0.08);
  color: #c7d2e2;
}

.sb-el-location-status-badge--country {
  border-color: rgba(192, 132, 252, 0.28);
  background: rgba(192, 132, 252, 0.08);
  color: #e6c2ff;
}

.sb-el-location-status-badge--detail {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.08);
  color: #bdddff;
}

.sb-el-location-service-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.sb-el-location-service-status div {
  padding: 12px 12px 11px;
  border-radius: 14px;
  background: rgba(15, 23, 36, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.sb-el-location-service-status dt {
  margin: 0 0 6px;
  color: var(--sb-on-surface-muted);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sb-el-location-service-status dd {
  margin: 0;
  color: var(--sb-on-surface);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.sb-el-location-route-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.sb-el-location-route-group {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  background: rgba(8, 12, 19, 0.54);
}

.sb-el-location-route-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--sb-on-surface-muted);
  font-family: var(--sb-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sb-el-location-route-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sb-el-location-route-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 209, 255, 0.16);
  background: rgba(0, 209, 255, 0.05);
  color: var(--sb-on-surface);
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
}

.sb-el-location-route-chip:hover,
.sb-el-location-route-chip:focus-visible {
  border-color: rgba(164, 230, 255, 0.42);
  color: var(--sb-primary);
  outline: none;
}

.sb-el-card-copy--note p {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.65;
}

.sb-el-faq-topic-section {
  margin-top: 8px;
}

.sb-el-faq-topic-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.08), transparent 11rem),
    linear-gradient(160deg, rgba(10, 14, 22, 0.92), rgba(7, 9, 14, 0.88));
}

.sb-el-faq-topic-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 209, 255, 0.16);
  background: rgba(0, 209, 255, 0.05);
  color: var(--sb-on-surface);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.sb-el-faq-topic-link:hover,
.sb-el-faq-topic-link:focus-visible {
  border-color: rgba(164, 230, 255, 0.42);
  color: var(--sb-primary);
  outline: none;
}

.sb-el-faq-group {
  scroll-margin-top: 110px;
}

.sb-el-faq-group .sb-el-section-copy {
  margin-bottom: 16px;
}

.sb-el-faq-group .sb-el-accordion {
  margin-top: 8px;
}

.sb-el-faq-group .elementor-accordion-item {
  margin-bottom: 12px;
  border-radius: 16px;
  overflow: hidden;
}

.sb-el-faq-group .elementor-tab-title {
  padding: 18px 20px !important;
}

.sb-el-faq-group .elementor-tab-content {
  padding: 0 20px 20px !important;
}

.sb-dedicated-chips-container--service {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.sb-dedicated-chip--service {
  background: rgba(125, 255, 186, 0.08);
  border-color: rgba(125, 255, 186, 0.22);
  color: #b8ffda;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .sb-el-location-service-status {
    grid-template-columns: 1fr;
  }

  .sb-el-location-route-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sb-el-locations-grid .sb-el-card--location {
    padding: 20px 18px;
  }

  .sb-el-faq-topic-nav__inner,
  .sb-el-location-route-chip-row,
  .sb-el-location-status-badges,
  .sb-el-location-legend {
    gap: 8px;
  }

  .sb-el-location-route-chip,
  .sb-el-faq-topic-link {
    width: 100%;
    justify-content: center;
  }
}
