:root {
  --blue-950: #00335f;
  --blue-900: #004678;
  --blue-800: #005c97;
  --blue-700: #0077b8;
  --blue-600: #008fd1;
  --blue-500: #12a3e7;
  --blue-soft: #e9f6ff;
  --green: #75bb32;
  --yellow: #f0df2f;
  --white: #ffffff;
  --text: #0b315f;
  --muted: #5d6d7e;
  --shadow: 0 14px 35px rgba(0, 51, 95, 0.14);
  --shadow-soft: 0 8px 22px rgba(0, 51, 95, 0.10);
  --radius: 14px;
  --radius-lg: 18px;
  --container: 1030px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 560px, rgba(0, 130, 200, 0.09), transparent 260px),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 28%, #f9fcff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  height: 88px;
  background: linear-gradient(90deg, #004a7c 0%, #006aa5 52%, #00456f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 22px rgba(0, 30, 60, 0.28);
  position: relative;
  z-index: 10;
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 238px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 33px 0 31px;
  opacity: 0.95;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 21px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: var(--yellow);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  width: 38px;
}

.lang-toggle {
  min-width: 58px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: #00335f;
  background: linear-gradient(180deg, #ffffff, #dff4ff);
  box-shadow: 0 8px 18px rgba(0, 30, 60, .18);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.lang-toggle i {
  font-size: 14px;
  color: #0077b8;
}

.lang-toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 24px rgba(0, 30, 60, .22);
}

.login-btn {
  min-width: 110px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,.42);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}

.hero {
  min-height: 480px;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(0, 26, 50, .46), rgba(0, 60, 96, .08) 34%, rgba(0,0,0,.08)),
    url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 74%, rgba(0, 40, 70, .25) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-card {
  width: 520px;
  margin-top: -2px;
  padding: 34px 36px 30px;
  border: 2px solid rgba(255,255,255,.34);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 33, 54, .62), rgba(9, 24, 42, .64));
  box-shadow: 0 22px 52px rgba(0, 21, 40, .38), inset 0 0 34px rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
  color: #fff;
}

.hero-card h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .26);
}

.accent-line {
  display: block;
  width: 62px;
  height: 4px;
  margin: 18px 0 21px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.hero-card p {
  margin: 0 0 26px;
  max-width: 430px;
  font-size: 18px;
  line-height: 1.54;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.1px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #1db7ff, #0078bd);
  box-shadow: 0 12px 24px rgba(0, 112, 180, .36);
}

.btn-outline {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.46);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

.feature-grid-wrap {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding: 0 0 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 143, 209, .16), transparent 210px),
    radial-gradient(circle at 88% 12%, rgba(117, 187, 50, .12), transparent 190px),
    linear-gradient(180deg, rgba(232, 247, 255, .92) 0%, #f7fbff 58%, #ffffff 100%);
  overflow: hidden;
}

.feature-grid-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0, 92, 151, .08) 1px, transparent 1px),
    linear-gradient(45deg, rgba(0, 92, 151, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .45;
  pointer-events: none;
}

.feature-grid-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 120px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: translateX(-50%);
  opacity: .9;
  pointer-events: none;
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.feature-card {
  min-height: 148px;
  padding: 22px 12px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(0, 76, 125, .10);
  box-shadow: var(--shadow-soft);
}

.feature-card i {
  font-size: 42px;
  color: #0785c4;
  margin-bottom: 13px;
}

.feature-card strong {
  font-size: 15px;
  font-weight: 900;
  color: #174f8e;
  margin-bottom: 7px;
}

.feature-card small {
  font-size: 11px;
  font-weight: 600;
  color: #33475d;
  min-height: 14px;
}

.feature-card span,
.operation-card span,
.team-card em,
.section-title span {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 14px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.section {
  padding: 24px 0 0;
}

.section-title {
  text-align: center;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 auto 26px;
  color: var(--text);
}

.section-title h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.8px;
}

.section-title > i {
  font-size: 21px;
  color: #9ccfe9;
  transform: scaleX(1.35);
}

.section-title span {
  grid-column: 2;
  justify-self: center;
  margin-top: 9px;
  width: 50px;
}

.fleet-section {
  padding-top: 25px;
  overflow: hidden;
}

.fleet-carousel {
  position: relative;
}

.fleet-mask {
  overflow: hidden;
  padding: 0 2px 3px;
}

.fleet-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: fleetMove 32s linear infinite;
}

.fleet-track:hover {
  animation-play-state: paused;
}

@keyframes fleetMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 6px)); }
}

