:root {
  --navy: #061d3c;
  --gold: #d9a524;
  --text: #0f1a2d;
  --muted: #5b6679;
  --line: #d9dee7;
  --bg: #f7f7f5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.topbar {
  background: linear-gradient(90deg, #06172e, #082d5d);
  color: white;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand-icon {
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.brand-name {
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 700;
}
.tagline {
  font-size: 12px;
  letter-spacing: 0.6px;
}
.top-contact {
  display: flex;
  gap: 25px;
  align-items: center;
}
.top-contact a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.phone-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  text-align: right;
  line-height: 1.25;
}
.phone-group a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}
.phone-group a:hover,
.top-contact a:hover {
  color: var(--gold);
}
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #082e5f, #041c3c);
  color: white;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 4px;
  font-weight: 700;
}
.btn-outline {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold) !important;
}
.hero-cta {
  margin-top: 24px;
}
.nav {
  background: white;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 5;
}
.nav-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.nav a {
  padding: 16px 0;
  text-decoration: none;
  color: #07172f;
  font-size: 13px;
  font-weight: 800;
}
.nav a.active {
  color: #b37d00;
  border-bottom: 3px solid var(--gold);
}
.hero {
  position: relative;
  color: white;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 43, 0.78),
      rgba(8, 39, 76, 0.48),
      rgba(6, 22, 45, 0.18)
    ),
    url('/website-styles/current/images/shanghai.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 65%);
  opacity: 0.65;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  min-height: 360px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 1.05;
  margin: 0 0 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero p {
  max-width: 560px;
  font-size: 17px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
.hero-badges div {
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.hero-badges span {
  background: #0a4a94;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  font-size: 23px;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.hero-badges small {
  color: white;
}
.hero-card {
  background: rgba(3, 22, 45, 0.82);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 18px 28px;
  width: 350px;
  justify-self: end;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.metric {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.metric:last-child {
  border-bottom: 0;
}
.metric span {
  color: var(--gold);
  font-size: 38px;
  width: 50px;
}
.metric strong {
  font-size: 19px;
}
.section {
  padding: 24px 0 52px;
}
.section-kicker {
  text-align: center;
  color: #b17a00;
  font-weight: 800;
  font-size: 14px;
}
.section-kicker.left {
  text-align: left;
}
h2 {
  font-family: Georgia, serif;
  text-align: center;
  font-size: 30px;
  margin: 4px 0;
  color: #0c1830;
}
.title-rule {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 24px;
}
.cards.three,
.cards.four {
  display: grid;
  gap: 20px;
}
.service-card,
.review {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 30px;
}
.service-card {
  position: relative;
  padding: 24px 24px 24px 24px;
  min-height: 420px;
}
.service-icon {
  position: relative;
  margin-bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #0c3f7f, #041b3d);
  color: white;
  display: grid;
  place-items: center;
  font-size: 30px;
}
.service-card h3 {
  font-family: Georgia, serif;
  margin: 0 0 10px;
  font-size: 20px;
}
.service-card p {
  font-size: 14px;
  margin: 0 0 16px;
}
ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
li {
  margin: 8px 0;
  font-size: 14px;
}
li:before {
  content: '✓';
  color: #b17a00;
  margin-right: 12px;
  font-weight: 900;
}
.learn {
  color: #9b6b00;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.reviews {
  background: #f2f2f0;
}
.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;

  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;

  scrollbar-width: thin;
}
.review-grid::-webkit-scrollbar {
  height: 10px;
}
.review-grid::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}
.review-grid::-webkit-scrollbar-thumb {
  background: #b8bcc5;
  border-radius: 10px;
}
.review {
  width: 100%;
  min-width: 0;
  max-width: none;
  flex-shrink: 0;
  padding: 18px;
}
.stars {
  color: #ffb000;
  font-weight: 800;
  letter-spacing: 1px;
}
.stars span {
  color: #111;
  margin-left: 8px;
  font-weight: 400;
}
.review h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  margin: 8px 0;
}
.review p {
  font-style: italic;
  font-size: 13px;
  margin: 0;
}
.client-strip {
  background: white;
  padding: 34px 0 22px;
  text-align: center;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}
.logo-box {
  min-height: 90px;
  display: grid;
  place-items: center;
  border-right: 1px solid #ccd2dd;
  padding: 14px 20px;
  background: white;
}
.logo-box:last-child {
  border-right: 0;
}
.logo-box img {
  max-width: 135px;
  max-height: 58px;
  object-fit: contain;
  display: block;
}
.disclaimer {
  font-size: 12px;
  color: #525b69;
  margin: 18px auto 0;
  max-width: 760px;
}
.about .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about h2 {
  text-align: left;
}
.why-list {
  display: grid;
  gap: 16px;
}
.why-list div {
  background: white;
  border-left: 4px solid var(--gold);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.contact {
  background: linear-gradient(90deg, #06172e, #082d5d);
  color: white;
  text-align: center;
}
.contact h2 {
  color: white;
}
.contact-box p {
  margin-bottom: 25px;
}
.footer {
  background: #041a37;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 34px 0;
}
.footer h3 {
  color: var(--gold);
  margin-top: 0;
}
.footer p {
  color: #ecf2fb;
  font-size: 14px;
}
.footer a {
  color: #ecf2fb;
  text-decoration: none;
}
.footer a:hover {
  color: var(--gold);
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: #e9eef8;
}
@media (max-width: 900px) {
  .topbar-inner,
  .top-contact {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-contact {
    gap: 12px;
    margin-top: 14px;
  }
  .phone-group {
    text-align: left;
  }
  .nav-inner {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 24px;
  }
  .hero-grid,
  .cards.three,
  .about .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    justify-self: start;
    width: 100%;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-badges {
    flex-direction: column;
  }
  .service-card {
    padding-left: 30px;
    padding-top: 120px;
  }
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-box {
    border-bottom: 1px solid #ccd2dd;
  }
}

@media (max-width: 900px) {
  .review-grid {
    grid-auto-columns: 300px;
    grid-template-rows: repeat(2, auto);
  }
}

.seo-support-copy {
  margin-top: 18px;
  color: #445066;
  font-size: 15px;
  line-height: 1.7;
}

/* Four service card layout - single horizontal row */
.cards.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.cards.four .service-card {
  min-height: 420px;
}

@media (max-width: 1200px) {
  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .cards.four {
    grid-template-columns: 1fr;
  }
}

.service-card h3 {
  margin-top: 0;
  line-height: 1.3;
}

.service-card ul {
  margin-top: 16px;
}

.service-card li {
  line-height: 1.45;
}

.cards.four .service-card {
  display: flex;
  flex-direction: column;
}

.cards.four .learn {
  margin-top: auto;
  padding-top: 12px;
}
