:root {
  --sb-blue: #0072c6;
  --sb-teal: #00bcc8;
  --sb-navy: #0a1630;
  --sb-orange: #ff7a1a;
  --sb-green: #1f9a5c;
  --sb-muted: #4a5568;
  --sb-bg: #f2f5f9;
  --font-display: "Unbounded", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--sb-navy);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 122, 26, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(0, 114, 198, 0.1), transparent 45%),
    linear-gradient(180deg, #e9eef5 0%, var(--sb-bg) 35%, #eef2f7 100%);
  background-attachment: fixed;
  min-height: 100vh;
  font-size: 1.05rem;
  line-height: 1.55;
  overflow-x: hidden;
}
@media (max-width: 1023px) {
  body { background-attachment: scroll; }
}

.nav-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 4rem;
  padding: 0.35rem 0;
}
.nav-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  max-width: min(42vw, 180px);
}
@media (min-width: 640px) {
  .nav-logo { max-width: 210px; }
}

.nav-desktop {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link,
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sb-navy);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover,
.nav-dropdown-btn:hover {
  color: var(--sb-orange);
  background: rgba(255, 122, 26, 0.06);
}
.nav-link--active,
.nav-dropdown-btn.nav-link--active {
  color: var(--sb-orange);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 15rem;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  border-radius: 0.9rem;
  box-shadow: 0 16px 40px rgba(15, 32, 68, 0.12);
  z-index: 60;
}
.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel {
  display: grid;
  gap: 0.1rem;
}
.nav-dropdown-panel .nav-link {
  width: 100%;
  justify-content: flex-start;
  white-space: normal;
  line-height: 1.3;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 46vw;
  padding: 0.4rem 0.55rem;
  border-radius: 0.65rem;
  color: var(--sb-orange);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 122, 26, 0.08);
}
.nav-phone:hover { color: #e66a0f; background: rgba(255, 122, 26, 0.14); }
.nav-phone-num {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .nav-phone { max-width: none; font-size: 0.9rem; padding: 0.45rem 0.7rem; }
}

.nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  color: var(--sb-navy);
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
}
@media (min-width: 1024px) {
  .nav-burger { display: none; }
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(15, 32, 68, 0.08);
  padding: 0.75rem 0 1rem;
  max-height: min(75vh, 32rem);
  overflow-y: auto;
}
.nav-mobile.is-open {
  display: block;
}
@media (min-width: 1024px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 122, 26, 0.1);
  color: var(--sb-orange);
  font-weight: 800;
  text-decoration: none;
}
.nav-mobile-group { margin-bottom: 0.75rem; }
.nav-mobile-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sb-muted);
  padding: 0.35rem 0.25rem;
}
.nav-mobile-link {
  display: block;
  padding: 0.65rem 0.55rem;
  border-radius: 0.55rem;
  color: var(--sb-navy);
  font-weight: 600;
  text-decoration: none;
}
.nav-mobile-link:hover,
.nav-mobile-link.is-active {
  color: var(--sb-orange);
  background: rgba(255, 122, 26, 0.06);
}

.related-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.related-card {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 32, 68, 0.08);
  border-color: rgba(255, 122, 26, 0.28);
}
.related-card-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sb-orange);
  margin-bottom: 0.35rem;
}
.related-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.related-card-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--sb-muted);
  font-weight: 500;
}

.hero-plane {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-plane::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(transparent, var(--sb-bg));
  pointer-events: none;
}

.hero-photo {
  background-size: cover;
  background-position: center;
}

