:root {
  --fw-ink: #142344;
  --fw-muted: #66748f;
  --fw-border: #dbe6f5;
  --fw-line: #eaf1fb;
  --fw-bg: #f6f9fd;
  --fw-deep: #06142f;
  --fw-navy: #082154;
  --fw-blue: #126bff;
  --fw-cyan: #21d8ff;
  --fw-mint: #23c483;
  --fw-amber: #f6a623;
  --fw-white: #ffffff;
  --fw-shadow: 0 16px 36px rgba(18, 60, 120, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--fw-ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.72;
  background: var(--fw-bg);
  letter-spacing: 0;
}

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

a:hover {
  color: var(--fw-blue);
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

.fw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  background: rgba(5, 19, 46, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 24px rgba(2, 12, 34, .18);
}

.fw-header.overlay {
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, rgba(4, 17, 42, .86), rgba(4, 17, 42, .24));
  box-shadow: none;
}

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

.fw-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 220px;
}

.fw-brand:hover {
  color: #fff;
}

.fw-logo {
  width: 86px;
  height: 54px;
  object-fit: contain;
}

.fw-brand-name {
  display: block;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 800;
}

.fw-brand-sub {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  text-transform: uppercase;
}

.fw-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
}

.fw-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

.fw-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--fw-cyan), var(--fw-blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.fw-nav a:hover,
.fw-nav a.active {
  color: #fff;
}

.fw-nav a:hover::after,
.fw-nav a.active::after {
  transform: scaleX(1);
}

.fw-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  color: #fff;
  background: transparent;
}

.fw-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 35%, rgba(33, 216, 255, .28), transparent 26%),
    radial-gradient(circle at 72% 32%, rgba(18, 107, 255, .34), transparent 24%),
    linear-gradient(135deg, #06142f 0%, #082154 48%, #031126 100%);
}

.fw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 76%, transparent);
}

.fw-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: linear-gradient(180deg, transparent, var(--fw-bg));
}

.fw-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 56px;
  min-height: 620px;
  padding: 112px 0 84px;
}

.fw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid rgba(33, 216, 255, .35);
  border-radius: 6px;
  color: #aeefff;
  background: rgba(8, 41, 92, .58);
}

.fw-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fw-cyan);
  box-shadow: 0 0 14px var(--fw-cyan);
}

.fw-hero h1 {
  margin: 0 0 20px;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
}

.fw-hero p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.fw-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fw-hero-tags span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .06);
}

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

.fw-btn-primary,
.fw-btn-light,
.fw-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fw-btn-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, var(--fw-blue), var(--fw-cyan));
  box-shadow: 0 12px 28px rgba(18, 107, 255, .28);
}

.fw-btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(18, 107, 255, .36);
}

.fw-btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .05);
}

.fw-btn-ghost:hover {
  color: #fff;
  border-color: var(--fw-cyan);
}

.fw-btn-light {
  color: var(--fw-blue);
  border: 1px solid #cde0fb;
  background: #f4f9ff;
}

.fw-btn-light:hover {
  border-color: var(--fw-blue);
}

.fw-hero-visual {
  position: relative;
  min-height: 420px;
}

.fw-orbit {
  position: absolute;
  inset: 44px 24px 34px;
  border: 1px solid rgba(33, 216, 255, .22);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.fw-orbit::before,
.fw-orbit::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px dashed rgba(33, 216, 255, .24);
  border-radius: 50%;
}

.fw-orbit::after {
  inset: 86px;
  border-style: solid;
}

.fw-core-cube {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  color: #d8fbff;
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(33, 216, 255, .5);
  background:
    linear-gradient(135deg, rgba(33, 216, 255, .24), rgba(18, 107, 255, .36)),
    rgba(4, 21, 52, .7);
  box-shadow: 0 0 40px rgba(33, 216, 255, .26);
  transform: translate(-50%, -50%) rotate(45deg);
}

.fw-core-cube span {
  transform: rotate(-45deg);
}

.fw-node {
  position: absolute;
  width: 128px;
  padding: 12px;
  border: 1px solid rgba(33, 216, 255, .25);
  border-radius: 8px;
  color: #dff9ff;
  background: rgba(6, 24, 58, .78);
  box-shadow: 0 14px 34px rgba(2, 9, 24, .28);
}

