:root {
  --blue: #1267f4;
  --blue-dark: #034fc2;
  --ink: #071831;
  --muted: #526784;
  --line: #dce8fb;
  --soft: #f3f8ff;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(16, 92, 196, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
  background: #f7fbff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 max(34px, calc((100vw - 1320px) / 2));
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #0d73ff, #0553d8);
  box-shadow: 0 12px 28px rgba(18, 103, 244, .22);
}
.brand strong { display: block; font-size: 20px; line-height: 1.1; }
.brand em { display: block; font-style: normal; font-size: 11px; color: var(--muted); letter-spacing: .4px; margin-top: 3px; }
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  color: #243a59;
}
.nav > a,
.nav-menu > a {
  padding: 28px 0;
  white-space: nowrap;
}
.nav a:hover,
.nav .active { color: var(--blue); }
.nav-menu { position: relative; }
.drop {
  position: absolute;
  top: 68px;
  left: -24px;
  width: 180px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.drop a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #243a59;
}
.drop a:hover { background: var(--soft); color: var(--blue); }
.nav-menu:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.tg-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(18, 103, 244, .22);
}
.tg-top img { width: 18px; height: 18px; }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-size: 26px; }

.hero {
  width: 100%;
  background: linear-gradient(90deg, #eef6ff 0%, #ffffff 48%, #eef6ff 100%);
}
.hero-inner {
  max-width: 1420px;
  min-height: 610px;
  margin: 0 auto;
  padding: 78px 7vw;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 52px;
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
  background: #e7f1ff;
}
.hero h1 {
  margin: 0;
  font-size: 53px;
  line-height: 1.12;
  letter-spacing: 0;
}
.hero-kicker {
  margin: 18px 0 8px;
  font-size: 22px;
  color: #234a86;
  font-weight: 700;
}
.hero-desc {
  max-width: 640px;
  margin: 0;
  color: #405a7a;
  font-size: 17px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  height: 54px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}
.btn.primary { color: #fff; background: var(--blue); box-shadow: 0 16px 30px rgba(18, 103, 244, .22); }
.btn.ghost { color: var(--blue); background: #fff; }
.btn img { width: 20px; height: 20px; }
.hero-media img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
}

.product-entry,
.section,
.why-band,
.about-section,
.cta,
.contact-section,
.footer {
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}
.product-entry {
  margin-top: -44px;
  padding: 0 7vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.entry-card,
.service-card,
.solution-grid a,
.why-grid article,
.advantage-grid article,
.faq-list details,
.contact-grid a,
.contact-grid button {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.entry-card:hover,
.service-card:hover,
.solution-grid a:hover,
.why-grid article:hover,
.advantage-grid article:hover,
.config-card:hover {
  transform: translateY(-5px);
  border-color: #9dc5ff;
  box-shadow: 0 20px 45px rgba(18, 103, 244, .16);
  background: #fbfdff;
}
.entry-card {
  min-height: 178px;
  padding: 24px 18px;
  text-align: center;
}
.entry-card img {
  height: 72px;
  margin: 0 auto 14px;
  object-fit: contain;
}
.entry-card strong { display: block; font-size: 21px; margin-bottom: 10px; }
.entry-card span { display: block; color: var(--muted); line-height: 1.7; font-size: 14px; }

.section { padding: 76px 7vw 0; }
.section-title { text-align: center; margin-bottom: 30px; }
.section-title h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
}
.section-title h2::before,
.section-title h2::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  margin: 0 18px 10px;
  background: #b9d6ff;
}
.section-title p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.8;
}
.section-title.left { text-align: left; margin-bottom: 22px; }
.section-title.left h2::before,
.section-title.left h2::after { display: none; }

.config-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.config-tabs button {
  flex: 0 0 auto;
  padding: 12px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #233a59;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.config-tabs button:hover,
.config-tabs .active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.config-summary {
  text-align: center;
  color: var(--muted);
  margin: 8px 0 20px;
}
.config-list {
  display: grid;
  gap: 18px;
}
.config-card {
  display: grid;
  grid-template-columns: 96px 1.18fr 1.28fr 150px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: .2s ease;
  position: relative;
}
.hot-badge {
  position: absolute;
  top: -14px;
  left: 76px;
  width: 42px;
  height: 42px;
  z-index: 2;
}
.config-icon {
  width: 86px;
  height: 86px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.config-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.config-main h3 { margin: 0 0 8px; font-size: 22px; }
.config-main p { margin: 0; color: var(--muted); line-height: 1.7; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px 12px;
  color: #243a59;
  font-size: 14px;
}
.spec-grid span::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.price-box {
  display: grid;
  justify-items: start;
  gap: 12px;
}
.price {
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
}
.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 42px;
  color: #fff;
  border-radius: 8px;
  background: #ef2f2f;
  font-weight: 800;
}

.cloud-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 214px;
  padding: 28px 28px 24px;
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: center;
  gap: 18px;
}
.service-card h3 { margin: 0 0 12px; font-size: 24px; }
.service-card h3 a:hover { color: var(--blue); }
.service-card p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 14px; }
.service-img { display: block; }
.service-card img { max-height: 160px; object-fit: contain; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-grid a {
  min-height: 170px;
  padding: 24px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 24px;
}
.solution-grid img { width: 112px; height: 112px; object-fit: contain; }
.solution-grid strong { display: block; font-size: 22px; margin-bottom: 12px; }
.solution-grid span { color: var(--muted); line-height: 1.8; font-size: 14px; }

.why-band {
  margin-top: 76px;
  padding: 62px max(34px, calc((100vw - 1420px) / 2));
  max-width: none;
  width: 100%;
  border-radius: 0;
  background: #eef7ff;
  box-shadow: none;
}
.why-band h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 32px;
}
.why-grid,
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-grid {
  max-width: 1420px;
  margin: 0 auto;
}
.why-grid article,
.advantage-grid article {
  min-height: 142px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}
