@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter.woff2") format("woff2");
}

:root {
  --blue: #1d82d6;
  --blue-2: #00a9e0;
  --blue-dark: #0e5e9e;
  --dark: #0b2340;
  --ink: #263b50;
  --muted: #5b6b7b;
  --line: #e0eaf3;
  --bg: #f4f8fc;
  --blue-soft: #eaf4fc;
  --white: #ffffff;
  --grad: linear-gradient(90deg, #1d82d6, #00a9e0);
  --accent-light: #a8d8f5;
  --radius: 15px;
  --font-sans: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

::selection {
  background: rgba(2, 180, 238, 0.25);
  color: var(--dark);
}

section[id],
footer[id] {
  scroll-margin-top: 78px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease;
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn-gradient {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(29, 130, 214, 0.28);
}

.btn-gradient:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(2, 180, 238, 0.32);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-white:hover {
  background: #eaf6ff;
}

.btn-sm {
  height: 38px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.btn-lg {
  height: 54px;
  padding: 0 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(10, 31, 58, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img.brand-logo {
  display: block;
  width: auto;
  height: 34px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--grad);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  font-size: 1.12rem;
  color: var(--ink);
}

.brand-text small {
  font-size: 0.6rem;
  color: #8a929c;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle i {
  width: 22px;
  height: 22px;
}

.fsg-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 0 0;
  color: var(--white);
  overflow: hidden;
}

.fsg-hero-bg,
.fsg-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.fsg-hero-overlay {
  background: linear-gradient(90deg, rgba(11, 35, 64, 0.92), rgba(11, 35, 64, 0.62) 58%, rgba(11, 35, 64, 0.3));
}

.fsg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 40px 0 96px;
}

.fsg-hero-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(2, 180, 238, 0.5);
  border-radius: 999px;
  background: rgba(2, 180, 238, 0.16);
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.fsg-hero h1 {
  margin-bottom: 14px;
  font-size: 3.3rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--white);
  text-wrap: balance;
}

.fsg-hero-en {
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.fsg-hero-sub {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.fsg-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.fsg-hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  background: rgba(11, 35, 64, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.fsg-stat {
  padding: 24px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.fsg-stat:first-child {
  border-left: 0;
}

.fsg-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-light);
  font-variant-numeric: tabular-nums;
}

.fsg-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.fsg-services {
  padding: 100px 0 90px;
  background: var(--white);
}

.fsg-section-title {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.fsg-en {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}

.fsg-section-title h2 {
  margin-bottom: 14px;
  font-size: 2.1rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

.fsg-section-title p:last-child {
  font-size: 1rem;
  color: var(--muted);
}

.fsg-section-title.light h2 {
  color: var(--white);
}

.fsg-section-title.light p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.fsg-masonry {
  columns: 3;
  column-gap: 30px;
}

.fsg-intro-card {
  break-inside: avoid;
  min-height: 240px;
  margin-bottom: 30px;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-soft), #f8fcff);
}

.fsg-card-index {
  display: block;
  margin-bottom: 14px;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.fsg-intro-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--ink);
}

.fsg-intro-card p {
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.fsg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
}

.fsg-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.fsg-link:hover i {
  transform: translateX(3px);
}

.fsg-service-card {
  break-inside: avoid;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: 100%;
  transition: background-size 0.5s ease;
}

.fsg-service-card:hover {
  background-size: 108%;
}

.fsg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 55, 0.04), rgba(10, 30, 55, 0.88));
}

.fsg-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: 28px;
}

.h-lg {
  min-height: 525px;
}

.h-mid {
  min-height: 420px;
}

.h-sm {
  min-height: 330px;
}

.h-xs {
  min-height: 240px;
}

.fsg-tag {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(11, 35, 64, 0.35);
  color: var(--accent-light);
  font-size: 0.78rem;
}

.fsg-service-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  color: var(--white);
}