.fw-node i {
  display: block;
  margin-bottom: 6px;
  color: var(--fw-cyan);
  font-size: 22px;
}

.fw-node.one {
  left: 0;
  top: 48px;
}

.fw-node.two {
  right: 8px;
  top: 28px;
}

.fw-node.three {
  left: 30px;
  bottom: 42px;
}

.fw-node.four {
  right: 20px;
  bottom: 58px;
}

.fw-dashboard {
  position: absolute;
  right: 26px;
  bottom: 8px;
  width: 310px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(3, 16, 43, .82);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .28);
}

.fw-dashboard-title {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
}

.fw-meter {
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.fw-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fw-cyan), var(--fw-mint));
}

.fw-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.fw-mini-grid div {
  min-height: 58px;
  padding: 10px;
  border-radius: 6px;
  color: #bcecff;
  background: rgba(255, 255, 255, .06);
}

.fw-main {
  padding: 38px 0 64px;
}

.fw-section {
  padding: 54px 0;
}

.fw-section.tight {
  padding-top: 26px;
}

.fw-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.fw-section-head.center {
  display: block;
  text-align: center;
}

.fw-section-head small {
  display: block;
  margin-bottom: 8px;
  color: var(--fw-blue);
  font-weight: 800;
}

.fw-section-head h2,
.fw-section-title {
  margin: 0;
  color: var(--fw-ink);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}

.fw-section-head p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--fw-muted);
}

.fw-card,
.fw-panel {
  border: 1px solid var(--fw-border);
  border-radius: 8px;
  background: var(--fw-white);
  box-shadow: 0 10px 26px rgba(24, 65, 118, .08);
}

.fw-card {
  padding: 26px;
}

.fw-grid-2,
.fw-grid-3,
.fw-grid-4,
.fw-grid-5 {
  display: grid;
  gap: 20px;
}

.fw-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fw-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fw-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fw-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 8px;
  color: #fff;
  font-size: 21px;
  background: linear-gradient(135deg, var(--fw-blue), var(--fw-cyan));
  box-shadow: 0 10px 24px rgba(18, 107, 255, .22);
}

.fw-product-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.fw-product-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(18, 107, 255, .07);
  border-radius: 50%;
}

.fw-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fw-shadow);
}

.fw-product-card h3,
.fw-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  font-weight: 900;
}

.fw-product-card p,
.fw-card p {
  margin: 0;
  color: var(--fw-muted);
}

.fw-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.fw-tag-list span,
.fw-chip,
.fw-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #cfe0f7;
  border-radius: 6px;
  color: var(--fw-blue);
  background: #f5f9ff;
  font-size: 13px;
}

.fw-solution-band {
  color: #fff;
  background:
    radial-gradient(circle at 14% 28%, rgba(33, 216, 255, .22), transparent 28%),
    linear-gradient(135deg, #081a3f, #092d72 60%, #071633);
}

.fw-solution-band .fw-section-head h2,
.fw-solution-band .fw-section-head p,
.fw-solution-band .fw-section-head small {
  color: #fff;
}

.fw-solution-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.fw-solution-card strong {
  display: block;
  color: var(--fw-cyan);
  font-size: 36px;
  line-height: 1;
}

.fw-solution-card h3 {
  margin: 16px 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.fw-solution-card ul,
.fw-clean-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.fw-solution-card li,
.fw-clean-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
}

.fw-solution-card li::before,
.fw-clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fw-cyan);
}

.fw-data-center {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.fw-screen {
  overflow: hidden;
  border: 1px solid #cddff7;
  border-radius: 8px;
  background: #07152f;
  box-shadow: var(--fw-shadow);
}

.fw-screen-bar {
  display: flex;
  gap: 7px;
  height: 34px;
  align-items: center;
  padding: 0 14px;
  background: #0d2556;
}

.fw-screen-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28d5ff;
}

.fw-screen-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
}

.fw-chart,
.fw-map-block {
  min-height: 160px;
  border: 1px solid rgba(33, 216, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 107, 255, .22), transparent),
    rgba(255, 255, 255, .04);
}