.why-grid img,
.advantage-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.why-grid strong,
.advantage-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.why-grid p,
.advantage-grid p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 14px; }

.advantages {
  max-width: 1420px;
  padding-left: 7vw;
  padding-right: 7vw;
}
.advantages .advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.advantages .advantage-grid article {
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 24px 20px;
  overflow: hidden;
}
.advantages .advantage-grid p,
.advantages .advantage-grid strong { overflow-wrap: anywhere; }

.about-section {
  margin-top: 76px;
  padding: 46px 7vw;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.about-media img { width: 100%; object-fit: contain; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.feature-list li {
  display: grid;
  gap: 7px;
  padding-left: 20px;
  border-left: 4px solid var(--blue);
}
.feature-list strong { font-size: 17px; }
.feature-list span { color: var(--muted); line-height: 1.7; font-size: 14px; }
.stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stats span {
  padding: 16px 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
}
.stats strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 4px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-list details {
  padding: 0;
  overflow: hidden;
}
.faq-list summary {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "⌄";
  margin-left: auto;
  color: var(--blue);
  font-size: 24px;
}
.faq-list details[open] summary::after { transform: rotate(180deg); }
.faq-list b {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--blue);
  background: #eaf3ff;
}
.faq-list p {
  margin: 0;
  padding: 0 22px 22px 84px;
  color: var(--muted);
  line-height: 1.8;
}

.cta {
  margin-top: 76px;
  padding: 60px 7vw;
  min-height: 250px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  color: #0a2450;
  background:
    linear-gradient(90deg, rgba(232, 243, 255, .96) 0%, rgba(232, 243, 255, .9) 46%, rgba(232, 243, 255, .25) 68%, rgba(232, 243, 255, .05) 100%),
    url("./assets/cta/taiwan-server-cta.webp") center right / auto 100% no-repeat,
    #eaf4ff;
}
.cta h2 { margin: 0 0 14px; font-size: 38px; }
.cta p { max-width: 680px; margin: 0 0 26px; color: #405a7a; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-section {
  max-width: 1500px;
  padding-left: max(34px, calc((100vw - 1500px) / 2));
  padding-right: max(34px, calc((100vw - 1500px) / 2));
}
.contact-grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-grid a,
.contact-grid button {
  border: 1px solid var(--line);
  padding: 24px 26px;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
}
.contact-grid img { width: 48px; height: 48px; object-fit: contain; }
.contact-grid strong { display: block; font-size: 19px; margin-bottom: 6px; }
.contact-grid span { color: var(--muted); font-size: 14px; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.payment-grid article {
  min-height: 168px;
  padding: 26px 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: .2s ease;
}
.payment-grid article:hover {
  transform: translateY(-5px);
  border-color: #9dc5ff;
  box-shadow: 0 20px 45px rgba(18, 103, 244, .16);
}
.payment-grid span {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-size: 24px;
  font-weight: 900;
}
.payment-grid strong {
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
}
.payment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.float-service {
  position: fixed;
  right: 22px;
  top: 48%;
  z-index: 15;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.float-service a,
.float-service button {
  width: 86px;
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.float-service img { width: 32px; height: 32px; }

.footer {
  max-width: none;
  width: 100%;
  margin-top: 64px;
  padding: 28px max(34px, calc((100vw - 1420px) / 2));
  display: grid;
  grid-template-columns: 260px minmax(520px, 1fr) 360px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
}
.footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  justify-content: center;
  margin-left: 0;
}
.footer .brand-mark { background: var(--blue); color: #fff; box-shadow: none; }
.footer .brand em,
.footer p { color: #4d75af; margin: 0; white-space: nowrap; text-align: right; }
.footer nav a { color: var(--blue); white-space: nowrap; }
.footer nav a:hover { color: var(--blue-dark); }

.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}
.chat-modal.open { display: block; }
.chat-mask {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 50, .42);
}
.chat-box {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(720px, calc(100vw - 40px));
  height: min(680px, calc(100vh - 70px));
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 38, 92, .28);
}
.chat-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.chat-close {
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.server-page {
  background: #f7fbff;
}
.server-hero {
  width: 100%;
  min-height: 520px;
  padding: 72px max(34px, calc((100vw - 1420px) / 2));
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 58px;
  background: linear-gradient(90deg, #edf6ff 0%, #fff 52%, #edf6ff 100%);
}
.server-hero-copy h1 {
  margin: 0;
  font-size: 49px;
  line-height: 1.15;
}
.server-hero-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 680px;
  color: #405a7a;
  font-size: 17px;
  line-height: 1.9;
}
.server-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}
.server-category-grid,
.server-scene-grid,
.server-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.server-category-grid article,
.server-category-grid a,
.server-scene-grid article,
.server-advantage-grid article {
  min-height: 210px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: .2s ease;
}
.server-category-grid article:hover,
.server-category-grid a:hover,
.server-scene-grid article:hover,
.server-advantage-grid article:hover,
.server-plan-card:hover {
  transform: translateY(-5px);
  border-color: #9dc5ff;
  box-shadow: 0 20px 45px rgba(18, 103, 244, .16);
}
.server-category-grid img {
  height: 74px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.server-category-grid strong,
.server-scene-grid strong,
.server-advantage-grid strong {
  display: block;
  font-size: 21px;
  text-align: center;
  margin-bottom: 12px;
}
.server-category-grid p,
.server-scene-grid p,
.server-advantage-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.server-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
}
.server-tabs button {
  flex: 0 0 auto;
  padding: 13px 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #233a59;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.server-tabs button:hover,
.server-tabs .active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.server-config-summary {
  margin: 8px 0 22px;
  text-align: center;
  color: var(--muted);
}
.server-config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.server-plan-card {
  position: relative;
  min-height: 300px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: .2s ease;
}
.server-plan-head {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
}
.server-plan-head img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.server-plan-head h3 {
  margin: 0 0 7px;
  font-size: 22px;
}
.server-plan-head p {
  margin: 0;
  color: #405a7a;
  line-height: 1.6;
}
.server-plan-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  color: #243a59;
  font-size: 14px;
}
.server-plan-specs span::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.server-plan-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.server-plan-foot strong {
  color: var(--blue);
  font-size: 27px;
  white-space: nowrap;
}
.server-plan-foot a {
  min-width: 112px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: #ef2f2f;
  font-weight: 800;
}
.server-band {
  margin-top: 76px;
  padding: 62px max(34px, calc((100vw - 1420px) / 2));
  background: #eef7ff;
}
.server-band .section-title {
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}
.server-scene-grid {
  max-width: 1280px;
  margin: 0 auto;
}
.server-scene-grid article,
.server-advantage-grid article {
  min-height: 218px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.server-scene-grid article {
  min-height: 190px;
  padding: 22px 18px;
  gap: 10px;
}
.server-scene-grid img {
  width: 46px;
  height: 46px;
}
.server-scene-grid strong {
  font-size: 19px;
  margin-bottom: 7px;
}
.server-scene-grid p {
  max-width: 220px;
  font-size: 13px;
  line-height: 1.65;
}
.server-scene-grid img,
.server-advantage-grid img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}
.server-scene-grid strong,
.server-advantage-grid strong {
  display: block;
  margin: 0 0 10px;
  text-align: center;
}
.server-scene-grid p,
.server-advantage-grid p {
  max-width: 240px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.75;
}
.server-advantage-section {
  max-width: 1420px;
}

.industry-grid a {
  min-height: 220px;
  grid-template-columns: 96px minmax(0, 1fr);
  text-align: left;
}
.industry-grid img {
  width: 92px;
  height: 92px;
}
.solution-choice-grid,
.product-map-grid,
.solution-process {
  display: grid;
  gap: 18px;
}
.solution-choice-grid {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.solution-choice-grid a {
  min-height: 260px;
  padding: 24px 22px;
  display: grid;
  grid-template-rows: 82px auto;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: .2s ease;
}
.solution-choice-grid a:hover,
.product-map-grid a:hover,
.solution-process article:hover {
  transform: translateY(-5px);
  border-color: #9dc5ff;
  box-shadow: 0 20px 45px rgba(18, 103, 244, .16);
}
.solution-choice-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.solution-choice-grid strong,
.product-map-grid strong,
.solution-process strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 10px;
}
.solution-choice-grid p,
.product-map-grid p,
.solution-process p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.solution-choice-grid span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}
.product-map-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-map-grid a,
.solution-process article {
  min-height: 210px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: .2s ease;
}
.product-map-grid img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 16px;
}
.solution-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.solution-process span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}
.solutions-page .server-category-grid article,
.solutions-page .solution-choice-grid a,
.solutions-page .solution-process article,
.solutions-page .product-map-grid a {
  text-align: center;
}
.solutions-page .solution-choice-grid img,
.solutions-page .product-map-grid img {
  margin-left: auto;
  margin-right: auto;
}
.solutions-page .solution-choice-grid span,
.solutions-page .solution-process span {
  margin-left: auto;
  margin-right: auto;
}
.solution-config-grid,
.solution-extra-grid {
  display: grid;
  gap: 18px;
}
.solution-config-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.solution-extra-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.solution-config-card,
.solution-extra-grid article {
  position: relative;
  min-height: 300px;
  padding: 24px 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 91, 168, .08);
  transition: .2s ease;
}
.solution-config-card:hover,
.solution-extra-grid article:hover {
  transform: translateY(-5px);
  border-color: #9dc5ff;
  box-shadow: 0 20px 45px rgba(18, 103, 244, .16);
}
.solution-config-icon,
.solution-extra-grid img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.solution-config-tag {
  display: inline-flex;
  padding: 5px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf5ff;
  font-size: 13px;
  font-weight: 800;
}
.solution-config-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.solution-config-card p,
.solution-extra-grid p {
  margin: 0 auto 16px;
  max-width: 270px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.solution-config-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin: 16px 0;
  color: #243a59;
  font-size: 13px;
  text-align: left;
}
.solution-config-specs span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.solution-config-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.solution-config-foot strong {
  color: var(--blue);
  font-size: 22px;
  white-space: nowrap;
}
.solution-config-foot a {
  min-width: 96px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: #ef2f2f;
  font-weight: 800;
}
.solution-extra-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1120px) {
  .site-header { padding: 0 24px; }
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav > a,
  .nav-menu > a { padding: 10px 0; }
  .drop {
    position: static;
    width: 100%;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }
  .nav-toggle { display: block; margin-left: auto; }
  .tg-top { display: none; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 54px 24px 80px; }
  .product-entry,
  .cloud-services,
  .solution-grid,
  .why-grid,
  .advantage-grid,
  .faq-list,
  .contact-grid,
  .payment-grid,
  .server-category-grid,
  .server-config-grid,
  .server-scene-grid,
  .server-advantage-grid,
  .solution-choice-grid,
  .product-map-grid,
  .solution-process,
  .solution-config-grid,
  .solution-extra-grid { grid-template-columns: repeat(2, 1fr); }
  .section,
  .why-band,
  .about-section,
  .cta,
  .contact-section,
  .footer { padding-left: 24px; padding-right: 24px; }
  .config-card { grid-template-columns: 84px 1fr; }
  .spec-grid,
  .price-box { grid-column: 2; justify-items: start; }
  .about-section { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .server-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 24px 70px;
  }
  .server-hero-copy,
  .server-hero-media {
    min-width: 0;
  }
  .server-hero-media img {
    max-height: 340px;
  }
  .footer { display: flex; flex-direction: column; align-items: flex-start; }
  .footer nav { margin-left: 0; justify-content: flex-start; flex-wrap: wrap; }
  .footer p { text-align: left; white-space: normal; }
}