.fsg-service-card p {
  max-width: 90%;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.fsg-service-card .fsg-link {
  color: var(--accent-light);
}

.fsg-value {
  padding: 100px 0;
  background: var(--bg);
}

.fsg-value .fsg-en {
  color: var(--blue);
}

.fsg-value .fsg-section-title h2 {
  color: var(--ink);
}

.fsg-value .fsg-section-title p:last-child {
  color: var(--muted);
}

.fsg-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.fsg-value-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

.fsg-value-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 38px;
}

.fsg-value-content > span {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-light);
}

.fsg-value-content h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  color: var(--white);
}

.fsg-value-content p {
  max-width: 90%;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.fsg-value-content .fsg-link {
  color: var(--accent-light);
}

.fsg-platform {
  padding: 100px 0;
  background: var(--white);
}

.fsg-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.fsg-platform-card {
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fsg-platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 130, 214, 0.45);
  box-shadow: 0 18px 40px rgba(29, 130, 214, 0.12);
}

.fsg-platform-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--grad);
  color: var(--white);
}

.fsg-platform-icon i {
  width: 26px;
  height: 26px;
}

.fsg-platform-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--ink);
}

.fsg-platform-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.fsg-news {
  padding: 100px 0;
  background: var(--bg);
}

.fsg-news-list {
  display: grid;
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

.fsg-news-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.fsg-news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 130, 214, 0.45);
  box-shadow: 0 14px 34px rgba(29, 130, 214, 0.1);
}

.fsg-news-item time {
  min-width: 88px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.fsg-news-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

.fsg-news-item div > span {
  font-size: 0.85rem;
  color: var(--muted);
}

.fsg-about {
  padding: 100px 0;
  background: var(--white);
}

.fsg-about .fsg-en {
  color: var(--blue);
}

.fsg-about .fsg-section-title h2 {
  color: var(--ink);
}

.fsg-about .fsg-section-title p:last-child {
  color: var(--muted);
}

.fsg-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fsg-advantage-item {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}

.fsg-advantage-item:hover {
  background: var(--blue-soft);
  transform: translateY(-4px);
}

.fsg-advantage-item span {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.fsg-advantage-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--ink);
}

.fsg-advantage-item p {
  font-size: 0.92rem;
  color: var(--muted);
}

.fsg-clients {
  padding: 100px 0;
  background: var(--bg);
}

.clients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 96px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 130, 214, 0.5);
  box-shadow: 0 10px 26px rgba(29, 130, 214, 0.1);
}

.client-logo img {
  width: auto;
  height: 52px;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.client-logo:hover img {
  opacity: 1;
  filter: none;
}

.client-logo-text {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  color: #9aa3b0;
}

.fsg-consult {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--dark), var(--blue-dark) 55%, var(--blue-2));
  color: var(--white);
}

.fsg-consult-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.fsg-consult-copy .fsg-en {
  color: var(--accent-light);
}

.fsg-consult-copy h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
  line-height: 1.35;
  color: var(--white);
  text-wrap: balance;
}

.fsg-consult-copy > p {
  margin-bottom: 32px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.fsg-contact {
  display: grid;
  gap: 12px;
}

.fsg-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--white);
}

.fsg-contact a:hover {
  color: var(--accent-light);
}

.fsg-contact i {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
}

.fsg-form {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.fsg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fsg-form-grid .full {
  grid-column: 1 / -1;
}

.fsg-form-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: #e8f5ff;
}

.fsg-form-grid input,
.fsg-form-grid select,
.fsg-form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.fsg-form-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.fsg-form-grid input:focus,
.fsg-form-grid select:focus,
.fsg-form-grid textarea:focus {
  border-color: var(--blue-2);
}

.fsg-form .btn {
  margin-top: 22px;
}

.fsg-form-tip {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.fsg-form-success {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.fsg-form-success.show {
  display: flex;
}

.fsg-form-success i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--accent-light);
}

.fsg-form-success strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.fsg-form-success p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.site-footer {
  padding: 84px 0 36px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand img.brand-logo {
  height: 42px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--white);
}