/* Hero direction slider */
.hero-slider {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #0a1630;
}
.hero-slider-track {
  position: relative;
  min-height: 100vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  display: flex;
  align-items: center;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  padding-top: 7.5rem;
  padding-bottom: 8.5rem;
  max-width: 42rem;
}
.hero-slide-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
  color: #fff;
  border-left: 4px solid var(--slide-accent, var(--sb-orange));
  padding-left: 0.9rem;
  text-shadow: 0 4px 28px rgba(0,0,0,0.35);
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--sb-bg));
  pointer-events: none;
  z-index: 3;
}
.hero-slider-ui {
  position: absolute;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-slider-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(10,22,48,0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-slider-btn:hover {
  background: rgba(255,122,26,0.85);
  border-color: transparent;
}
.hero-slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hero-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-dot.is-active {
  width: 1.6rem;
  background: var(--sb-orange);
}
.hero-slider-tabs {
  display: none;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  flex-direction: column;
  gap: 0.45rem;
}
@media (min-width: 1100px) {
  .hero-slider-tabs { display: flex; }
}
.hero-tab {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,22,48,0.4);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.hero-tab.is-active,
.hero-tab:hover {
  color: #fff;
  border-color: transparent;
  background: rgba(255,122,26,0.9);
}
.hero-tab-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb06a;
  margin-bottom: 1rem;
  border-left: 3px solid var(--sb-orange);
  padding-left: 0.75rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 22ch;
  margin-bottom: 1.15rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-headline--lead {
  font-size: clamp(1.65rem, 4.2vw, 2.85rem);
  max-width: 16ch;
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  max-width: 36rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.hero-trust {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  max-width: 40rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

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

.btn-primary {
  background: var(--sb-orange);
  color: #fff;
  border-radius: 9999px;
  padding: 0.95rem 1.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(255, 122, 26, 0.35);
}
.btn-primary:hover { background: #e96b10; transform: translateY(-1px); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  border-radius: 9999px;
  padding: 0.95rem 1.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-ghost {
  min-height: 3.15rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  line-height: 1.2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-ctas .btn-primary {
  box-shadow: 0 8px 22px rgba(255, 122, 26, 0.3);
}
.hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.hero-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 639px) {
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    flex: 1 1 calc(50% - 0.35rem);
    justify-content: center;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}

.section { padding: 4.5rem 0; }
@media (min-width: 768px) { .section { padding: 6.5rem 0; } }

.section-alt {
  background: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(15,32,68,0.06);
  border-bottom: 1px solid rgba(15,32,68,0.06);
}

.section-head { max-width: 44rem; }

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sb-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sb-navy);
  line-height: 1.2;
}

.section-lead {
  color: var(--sb-muted);
  max-width: 40rem;
  margin-top: 0.9rem;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 500;
}

.tile {
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.07);
  border-radius: 1.15rem;
  padding: 1.35rem 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 32, 68, 0.08);
}

.tile-accent {
  border-top: 3px solid var(--tile-accent, var(--sb-orange));
}

.tile-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sb-navy);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.tile-text {
  font-size: 0.95rem;
  color: var(--sb-muted);
  line-height: 1.5;
  font-weight: 500;
}

.product-link { text-decoration: none; color: inherit; display: block; height: 100%; }

.direction-card {
  overflow: hidden;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.direction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(15, 32, 68, 0.12);
}
.direction-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f2044;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .direction-card-media { height: 220px; }
}
.direction-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.direction-card:hover .direction-card-media img { transform: scale(1.04); }

.direction-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 1px solid #edf1f6;
}

.direction-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sb-navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.direction-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.direction-card-text {
  color: var(--sb-muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.direction-card-cta {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--sb-orange);
}

.venues-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .venues-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .venues-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.9rem;
  }
}

.direction-card--venue .direction-card-media {
  height: 132px;
}
@media (min-width: 768px) {
  .direction-card--venue .direction-card-media { height: 140px; }
}
@media (min-width: 1100px) {
  .direction-card--venue .direction-card-media { height: 118px; }
  .direction-card--venue .direction-card-body {
    padding: 0.95rem 1rem 1.05rem;
  }
  .direction-card--venue .direction-card-title {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }
  .direction-card--venue .direction-card-text {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
  .direction-card--venue {
    border-radius: 1.1rem;
  }
}

.badge-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 9999px;
  display: inline-block;
}

.media-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 32, 68, 0.12);
}
.media-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.venue-chip {
  display: inline-flex;
  padding: 0.5rem 0.95rem;
  border-radius: 9999px;
  background: #fff;
  border: 1.5px solid #d0dae6;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sb-navy);
}

.cross-card-media {
  border-radius: 0.85rem;
  overflow: hidden;
  height: 148px;
  background: #e8eef6;
}
.cross-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cross-card-media--product {
  background: #f0f2f5;
}
.cross-card-media--product img {
  object-fit: contain;
  padding: 0.35rem 0.5rem;
}

.layers-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .layers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .layers-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}

.layer-node {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.layer-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 32, 68, 0.08);
  border-color: rgba(14, 165, 233, 0.28);
}

.layer-node-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(14, 165, 233, 0.12);
}