@media (max-width: 680px) {
  .hero h1 { font-size: 37px; }
  .server-hero-copy h1 { font-size: 37px; }
  .server-hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .hero-kicker { font-size: 18px; }
  .product-entry,
  .cloud-services,
  .solution-grid,
  .why-grid,
  .advantage-grid,
  .faq-list,
  .contact-grid,
  .payment-grid,
  .server-category-grid,
  .server-config-grid,
  .server-scene-grid,
  .server-advantage-grid,
  .solution-choice-grid,
  .product-map-grid,
  .solution-process,
  .solution-config-grid,
  .solution-extra-grid,
  .stats { grid-template-columns: 1fr; }
  .section-title h2 { font-size: 28px; }
  .section-title h2::before,
  .section-title h2::after { display: none; }
  .service-card,
  .solution-grid a,
  .config-card { grid-template-columns: 1fr; text-align: center; }
  .config-icon,
  .service-card img,
  .solution-grid img { margin: 0 auto; }
  .industry-grid a { grid-template-columns: 1fr; text-align: center; }
  .spec-grid { grid-column: auto; grid-template-columns: 1fr; text-align: left; }
  .price-box { grid-column: auto; justify-items: center; }
  .faq-list p { padding-left: 22px; }
  .float-service { display: none; }
}