.footer-col a,
.footer-col span {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .fsg-masonry {
    columns: 2;
  }

  .fsg-value-grid {
    grid-template-columns: 1fr;
  }

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

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

  .fsg-consult-panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .header-inner {
    height: 64px;
  }

  .header-actions .btn-sm {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    width: min(78vw, 360px);
    height: 100vh;
    padding: 96px 32px;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(10, 31, 58, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(11, 35, 64, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  .fsg-hero {
    min-height: 92vh;
    padding-top: 90px;
  }

  .fsg-hero h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .fsg-hero-en {
    font-size: 0.95rem;
  }

  .fsg-hero-sub {
    font-size: 1rem;
  }

  .fsg-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .fsg-stat {
    padding: 18px 10px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .fsg-stat:nth-child(3n + 1) {
    border-left: 0;
  }

  .fsg-stat strong {
    font-size: 1.55rem;
  }

  .fsg-services,
  .fsg-value,
  .fsg-platform,
  .fsg-news,
  .fsg-about,
  .fsg-clients,
  .fsg-consult {
    padding: 72px 0;
  }

  .fsg-masonry {
    columns: 1;
  }

  .fsg-section-title h2 {
    font-size: 1.75rem;
  }

  .fsg-platform-grid,
  .fsg-advantage-grid {
    grid-template-columns: 1fr;
  }

  .fsg-news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fsg-consult-copy h2 {
    font-size: 1.8rem;
  }

  .fsg-form {
    padding: 28px;
  }

  .fsg-form-grid {
    grid-template-columns: 1fr;
  }

  .clients-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .client-logo {
    min-width: 0;
    height: 76px;
    padding: 0 10px;
  }

  .client-logo img {
    height: 44px;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fsg-service-card:hover {
    background-size: 100%;
  }
}

/* Inner pages */
.inner-hero {
  position: relative;
  padding: 170px 0 72px;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 35, 64, 0.92), rgba(11, 35, 64, 0.68));
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  margin-bottom: 10px;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
}

.inner-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover {
  color: var(--white);
}

.inner-section {
  padding: 90px 0;
  background: var(--white);
}

.inner-section.alt {
  background: var(--bg);
}

.inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.inner-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.inner-copy h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}

.inner-copy p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.inner-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.inner-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.inner-check-list i {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.data-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.data-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.data-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.data-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.timeline {
  position: relative;
  margin: 48px 0 0;
  padding-left: 26px;
  border-left: 2px solid var(--line);
}

.timeline li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 28px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
}

.timeline time {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
}

.timeline h3 {
  margin: 4px 0 6px;
  font-size: 1.1rem;
  color: var(--ink);
}

.timeline p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.honor-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  text-align: center;
}

.honor-item span {
  color: var(--blue);
  font-weight: 700;
}

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

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(29, 130, 214, 0.12);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--grad);
  color: var(--white);
}

.feature-icon i {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--ink);
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.flow-step {
  position: relative;
  padding: 30px 24px 0;
  border-top: 2px solid var(--line);
}

.flow-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 24px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
}

.flow-step span {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.flow-step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--ink);
}

.flow-step p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

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

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 130, 214, 0.45);
  box-shadow: 0 14px 34px rgba(29, 130, 214, 0.1);
}

.job-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--ink);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.job-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.case-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.case-row:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 130, 214, 0.45);
  box-shadow: 0 14px 34px rgba(29, 130, 214, 0.1);
}

.case-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.case-row h3 {
  margin: 10px 0;
  font-size: 1.15rem;
  color: var(--ink);
}

.case-row p {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

.fsg-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(11, 35, 64, 0.76);
  color: var(--white);
  font-size: 0.78rem;
}

.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--dark), var(--blue-dark) 55%, var(--blue-2));
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 14px;
  font-size: 1.8rem;
  color: var(--white);
}

.cta-band p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1024px) {
  .data-grid,
  .feature-grid,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .inner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 130px 0 52px;
  }

  .inner-hero h1 {
    font-size: 2rem;
  }

  .inner-section {
    padding: 64px 0;
  }

  .inner-media img {
    height: 320px;
  }

  .data-grid,
  .feature-grid,
  .flow-list,
  .honor-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-row {
    grid-template-columns: 1fr;
  }

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