.layer-node-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.layer-node-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--sb-muted);
  font-weight: 500;
}

/* Возможности платформы — строки как sb-sport.ru */
#capabilities {
  scroll-margin-top: 5rem;
}
.benefits-wrap {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 100% 55% at 50% -8%, rgba(14, 165, 233, 0.1), transparent 50%),
    radial-gradient(ellipse 70% 40% at 0% 100%, rgba(0, 188, 200, 0.06), transparent 45%),
    linear-gradient(180deg, #f4f8fb 0%, #f7fafc 50%, #eef3f8 100%);
}
@media (min-width: 768px) {
  .benefits-wrap { padding: 6rem 0 6.5rem; }
}
.benefits-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.benefits-hero .section-lead { margin-left: auto; margin-right: auto; }
.benefits-rows {
  --benefit-gap: clamp(2.75rem, 6vw, 5rem);
}
.benefits-row + .benefits-row { margin-top: var(--benefit-gap); }

.benefits-grid {
  display: grid;
  gap: 0;
  align-items: center;
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
  .benefits-grid--flip .benefits-img-wrap { order: 2; }
  .benefits-grid--flip .benefits-copy { order: 1; }
}

.benefits-img-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
  border-radius: 0 0 1.125rem 1.125rem;
  background: #0f2044;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 20px 40px -16px rgba(15, 23, 42, 0.14);
}
@media (min-width: 640px) {
  .benefits-img-wrap { height: 16rem; }
}
@media (min-width: 1024px) {
  .benefits-img-wrap {
    height: auto;
    min-height: min(42vh, 400px);
    border-radius: 1.25rem;
    align-self: stretch;
  }
  .benefits-img-wrap img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .benefits-row:hover .benefits-img-wrap img { transform: scale(1.02); }
  .benefits-row:hover .benefits-img-wrap {
    box-shadow:
      0 4px 8px rgba(15, 23, 42, 0.06),
      0 28px 56px -12px rgba(14, 165, 233, 0.18);
  }
}
.benefits-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefits-img-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15, 32, 68, 0.28), transparent 55%);
}
@media (min-width: 1024px) {
  .benefits-img-fade {
    background: linear-gradient(to right, rgba(15, 32, 68, 0.06), transparent 40%, rgba(244, 248, 251, 0.55));
  }
  .benefits-img-fade--flip {
    background: linear-gradient(to left, rgba(15, 32, 68, 0.06), transparent 40%, rgba(244, 248, 251, 0.55));
  }
}

.benefits-copy {
  padding: 1.75rem 0.25rem 0.5rem;
}
@media (min-width: 1024px) {
  .benefits-copy {
    padding: 1rem 0.5rem 1rem 1.25rem;
  }
  .benefits-grid--flip .benefits-copy {
    padding: 1rem 1.25rem 1rem 0.5rem;
  }
}

.benefits-step-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--cap-accent, #0ea5e9);
  opacity: 0.22;
  margin-bottom: 0.35rem;
}

.benefits-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--sb-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.benefits-text {
  color: var(--sb-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--sb-navy);
  font-weight: 600;
}
.benefits-list li::marker {
  color: var(--cap-accent, #0ea5e9);
}

.metric-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(15,32,68,0.07);
  border-bottom: 3px solid var(--sb-blue);
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--sb-orange);
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-label {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sb-muted);
}

.form-shell {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 32, 68, 0.08);
  box-shadow: 0 24px 60px rgba(15, 32, 68, 0.08);
  padding: 1.75rem;
}

.form-shell-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 0.25rem;
}
.form-shell-sub {
  font-size: 0.9rem;
  color: var(--sb-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.contact-band {
  display: grid;
  gap: 0;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  box-shadow: 0 24px 60px rgba(15, 32, 68, 0.08);
}
@media (min-width: 1024px) {
  .contact-band {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }
}

.contact-band-info {
  padding: 2rem 1.75rem 2.25rem;
  background:
    linear-gradient(160deg, rgba(255,122,26,0.1) 0%, transparent 42%),
    linear-gradient(200deg, #0a1630 0%, #123a6b 55%, #0d6e8a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.contact-band-info .section-kicker {
  color: #ffb06a;
  border: none;
}
.contact-band-title {
  color: #fff !important;
  margin-top: 0.15rem;
}
.contact-band-lead {
  color: rgba(255,255,255,0.82) !important;
  margin-bottom: 1.5rem;
}

.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
}
.contact-benefit-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #ffb06a;
}

.contact-channels {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-channel:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,180,106,0.45);
}
.contact-channel-ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background: rgba(255,122,26,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel--doc .contact-channel-ico {
  background: rgba(0,188,200,0.95);
}
.contact-channel-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.1rem;
}
.contact-channel-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.contact-band-form {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem 1.75rem 2.25rem;
  height: 100%;
}
@media (max-width: 1023px) {
  .contact-band-form {
    border-top: 1px solid #e8eef4;
  }
}