.fleet-card {
  flex: 0 0 192px;
  height: 215px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 76, 125, .12);
  box-shadow: 0 8px 18px rgba(0, 51, 95, .16);
}

.fleet-card img {
  width: 100%;
  height: 174px;
  object-fit: cover;
}

.fleet-card strong {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0478b7, #006fa9);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #acc0d4;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 51, 95, .16);
  transform: translateY(-50%);
}

.carousel-arrow.left {
  left: -42px;
}

.carousel-arrow.right {
  right: -42px;
}

.fleet-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 26px;
}

.fleet-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d5dde7;
}

.fleet-dots .active {
  background: #0088c6;
}

.stats-band {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 0% 30%, rgba(255,255,255,.12), transparent 230px),
    linear-gradient(90deg, #00629c 0%, #0090ce 50%, #006ca7 100%);
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(0, 45, 80, .20);
  overflow: hidden;
}

.stats-band::before,
.stats-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .24;
}

.stats-band::before {
  left: 0;
  top: -18px;
  width: 310px;
  height: 140px;
  border: 2px dashed rgba(255,255,255,.35);
  border-radius: 50%;
  transform: rotate(12deg);
}

.stats-band::after {
  right: 10px;
  top: 16px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,.42);
  clip-path: polygon(18% 0, 76% 9%, 100% 55%, 70% 100%, 20% 77%, 0 38%);
}

.stats-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.30);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item i {
  font-size: 46px;
  color: rgba(255,255,255,.92);
}

.stat-item strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.4px;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.93);
}

.team-section {
  padding-top: 27px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 76, 125, .12);
  box-shadow: var(--shadow-soft);
}

.team-card img {
  width: 100%;
  height: 146px;
  object-fit: cover;
}

.team-card div {
  min-height: 73px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 10px 12px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.team-card strong {
  color: #174f8e;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
}

.team-card span {
  margin-top: 4px;
  color: #1687ce;
  font-size: 13px;
  font-weight: 800;
}

.team-card em {
  margin-top: 10px;
  width: 32px;
}

.operations-section {
  padding-top: 23px;
}

.section-title.compact {
  margin-bottom: 20px;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.operation-card {
  min-height: 205px;
  padding: 24px 18px 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(0, 76, 125, .11);
  box-shadow: 0 9px 22px rgba(0, 51, 95, .08);
}

.operation-card i {
  font-size: 43px;
  color: #0785c4;
  margin-bottom: 15px;
}

.operation-card strong {
  color: #174f8e;
  font-size: 15px;
  font-weight: 900;
}

.operation-card p {
  margin: 10px 0 0;
  color: #33475d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.operation-card span {
  margin-top: auto;
}

.discord-section {
  padding: 25px 0 12px;
}

.discord-card {
  min-height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border-radius: 8px;
  padding: 30px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 58% 50%, rgba(255,255,255,.18), transparent 180px),
    linear-gradient(90deg, #004276 0%, #006aaa 55%, #0b73ad 100%);
  box-shadow: var(--shadow-soft);
}

.discord-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 33, 64, .42), transparent 62%);
  pointer-events: none;
}

.discord-icon,
.discord-copy {
  position: relative;
  z-index: 2;
}

.discord-icon {
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: linear-gradient(145deg, #6d77ff, #5565dc);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.discord-icon svg {
  width: 72px;
  height: 72px;
  display: block;
  color: #fff;
}

.discord-copy {
  width: min(390px, 47%);
}

.discord-copy h2 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.discord-copy p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
  color: rgba(255,255,255,.90);
}

.btn-discord {
  min-height: 42px;
  padding: 0 25px;
  border: 2px solid rgba(255,255,255,.43);
  color: #fff;
  background: rgba(0, 36, 72, .20);
  border-radius: 4px;
}

.discord-plane {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  opacity: .97;
  mix-blend-mode: screen;
  transform: scale(.98);
  transform-origin: right center;
}