/* Taiwan homepage uses the supplied product and region illustrations. */
.config-card { position: relative; }
.hot-label { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 4px 9px; border-radius: 5px; color: #fff; font-size: 12px; font-weight: 800; background: #f04444; }
.spec-grid i { display: inline-block; width: 6px; height: 6px; margin: 0 7px 2px 0; border-radius: 50%; background: var(--blue); }
.image-why-grid { grid-template-columns: repeat(5, 1fr); }
.image-why-grid article { display: block; text-align: center; padding: 24px 16px; }
.image-why-grid article > img { width: 74px; height: 74px; margin: 0 auto 14px; object-fit: contain; }
.image-why-grid article strong { display: block; }
.image-why-grid article p { margin: 9px 0 0; font-size: 14px; line-height: 1.7; }
.taiwan-cta { min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 32px; overflow: hidden; }
.taiwan-cta > div { position: relative; z-index: 1; }
.taiwan-cta > img { width: min(37%, 360px); margin-right: 6%; align-self: flex-end; object-fit: contain; }
.contact-symbol { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--blue); border-radius: 10px; color: var(--blue); font-weight: 800; }
@media (max-width: 980px) { .image-why-grid { grid-template-columns: repeat(3, 1fr); } .taiwan-cta > img { width: 32%; margin-right: 0; } }
@media (max-width: 680px) { .image-why-grid { grid-template-columns: repeat(2, 1fr); } .taiwan-cta { display: block; min-height: 0; } .taiwan-cta > img { display: none; } }