.form-input {
  width: 100%;
  border: 1.5px solid #cfd8e3;
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--sb-navy);
  font-weight: 500;
}
.form-input:focus {
  outline: 2px solid rgba(255, 122, 26, 0.35);
  border-color: var(--sb-orange);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 32, 68, 0.55);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.quiz-overlay.open { display: flex; }
.quiz-panel {
  background: #fff;
  width: min(520px, 100%);
  border-radius: 1.25rem;
  padding: 1.5rem;
  max-height: 90vh;
  overflow: auto;
}

.site-logo { height: 2.35rem; width: auto; max-width: 210px; }

.page-hero {
  min-height: 48vh;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.page-hero--solid {
  background: linear-gradient(115deg, #0a1630 0%, #0072c6 55%, #00bcc8 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(transparent, var(--sb-bg));
  pointer-events: none;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(120deg, #0a1630 0%, #0072c6 55%, #00bcc8 100%);
}

.page-hero .brand-mark,
.page-hero h1 {
  font-family: var(--font-display);
}

.video-card { min-width: 0; }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: #0a1630;
  box-shadow: 0 18px 40px rgba(15, 32, 68, 0.12);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.module-card {
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.07);
  border-radius: 1.2rem;
  padding: 1rem 1rem 1.25rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 32, 68, 0.08);
}
.module-card-media {
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef3f8;
}
.module-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-card-media--equip img {
  object-fit: contain;
  padding: 0.75rem;
}

.equip-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .equip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .equip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
}

.equip-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.equip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 32, 68, 0.1);
}
.equip-card-media {
  height: 200px;
  background: linear-gradient(180deg, #f3f6f9 0%, #e8eef5 100%);
  overflow: hidden;
}
.equip-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equip-card-media--product {
  background: linear-gradient(180deg, #f7f9fb 0%, #eef2f7 100%);
}
.equip-card-media--product img {
  object-fit: contain;
  padding: 0.85rem 1rem;
}
.equip-card-series {
  padding: 0.85rem 1.15rem 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sb-orange);
}
.equip-card-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--sb-navy);
  letter-spacing: -0.02em;
  padding: 0.35rem 1.15rem 0.4rem;
  line-height: 1.25;
}
.equip-card-text {
  margin: 0;
  padding: 0 1.15rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--sb-muted);
  font-weight: 500;
}

.screens-strip {
  position: relative;
}
.screens-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 2.75rem 0.75rem;
  scrollbar-width: thin;
}
.screens-item {
  flex: 0 0 min(78%, 720px);
  scroll-snap-align: center;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  box-shadow: 0 14px 34px rgba(15, 32, 68, 0.08);
}
.screens-item img {
  display: block;
  width: 100%;
  height: auto;
}
.screens-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid #d5dde8;
  background: #fff;
  color: var(--sb-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 32, 68, 0.1);
}
.screens-nav--prev { left: 0; }
.screens-nav--next { right: 0; }
.screens-nav:hover {
  background: var(--sb-orange);
  border-color: transparent;
  color: #fff;
}

.journey-step {
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--sb-teal);
  background: #fff;
  border-radius: 0 1rem 1rem 0;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(15, 32, 68, 0.06);
  border-left-width: 3px;
}

.node-card {
  background: #fff;
  border: 1px solid rgba(15, 32, 68, 0.08);
  border-radius: 1.2rem;
  padding: 0.9rem 0.9rem 1.15rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.node-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 32, 68, 0.1);
}
.node-card-media {
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  background: linear-gradient(160deg, #e8f4fb 0%, #f3f6fa 100%);
}
.node-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.55rem;
}
.node-card-media--screen img {
  object-fit: cover;
  padding: 0;
}
.node-card-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--sb-orange);
  text-decoration: none;
}
.node-card-link:hover { text-decoration: underline; }