.fw-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 20px;
}

.fw-chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--fw-cyan), var(--fw-blue));
}

.fw-map-block {
  position: relative;
  display: grid;
  place-items: center;
}

.fw-map-block::before {
  content: "";
  width: 110px;
  height: 110px;
  border: 16px solid rgba(33, 216, 255, .3);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(33, 216, 255, .2);
}

.fw-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.fw-kpi {
  padding: 16px;
  border-radius: 8px;
  color: #dff8ff;
  background: rgba(255, 255, 255, .05);
}

.fw-kpi strong {
  display: block;
  color: var(--fw-cyan);
  font-size: 24px;
  line-height: 1.2;
}

.fw-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.fw-process-item {
  position: relative;
  min-height: 138px;
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--fw-border);
  border-radius: 8px;
  background: #fff;
}

.fw-process-item b {
  display: block;
  color: var(--fw-blue);
  font-size: 24px;
}

.fw-process-item h4 {
  margin: 10px 0 4px;
  font-size: 17px;
  font-weight: 900;
}

.fw-process-item p {
  margin: 0;
  color: var(--fw-muted);
  font-size: 13px;
}

.fw-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 36%, rgba(33, 216, 255, .26), transparent 24%),
    linear-gradient(135deg, #071631, #092a67 58%, #06142f);
}

.fw-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.fw-page-hero .fw-container {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 86px 0 58px;
}

.fw-page-hero h1 {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 900;
}

.fw-page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.fw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--fw-muted);
  list-style: none;
}

.fw-breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: #9aabc2;
}

.fw-news-layout,
.fw-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.fw-news-list {
  display: grid;
  gap: 18px;
}

.fw-news-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
}

.fw-news-symbol {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 8px;
  color: #fff;
  font-size: 30px;
  background:
    linear-gradient(135deg, rgba(33, 216, 255, .95), rgba(18, 107, 255, .95)),
    #126bff;
}

.fw-news-item h2 {
  margin: 3px 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.fw-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: #7a88a2;
  font-size: 13px;
}

.fw-side-stack {
  display: grid;
  gap: 18px;
}

.fw-side-card {
  padding: 22px;
}

.fw-side-title {
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--fw-blue);
  font-size: 20px;
  font-weight: 900;
}

.fw-hot-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fw-line);
}

.fw-hot-item:last-child {
  border-bottom: 0;
}

.fw-hot-rank {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  background: var(--fw-blue);
}

.fw-category-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--fw-line);
}

.fw-side-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue));
}

.fw-side-cta h3,
.fw-side-cta p {
  color: #fff;
}

.fw-float-tools {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 950;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--fw-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--fw-shadow);
}

.fw-float-tools a {
  display: grid;
  place-items: center;
  width: 70px;
  min-height: 62px;
  padding: 8px;
  color: var(--fw-ink);
  border-bottom: 1px solid var(--fw-line);
  font-size: 12px;
}

.fw-float-tools a:first-child {
  color: #fff;
  background: var(--fw-blue);
}

.fw-float-tools a:last-child {
  border-bottom: 0;
}

.fw-float-tools i {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.fw-article-card {
  padding: 28px;
}

.fw-article-title {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
}

.fw-article-visual {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  margin: 24px 0;
  padding: 26px;
  color: #fff;
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 30%, rgba(33, 216, 255, .24), transparent 26%),
    linear-gradient(135deg, #081b42, #092b68);
}

.fw-article-visual h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.fw-article-visual p {
  color: rgba(255, 255, 255, .78);
}

.fw-article-content {
  color: #30405f;
  font-size: 16px;
}

.fw-article-content img {
  border-radius: 8px;
}

.fw-detail-block {
  margin-top: 28px;
}

.fw-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fw-layer {
  display: grid;
  grid-template-columns: 80px repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.fw-layer span {
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  color: #2c5ca8;
  background: #eef6ff;
}

.fw-layer span:first-child {
  color: #fff;
  background: var(--fw-blue);
}

.fw-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fw-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.fw-prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.fw-prev-next a,
.fw-prev-next span {
  display: block;
  padding: 18px;
  border: 1px solid var(--fw-border);
  border-radius: 8px;
  background: #f8fbff;
}

.fw-about-hero-grid,
.fw-contact-layout,
.fw-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.fw-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fw-stat {
  padding: 18px;
  border: 1px solid var(--fw-border);
  border-radius: 8px;
  background: #fff;
}

.fw-stat strong {
  display: block;
  color: var(--fw-blue);
  font-size: 28px;
  line-height: 1.2;
}

.fw-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 24px;
}

.fw-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--fw-blue), var(--fw-cyan));
}