.site-footer {
  color: #fff;
  background: linear-gradient(90deg, #004775 0%, #006ca5 48%, #004874 100%);
  padding: 30px 0 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.17);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr .8fr 1.15fr 1fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.footer-brand img {
  width: 225px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
}

.footer-links a:hover,
.domain:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.domain {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.social-icons a svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.social-icons a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.social-icons a:nth-child(1) {
  background: linear-gradient(135deg, #feda75, #d62976, #962fbf);
}

.social-icons a:nth-child(2) {
  background: #1877f2;
}

.footer-bottom {
  padding-top: 10px;
  text-align: center;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 4px 0;
}

@media (max-width: 1080px) {
  .container { width: min(100% - 34px, var(--container)); }
  .main-nav { gap: 20px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { min-height: 96px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .operations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-social { align-items: flex-start; }
  .carousel-arrow.left { left: 6px; }
  .carousel-arrow.right { right: 6px; }
}

@media (max-width: 760px) {
  .site-header,
  .header-inner { height: auto; }
  .header-inner {
    padding: 16px 0;
    flex-direction: column;
    gap: 14px;
  }
  .brand img { width: 210px; }
  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 13px;
  }
  .main-nav a { padding: 5px 0 10px; }
  .main-nav a::after { bottom: 2px; }
  .lang-toggle {
    height: 32px;
    min-width: 56px;
    font-size: 12px;
  }
  .login-btn { min-height: 42px; }
  .hero { min-height: 560px; background-position: center top; }
  .hero-content { min-height: 560px; align-items: end; padding-bottom: 32px; }
  .hero-card { width: 100%; padding: 26px 22px; }
  .hero-card p { font-size: 15px; }
  .hero-actions .btn { width: 100%; }
  .feature-grid-wrap { margin-top: -18px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title h2 { font-size: 28px; }
  .fleet-card { flex-basis: 176px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; padding: 25px 14px; }
  .team-grid,
  .operations-grid { grid-template-columns: 1fr; }
  .discord-card { flex-direction: column; align-items: flex-start; padding: 26px 22px; }
  .discord-copy { width: 100%; }
  .discord-plane { position: relative; width: 100%; height: 150px; border-radius: 8px; mix-blend-mode: normal; }
  .footer-main { grid-template-columns: 1fr; gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fleet-track { animation: none; }
  .btn { transition: none; }
}
.map-section {
  padding: 34px 0 28px;
  background: #f7fbff;
}

.map-section .section-title {
  margin-bottom: 24px;
}

.newsky-map-box {
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 76, 130, .18);
  box-shadow: 0 18px 42px rgba(0, 51, 96, .16);
  background: #eef7ff;
}

.newsky-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .newsky-map-box {
    height: 360px;
    border-radius: 12px;
  }
}
.newsky-data-section {
  padding: 36px 0 34px;
  background: #f7fbff;
}

.newsky-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.newsky-summary-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 76, 130, .14);
  box-shadow: 0 16px 34px rgba(0, 51, 96, .10);
}

.newsky-summary-card strong {
  display: block;
  color: #005fa8;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.newsky-summary-card span {
  display: block;
  margin-top: 8px;
  color: #173b60;
  font-size: 13px;
  font-weight: 800;
}

.newsky-tables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.newsky-table-card {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 76, 130, .14);
  box-shadow: 0 16px 34px rgba(0, 51, 96, .10);
}

.newsky-table-card h3 {
  margin: 0 0 16px;
  color: #063d73;
  font-size: 20px;
  font-weight: 900;
}

.newsky-list {
  display: grid;
  gap: 10px;
}

.newsky-list p {
  margin: 0;
  color: #31445a;
  font-weight: 700;
}

.newsky-row {
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcff, #eef7ff);
  border: 1px solid rgba(0, 76, 130, .10);
}

.newsky-row strong {
  display: block;
  color: #005fa8;
  font-size: 15px;
  font-weight: 900;
}

.newsky-row span {
  display: block;
  margin-top: 3px;
  color: #173b60;
  font-size: 14px;
  font-weight: 800;
}

.newsky-row small {
  display: block;
  margin-top: 3px;
  color: #566b82;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .newsky-summary-grid,
  .newsky-tables-grid {
    grid-template-columns: 1fr;
  }
}
.partners-section {
  padding: 36px 0 42px;
  background: #f7fbff;
}

.partners-banner {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 28px 30px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(0, 66, 118, .96), rgba(0, 112, 176, .90)),
    radial-gradient(circle at 85% 50%, rgba(255,255,255,.20), transparent 260px);
  box-shadow: 0 18px 42px rgba(0, 51, 96, .16);
  border: 1px solid rgba(255,255,255,.18);
}

.partners-copy strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.partners-copy p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.partners-slider {
  overflow: hidden;
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 90, 150, .95), transparent);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 112, 176, .95), transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: partnersSlide 32s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
  padding: 16px 22px 16px 0;
}

.partner-logo {
  width: 170px;
  height: 60px;
  flex: 0 0 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 42px;
  display: block;
  object-fit: contain;
}

.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