/* Taiwan navy visual system */
:root {
  --blue: #021E4B;
  --blue-dark: #00142f;
  --ink: #021E4B;
  --muted: #596a80;
  --line: #d9e2ec;
  --soft: #f2f5f8;
  --card: #ffffff;
  --shadow: 0 18px 44px rgba(2, 30, 75, .10);
}
body { background: #f5f7fa; }
.site-header { background: rgba(255,255,255,.96); }
.brand-mark { border: 1px solid #294d7d; border-radius: 10px; background: #021E4B; box-shadow: 0 10px 24px rgba(2,30,75,.18); }
.tg-top, .btn.primary, .config-tabs button:hover, .config-tabs .active { background: #021E4B; border-color: #021E4B; box-shadow: 0 12px 24px rgba(2,30,75,.18); }
.tg-top img, .btn img { width: 20px; height: 20px; object-fit: contain; }
.hero { background: linear-gradient(90deg, #eaf0f6 0%, #fff 50%, #eaf0f6 100%); }
.eyebrow { color: #021E4B; background: #e6edf5; }
.hero-kicker { color: #28476f; }
.hero-desc, .cta p { color: #53677f; }
.entry-card, .solution-grid a, .why-grid article, .comparison-wrap, .config-card, .about-section, .faq-list details, .contact-grid a, .contact-grid button, .payment-grid article { border-color: #d9e2ec; box-shadow: 0 10px 30px rgba(2,30,75,.07); }
.entry-card:hover, .solution-grid a:hover, .why-grid article:hover, .config-card:hover { border-color: #8da6c5; box-shadow: 0 18px 38px rgba(2,30,75,.14); }
.section-title h2::before, .section-title h2::after { background: #b7c8dc; }

/* Three vertical product cards */
.config-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.config-card { display: flex; flex-direction: column; align-items: stretch; gap: 16px; min-height: 410px; padding: 26px 24px 22px; border-radius: 12px; }
.config-icon { width: 92px; height: 92px; margin: 0 auto; padding: 10px; border-radius: 14px; }
.config-main { text-align: center; }
.config-main h3 { color: #021E4B; font-size: 21px; margin-bottom: 6px; }
.config-main p { min-height: 26px; font-size: 14px; }
.spec-grid { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 8px; padding: 14px 0; border-top: 1px solid #e6edf4; border-bottom: 1px solid #e6edf4; font-size: 13px; }
.spec-grid i { display: none; }
.spec-grid span::before { width: 6px; height: 6px; margin-right: 6px; background: #2b5b93; }
.price-box { width: 100%; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { color: #021E4B; font-size: 24px; }
.buy-btn { min-width: 102px; height: 40px; border-radius: 6px; background: #021E4B; }
.hot-label { top: 16px; left: 16px; background: #d54747; }

.config-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.config-benefits article { min-height: 84px; padding: 15px 16px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; border: 1px solid #d9e2ec; border-radius: 8px; background: #fff; }
.config-benefits img { width: 34px; height: 34px; object-fit: contain; }
.config-benefits strong { display: block; color: #021E4B; font-size: 15px; margin-bottom: 4px; }
.config-benefits span { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; }

/* Comparison table */
.comparison-section { padding-top: 0; }
.comparison-wrap { overflow-x: auto; border-radius: 12px; background: #fff; }
.comparison-wrap table { width: 100%; min-width: 860px; border-collapse: collapse; text-align: left; }
.comparison-wrap th { padding: 16px 20px; color: #fff; background: #021E4B; font-size: 15px; }
.comparison-wrap td { padding: 16px 20px; color: #455a73; border-bottom: 1px solid #e4ebf2; font-size: 14px; vertical-align: middle; }
.comparison-wrap tbody tr:hover { background: #f4f7fa; }
.comparison-wrap td:first-child { display: flex; align-items: center; gap: 10px; color: #021E4B; font-weight: 800; }
.comparison-wrap td img { width: 42px; height: 42px; object-fit: contain; }
.comparison-wrap td a { display: inline-flex; padding: 8px 14px; border-radius: 5px; color: #fff; background: #021E4B; font-weight: 800; }

/* Taiwan advantage and about blocks */
.image-why-grid { grid-template-columns: repeat(5, 1fr); }
.image-why-grid article > img { width: 98px; height: 98px; margin-bottom: 16px; }
.image-why-grid article { min-height: 244px; padding: 28px 16px; }
.image-why-grid article strong { color: #021E4B; font-size: 18px; }
.image-why-grid article p { font-size: 13px; }
.about-section { align-items: stretch; }
.about-copy { display: flex; flex-direction: column; justify-content: center; }
.about-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 10px; }
.about-service-grid article { min-height: 102px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; padding: 16px; border: 1px solid #d9e2ec; border-radius: 8px; background: #f9fbfd; }
.about-service-grid img { width: 38px; height: 38px; object-fit: contain; }
.about-service-grid strong { display: block; color: #021E4B; margin-bottom: 5px; font-size: 15px; }
.about-service-grid span { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* Keep the CTA illustration as a separate right-side element */
.taiwan-cta { min-height: 248px; padding: 48px 7vw; background: linear-gradient(90deg,#e7eef5 0%,#f6f9fc 100%); }
.taiwan-cta > img { width: min(33%, 330px); margin: 0 4% 0 0; align-self: center; }
.taiwan-cta .btn.ghost { border-color: #021E4B; color: #021E4B; }
.taiwan-cta .btn img { width: 20px; height: 20px; }
.footer { grid-template-columns: 220px minmax(0,1fr) 370px; border-color: #d9e2ec; color: #021E4B; }
.footer .brand-mark { background: #021E4B; }
.footer nav { gap: 20px; }
.footer nav a { color: #021E4B; }
.footer .brand em, .footer p { color: #64758b; }
.float-service { border-color: #d9e2ec; }
.float-service a:hover, .float-service button:hover { color: #021E4B; background: #eef3f8; }

@media (max-width: 980px) {
  .config-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .config-benefits { grid-template-columns: repeat(2,1fr); }
  .image-why-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 680px) {
  .config-list { grid-template-columns: 1fr; }
  .config-card { min-height: 0; }
  .config-benefits { grid-template-columns: 1fr; }
  .image-why-grid { grid-template-columns: repeat(2,1fr); }
  .image-why-grid article > img { width: 78px; height: 78px; }
  .about-service-grid { grid-template-columns: 1fr; }
  .taiwan-cta > img { display: none; }
  .footer { grid-template-columns: 1fr; }
  .footer nav { justify-content: flex-start; }
}

/* Reference layout refinements */
.site-header { gap: 16px; }
.nav { gap: 22px; font-size: 14px; }
.nav > a { padding: 28px 0; }
.config-section { padding-bottom: 16px; }
.config-metrics { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 38px; border: 1px solid #dce4ec; border-radius: 2px; background: #fff; overflow: hidden; }
.config-metrics article { min-height: 84px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 16px 20px; border-right: 1px solid #e4e9ef; text-align: left; }
.config-metrics article:last-child { border-right: 0; }
.config-metrics img { width: 36px; height: 36px; object-fit: contain; }
.config-metrics strong { display: block; color: #021E4B; font-size: 17px; line-height: 1.15; }
.config-metrics span { display: block; margin-top: 4px; color: #657386; font-size: 12px; }
.comparison-section { margin-top: 96px; padding-top: 0; }
.comparison-section .section-title { margin-bottom: 28px; }
.comparison-wrap { border: 1px solid #dfe6ed; border-radius: 3px; box-shadow: none; }
.comparison-wrap table { min-width: 0; table-layout: fixed; }
.comparison-wrap th { padding: 13px 12px; color: #021E4B; background: #f8fafc; border-right: 1px solid #e1e7ee; font-size: 14px; text-align: center; }
.comparison-wrap th:first-child { width: 13%; }
.comparison-wrap td { padding: 13px 12px; border-right: 1px solid #e7edf2; color: #536276; font-size: 13px; line-height: 1.55; text-align: center; }
.comparison-wrap td:first-child { display: table-cell; color: #021E4B; font-weight: 800; }
.comparison-wrap td img, .comparison-wrap td a { display: none; }
.comparison-wrap tbody tr:last-child td { border-bottom: 0; }
.solutions { margin-top: 88px; }
.about-section { margin-top: 92px; padding: 36px 7vw; box-shadow: none; border-radius: 0; background: #fff; }
.about-media img { max-height: 430px; }
.about-copy .section-title.left { margin-bottom: 16px; }
.about-copy .section-title.left h2 { font-size: 30px; }
.about-copy .section-title.left p { margin: 8px 0 0; font-size: 14px; }
.about-intro { margin: 0; color: #4f6077; font-size: 14px; line-height: 2; }
.about-service-grid { margin-top: 23px; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid #e5ebf1; border-bottom: 1px solid #e5ebf1; }
.about-service-grid article { min-height: 82px; padding: 14px 10px; grid-template-columns: 1fr; justify-items: center; gap: 7px; border: 0; border-right: 1px solid #e5ebf1; border-radius: 0; background: transparent; text-align: center; }
.about-service-grid article:last-child { border-right: 0; }
.about-service-grid img { width: 34px; height: 34px; }
.about-service-grid strong { margin: 0; font-size: 13px; }
.about-service-grid span { display: none; }
.node-metrics { max-width: 1420px; margin: 0 auto 74px; padding: 0 7vw; display: grid; grid-template-columns: repeat(4,1fr); }
.node-metrics article { min-height: 84px; display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid #e3e9ef; background: #fff; }
.node-metrics article:last-child { border-right: 0; }
.node-metrics img { width: 38px; height: 38px; object-fit: contain; }
.node-metrics strong { display: block; color: #021E4B; font-size: 21px; }
.node-metrics span { display: block; margin-top: 3px; color: #64758b; font-size: 12px; }
.taiwan-cta { border: 1px solid #9cacbd; border-radius: 8px; min-height: 174px; margin-top: 62px; padding: 28px 7vw; }
.taiwan-cta h2 { font-size: 27px; margin-bottom: 8px; }
.taiwan-cta p { margin-bottom: 16px; font-size: 13px; }
.taiwan-cta > img { width: min(30%, 290px); }
.footer { display: block; margin-top: 42px; padding: 30px max(34px, calc((100vw - 1420px) / 2)) 18px; border-top: 1px solid #e3e8ee; background: #fff; }
.footer-columns { display: grid; grid-template-columns: 1.55fr repeat(4, 1fr); gap: 38px; }
.footer section { min-width: 0; }
.footer h3 { margin: 0 0 13px; color: #021E4B; font-size: 14px; }
.footer section > p, .footer section > a, .footer section > button { display: block; margin: 0 0 8px; padding: 0; color: #647386; font: inherit; font-size: 12px; line-height: 1.65; text-align: left; white-space: normal; border: 0; background: transparent; cursor: pointer; }
.footer section > a:hover, .footer section > button:hover { color: #021E4B; }
.footer .copyright { margin: 24px 0 0; padding-top: 16px; border-top: 1px solid #edf0f3; color: #788596; font-size: 12px; text-align: center; white-space: normal; }
@media (max-width: 980px) { .nav { gap: 13px; font-size: 13px; } .config-metrics { grid-template-columns: repeat(2,1fr); } .config-metrics article:nth-child(2) { border-right: 0; } .comparison-wrap { overflow-x: auto; } .comparison-wrap table { min-width: 900px; } .about-service-grid { grid-template-columns: repeat(2,1fr); } .about-service-grid article:nth-child(2) { border-right: 0; } .footer-columns { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px) { .site-header { padding: 0 24px; } .config-metrics { grid-template-columns: 1fr; } .config-metrics article { justify-content: flex-start; border-right: 0; border-bottom: 1px solid #e4e9ef; } .config-metrics article:last-child { border-bottom: 0; } .comparison-section { margin-top: 70px; } .comparison-wrap table { min-width: 800px; } .about-section { margin-top: 70px; padding: 26px 24px; } .about-service-grid { grid-template-columns: repeat(2,1fr); } .about-service-grid article:nth-child(2) { border-right: 0; } .node-metrics { grid-template-columns: repeat(2,1fr); padding: 0 24px; margin-bottom: 50px; } .node-metrics article:nth-child(2) { border-right: 0; } .node-metrics article:nth-child(n+3) { border-top: 1px solid #e3e9ef; } .taiwan-cta { margin-left: 24px; margin-right: 24px; padding: 24px; } .footer-columns { grid-template-columns: repeat(2,1fr); gap: 26px 20px; } .footer { padding: 28px 24px 16px; } }

/* Larger reference typography and About layout */
.site-header .nav { gap: 24px; font-size: 16px; font-weight: 600; }
.footer-columns h3 { font-size: 16px; }
.footer section > p, .footer section > a, .footer section > button { font-size: 14px; line-height: 1.7; }
.footer .copyright { font-size: 13px; }
.config-metrics { margin-top: 44px; }
.config-metrics article { min-height: 98px; gap: 15px; }
.config-metrics img { width: 42px; height: 42px; }
.config-metrics strong { font-size: 20px; }
.config-metrics span { font-size: 14px; }
.comparison-wrap th { padding: 16px 14px; font-size: 16px; }
.comparison-wrap td { padding: 16px 14px; font-size: 15px; line-height: 1.7; }
.about-section { grid-template-columns: 1fr 1fr; gap: 64px; padding: 44px 7vw 34px; margin-top: 100px; background: #fff; }
.about-media { display: flex; align-items: center; }
.about-media img { max-height: 440px; }
.about-copy .section-title.left h2 { font-size: 34px; }
.about-copy .section-title.left p { font-size: 16px; }
.about-intro { font-size: 16px; line-height: 2.05; }
.about-service-grid { margin-top: 28px; }
.about-service-grid article { min-height: 94px; padding: 16px 12px; }
.about-service-grid img { width: 42px; height: 42px; }
.about-service-grid strong { font-size: 16px; }
.node-metrics { width: min(1160px, calc(100% - 48px)); padding: 0; margin: 0 auto 82px; border: 1px solid #e3e9ef; border-top: 0; background: #fff; }
.node-metrics article { min-height: 94px; }
.node-metrics img { width: 44px; height: 44px; }
.node-metrics strong { font-size: 24px; }
.node-metrics span { font-size: 14px; }
@media (max-width: 1100px) { .site-header .nav { gap: 16px; font-size: 14px; } }
@media (max-width: 680px) { .site-header .nav { font-size: 15px; } .about-section { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; } .about-copy .section-title.left h2 { font-size: 29px; } .about-intro { font-size: 15px; } .comparison-wrap th { font-size: 15px; } .comparison-wrap td { font-size: 14px; } .footer-columns h3 { font-size: 15px; } .footer section > p, .footer section > a, .footer section > button { font-size: 13px; } }

/* Header interaction, banner image blending, and footer branding */
.nav > a {
  padding: 10px 13px;
  border-radius: 5px;
  transition: color .18s ease, background .18s ease;
}
.nav > a:hover,
.nav > a:focus-visible {
  color: #021E4B;
  background: #e4ebf3;
  outline: none;
}
.hero-media { overflow: hidden; }
.hero-media img { mix-blend-mode: multiply; }
.footer h3 { display: flex; align-items: center; gap: 8px; }
.footer-logo {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #021E4B;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 680px) {
  .nav > a { padding: 9px 11px; }
}

/* Separate the data strip from the About panel as an independent bordered module. */
.node-metrics {
  margin: 26px auto 82px;
  border: 1px solid #e3e9ef;
}
@media (max-width: 680px) {
  .node-metrics { margin: 20px auto 50px; }
}


/* TG and online support hover lift */
.tg-top,
.hero-actions a[href*="t.me"],
.cta-actions .btn,
.float-service a,
.float-service button,
.contact-grid > a[href*="t.me"],
.contact-grid > .js-chat-button,
.footer .js-chat-button {
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  will-change: transform;
}
.tg-top:hover,
.hero-actions a[href*="t.me"]:hover,
.cta-actions .btn:hover,
.float-service a:hover,
.float-service button:hover,
.contact-grid > a[href*="t.me"]:hover,
.contact-grid > .js-chat-button:hover,
.footer .js-chat-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(2, 30, 75, .18);
}
.float-service a:hover,
.float-service button:hover {
  box-shadow: 0 9px 18px rgba(2, 30, 75, .15);
}

/* Current navigation location */
.nav > a.active {
  color: #021E4B;
  background: #e4ebf3;
  box-shadow: inset 0 0 0 1px #cfdbe7;
  font-weight: 700;
}