.fw-time {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fw-time::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px auto 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--fw-blue);
  box-shadow: 0 0 0 3px #cae0ff;
}

.fw-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.fw-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

.fw-form .form-control,
.fw-form .form-select {
  min-height: 44px;
  border-color: #d7e3f4;
  border-radius: 6px;
}

.fw-form textarea.form-control {
  min-height: 116px;
}

.fw-footer {
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 16% 20%, rgba(33, 216, 255, .16), transparent 22%),
    linear-gradient(135deg, #06142f, #09265d);
}

.fw-footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.fw-footer-cta .fw-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}

.fw-footer-cta h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.fw-footer-main {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  gap: 42px;
  padding: 42px 0;
}

.fw-footer h3,
.fw-footer h4 {
  color: #fff;
  font-weight: 900;
}

.fw-footer-logo {
  width: 96px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 10px;
}

.fw-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fw-footer li {
  margin: 8px 0;
}

.fw-footer a {
  color: rgba(255, 255, 255, .82);
}

.fw-footer a:hover {
  color: var(--fw-cyan);
}

.fw-footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  color: rgba(255, 255, 255, .56);
}

.fw-empty {
  padding: 40px;
  text-align: center;
  color: var(--fw-muted);
}

@media (max-width: 1100px) {
  .fw-hero-inner,
  .fw-data-center,
  .fw-news-layout,
  .fw-article-layout,
  .fw-about-hero-grid,
  .fw-contact-layout,
  .fw-about-intro {
    grid-template-columns: 1fr;
  }

  .fw-hero-visual {
    min-height: 360px;
  }

  .fw-grid-5,
  .fw-grid-4,
  .fw-contact-cards,
  .fw-detail-grid,
  .fw-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fw-process {
    grid-template-columns: repeat(3, 1fr);
  }

  .fw-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .fw-container {
    width: min(100% - 28px, 1200px);
  }

  .fw-header.overlay {
    position: sticky;
    background: rgba(5, 19, 46, .96);
  }

  .fw-header-inner {
    min-height: 68px;
  }

  .fw-brand-name {
    font-size: 20px;
  }

  .fw-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .fw-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(5, 19, 46, .98);
  }

  .fw-nav.open {
    display: grid;
  }

  .fw-nav a {
    justify-content: center;
  }

  .fw-hero-inner {
    min-height: auto;
    padding: 92px 0 62px;
  }

  .fw-hero h1 {
    font-size: 34px;
  }

  .fw-hero p,
  .fw-page-hero p {
    font-size: 16px;
  }

  .fw-page-hero h1 {
    font-size: 34px;
  }

  .fw-section-head {
    display: block;
  }

  .fw-section-head h2,
  .fw-section-title {
    font-size: 25px;
  }

  .fw-grid-5,
  .fw-grid-4,
  .fw-grid-3,
  .fw-grid-2,
  .fw-contact-cards,
  .fw-detail-grid,
  .fw-feature-row,
  .fw-stat-row,
  .fw-kpi-row,
  .fw-footer-main,
  .fw-prev-next,
  .fw-article-visual {
    grid-template-columns: 1fr;
  }

  .fw-news-item {
    grid-template-columns: 1fr;
  }

  .fw-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .fw-timeline {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .fw-timeline::before {
    display: none;
  }

  .fw-float-tools {
    display: none;
  }

  .fw-footer-cta .fw-container {
    display: block;
  }

  .fw-footer-cta .fw-btn-primary {
    margin-top: 16px;
  }
}

@media (max-width: 520px) {
  .fw-hero-visual {
    display: none;
  }

  .fw-process {
    grid-template-columns: 1fr;
  }

  .fw-layer {
    grid-template-columns: 1fr;
  }
}