@keyframes partnersSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .partners-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .partners-copy {
    text-align: center;
  }

  .partner-logo {
    width: 145px;
    flex-basis: 145px;
  }
}


/* ==========================================================
   VASP Virtual - Central Operacional NewSky PRO
   ========================================================== */
.newsky-pro-section {
  padding: 42px 0 42px;
  background:
    radial-gradient(circle at 12% 10%, rgba(18, 163, 231, .16), transparent 240px),
    radial-gradient(circle at 92% 18%, rgba(117, 187, 50, .13), transparent 260px),
    linear-gradient(180deg, #f7fbff 0%, #eef8ff 100%);
}

.newsky-pro-shell {
  display: grid;
  gap: 24px;
}

.newsky-pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 53, 95, .94), rgba(0, 128, 190, .92)),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .24), transparent 220px);
  box-shadow: 0 18px 44px rgba(0, 51, 95, .18);
  overflow: hidden;
  position: relative;
}

.newsky-pro-head::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 210px;
  height: 210px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}

.newsky-pro-head strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.4px;
}

.newsky-pro-head p {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 650;
}

.newsky-pro-link {
  position: relative;
  z-index: 2;
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #00335f;
  background: linear-gradient(180deg, #ffffff, #dff4ff);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.newsky-pro-summary {
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 0;
}

.newsky-pro-summary .newsky-summary-card {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  border: 0;
  color: #fff;
  text-align: left;
  box-shadow: 0 18px 38px rgba(0, 51, 95, .14);
}

.newsky-pro-summary .newsky-summary-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}

.newsky-pro-summary .newsky-summary-card i {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 38px;
  color: rgba(255,255,255,.26);
}

.newsky-pro-summary .newsky-summary-card strong {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 29px;
}

.newsky-pro-summary .newsky-summary-card span {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.pro-card-blue { background: linear-gradient(135deg, #005c97, #12a3e7); }
.pro-card-green { background: linear-gradient(135deg, #0b7555, #75bb32); }
.pro-card-cyan { background: linear-gradient(135deg, #004678, #00a9d8); }
.pro-card-yellow { background: linear-gradient(135deg, #947600, #f0df2f); }
.pro-card-navy { background: linear-gradient(135deg, #002f58, #006aa5); }
.pro-card-money { background: linear-gradient(135deg, #0c586b, #2fbe9f); }

.newsky-pro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.newsky-ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.newsky-panel {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 76, 130, .12);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 51, 96, .11);
}

.panel-title-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  color: #fff;
  background:
    linear-gradient(90deg, #004678 0%, #008fd1 100%);
}

.panel-title-row.small-row {
  min-height: 94px;
}

.panel-title-row h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.panel-title-row small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.panel-title-row > i {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 21px;
}

.newsky-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.newsky-flight-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  color: #173b60;
  font-size: 13px;
}

.newsky-flight-table thead {
  background: #f1f8ff;
}

.newsky-flight-table th,
.newsky-flight-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(0, 76, 130, .10);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.newsky-flight-table th {
  color: #064b80;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
}

.newsky-flight-table td {
  font-weight: 750;
}

.newsky-flight-table td strong {
  color: #005fa8;
  font-weight: 900;
}

.newsky-flight-table tbody tr:nth-child(even) {
  background: #f8fcff;
}

.newsky-flight-table tbody tr:hover {
  background: #eef8ff;
}

.progress-cell {
  width: 86px;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbeaf6;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.08);
}

.progress-cell span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.progress-cell + small {
  display: block;
  margin-top: 4px;
  color: #5d6d7e;
  font-size: 11px;
  font-weight: 900;
}

.newsky-ranking-list {
  list-style: none;
  margin: 0;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.newsky-ranking-list li {
  min-height: 54px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  color: #173b60;
  background: linear-gradient(180deg, #f8fcff, #eef7ff);
  border: 1px solid rgba(0, 76, 130, .09);
  font-size: 13px;
  font-weight: 800;
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #005c97, #12a3e7);
  font-size: 12px;
  font-weight: 900;
}

.rank-pilot {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #174f8e;
  font-weight: 900;
}

.newsky-ranking-list strong {
  color: #0082bd;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .newsky-pro-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsky-ranking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .newsky-pro-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .newsky-pro-link {
    width: 100%;
  }

  .newsky-pro-summary {
    grid-template-columns: 1fr;
  }

  .panel-title-row,
  .panel-title-row.small-row {
    min-height: auto;
    padding: 20px;
  }

  .newsky-flight-table {
    min-width: 820px;
  }
}
