:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #eef8f9;
  --ink: #0b1730;
  --muted: #5d6b82;
  --line: #dce7ef;
  --blue: #1478ff;
  --cyan: #0bb8d6;
  --green: #00a86b;
  --green-dark: #00845a;
  --amber: #ff8a00;
  --shadow: 0 22px 70px rgba(15, 43, 82, 0.12);
  --radius: 8px;
  font-family: "Inter", "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,251,255,1) 42%, #fff 100%);
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 231, 239, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 26px;
  font-weight: 800;
  color: #13233f;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #263850;
}

.main-nav > a,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.main-nav > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.open .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 16px;
  content: "";
}

.nav-dropdown-trigger i {
  font-size: 16px;
  transition: transform 180ms ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(15, 43, 82, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #263850;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.active {
  color: var(--green-dark);
  background: var(--surface-soft);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown.open .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #526278;
  font-size: 13px;
  font-weight: 800;
}

.language-switch span {
  width: 1px;
  height: 14px;
  background: #c8d4df;
}

.language-switch button {
  border: 0;
  padding: 4px 0;
  color: #657386;
  background: transparent;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--green), #00b978);
  box-shadow: 0 14px 30px rgba(0, 168, 107, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.btn-secondary {
  color: #1a2a42;
  border-color: #9cafc1;
  background: rgba(255, 255, 255, 0.78);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 104px 0 128px;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(1000px, 72vw);
  height: 690px;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.68) 20%, rgba(255,255,255,0.18) 42%, rgba(255,255,255,0) 76%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 64%, #fff 100%),
    url("assets/hero-datacenter.png");
  background-position: center right;
  background-size: cover;
  opacity: 0.96;
  pointer-events: none;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 62%, #fff 100%);
  content: "";
}

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

.hero-copy {
  max-width: 630px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 strong {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  margin-top: 12px;
  font-size: clamp(38px, 4.7vw, 66px);
}

.hero h1 strong span:nth-child(1) {
  color: var(--blue);
}

.hero h1 strong span:nth-child(3) {
  color: var(--green);
}

.hero h1 strong span:nth-child(5) {
  color: var(--ink);
}

.hero h1 b {
  color: #263850;
  font-weight: 800;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 34px 0 0;
  color: #53657b;
  font-size: 14px;
  font-weight: 700;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  color: var(--blue);
  font-size: 18px;
}

.hero-points em,
.map-legend em {
  font-style: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.section-offset {
  margin-top: -58px;
}

.network-card,
.proof-grid,
.contact-grid,
.pricing-card,
.service-item,
.solution-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.network-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  min-height: 390px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.network-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: #12223d;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  letter-spacing: 0;
}

.network-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stats-grid div {
  display: grid;
  gap: 6px;
  align-content: start;
}

.stats-grid i {
  color: var(--green);
  font-size: 32px;
}

.stats-grid strong {
  font-size: 32px;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.map-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  overflow: hidden;
}

.map-stage {
  position: relative;
  width: min(100%, 760px);
}

.map-stage img {
  width: 100%;
  opacity: 0.92;
}

.map-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 2px;
  min-width: 74px;
  padding: 7px 9px;
  border: 1px solid rgba(210, 226, 238, 0.86);
  border-radius: 7px;
  color: #20334e;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(22, 74, 119, 0.09);
  transform: translate(-12px, -50%);
  backdrop-filter: blur(10px);
}

.map-label::before {
  position: absolute;
  left: -7px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.14);
  content: "";
  transform: translateY(-50%);
}

.map-label.partner::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 120, 255, 0.14);
}

.map-label.build::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.16);
}

.map-label strong {
  font-size: 12px;
  line-height: 1.15;
}

.map-label span {
  color: #607287;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.map-label.us {
  transform: translate(-45%, -50%);
}

.map-label.japan,
.map-label.taiwan,
.map-label.singapore {
  transform: translate(8px, -50%);
}

.map-label.korea,
.map-label.hk,
.map-label.vietnam,
.map-label.malaysia {
  transform: translate(-92%, -50%);
}

.map-label.japan::before,
.map-label.taiwan::before,
.map-label.singapore::before {
  left: -7px;
}

.map-label.korea::before,
.map-label.hk::before,
.map-label.vietnam::before,
.map-label.malaysia::before {
  right: -7px;
  left: auto;
}

.map-legend {
  position: absolute;
  right: 24px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #53657b;
  background: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.map-legend b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.map-legend .live {
  background: var(--green);
}

.map-legend .partner {
  background: var(--blue);
}

.map-legend .build {
  background: var(--amber);
}

section {
  padding: 82px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 32px;
  align-items: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  min-height: 184px;
  padding: 26px 22px;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.72);
}

.service-item i {
  color: var(--blue);
  font-size: 38px;
}

.service-item h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.proof-strip {
  padding: 0 0 70px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}

.proof-grid div {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 142px;
  padding: 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid i {
  color: var(--green);
  font-size: 32px;
}

.proof-grid strong {
  color: #0c8262;
  font-size: 24px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.solutions {
  background: linear-gradient(180deg, rgba(244,250,255,0.42), rgba(255,255,255,1));
}

.tabs,
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.tabs {
  margin-bottom: 20px;
}

.tabs button,
.billing-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #5e6d81;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.tabs button.active,
.billing-toggle button.active {
  color: #fff;
  background: var(--green);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.solution-content h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.solution-content p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
}

.solution-content ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-content li {
  display: flex;
  gap: 10px;
  color: #2e4058;
  font-weight: 700;
}

.solution-content i {
  color: var(--green);
}

.solution-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.solution-metrics div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.solution-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
}

.solution-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.pricing {
  padding-top: 76px;
  background: #fff;
}

.billing-toggle {
  margin-top: 18px;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 30px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card:hover,
.pricing-card.active {
  transform: translateY(-4px);
  border-color: rgba(0,168,107,0.48);
  box-shadow: var(--shadow);
}

.pricing-card.accent-amber:hover,
.pricing-card.accent-amber.active {
  border-color: rgba(255,138,0,0.5);
}

.pricing-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
  content: "";
}

.pricing-card.accent-blue::before {
  background: var(--blue);
}

.pricing-card.accent-amber::before {
  background: var(--amber);
}

.pricing-card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 25px;
}

.pricing-card.accent-blue h3 {
  color: var(--blue);
}

.pricing-card.accent-amber h3 {
  color: var(--amber);
}

.pricing-card .fit {
  min-height: 44px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.price strong {
  font-size: 44px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
  color: #293a52;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.pricing-card li i {
  color: var(--green);
}

.pricing-card .btn {
  margin-top: auto;
}

.partners {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  color: #506179;
  font-size: 20px;
  font-weight: 800;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.2fr;
  gap: 34px;
  padding: 34px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  border: 0;
  padding: 0 16px;
  color: #263850;
  background: #fff;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open p {
  display: block;
}

.contact-copy ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #2d4058;
  font-weight: 700;
}

.contact-copy i {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #3f5067;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,168,107,0.12);
}

.is-invalid {
  border-color: #e35d5d;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.form-status.error {
  color: #c73b3b;
}

.site-footer {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #526278;
  font-size: 14px;
  font-weight: 700;
}

.socials a {
  font-size: 20px;
}

.floating-support {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 80;
  display: grid;
  gap: 8px;
  width: 108px;
  transform: translateY(-50%);
}

.floating-support__trigger,
.floating-support__links a {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 1px solid rgba(220, 231, 239, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(15, 43, 82, 0.14);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.floating-support__trigger:hover,
.floating-support__trigger:focus-visible,
.floating-support__links a:hover,
.floating-support__links a:focus-visible {
  border-color: rgba(0, 168, 107, 0.45);
  box-shadow: 0 18px 44px rgba(0, 168, 107, 0.18);
  transform: translateX(-2px);
}

.floating-support__trigger {
  min-height: 72px;
  gap: 5px;
  color: #fff;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  border-color: rgba(0, 132, 90, 0.35);
  cursor: pointer;
}

.floating-support__trigger i {
  font-size: 26px;
}

.floating-support__links {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  display: grid;
  gap: 8px;
  width: 110px;
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-support__links::after {
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  width: 12px;
  content: "";
}

.floating-support:hover .floating-support__links,
.floating-support:focus-within .floating-support__links {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.floating-support__links a {
  min-height: 48px;
  gap: 4px;
  color: #1f3852;
}

.floating-support__links i {
  color: var(--green-dark);
  font-size: 18px;
}

.main-nav > a.active::after,
.nav-dropdown.active .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.info-main {
  background: linear-gradient(180deg, #fff 0%, #f6fbff 48%, #fff 100%);
}

.info-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 92px 0 108px;
  background: #fff;
}

.info-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 38%, rgba(255,255,255,0.3) 74%),
    linear-gradient(180deg, rgba(255,255,255,0) 58%, #fff 100%),
    url("assets/hero-datacenter.png");
  background-position: center right;
  background-size: cover;
  content: "";
}

.info-hero .container {
  position: relative;
  z-index: 1;
}

.info-hero-copy {
  max-width: 700px;
}

.info-hero h1 {
  margin: 0;
  color: #12223d;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.info-hero p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.info-summary {
  margin-top: -52px;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.info-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}

.info-summary-grid div {
  min-height: 132px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.info-summary-grid div:last-child {
  border-right: 0;
}

.info-summary-grid i {
  color: var(--blue);
  font-size: 28px;
}

.info-summary-grid strong {
  display: block;
  margin: 10px 0 4px;
  color: #12223d;
  font-size: 24px;
}

.info-summary-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.info-section {
  padding: 86px 0;
}

.info-section.compact {
  padding-top: 42px;
}

.info-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.info-heading {
  position: sticky;
  top: 110px;
}

.info-heading h2 {
  margin: 0;
  color: #12223d;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

.info-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.info-card,
.legal-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
}

.info-card {
  min-height: 198px;
  padding: 26px;
}

.info-card i {
  color: var(--green);
  font-size: 34px;
}

.info-card h3,
.legal-block h3 {
  margin: 18px 0 10px;
  color: #13233f;
  font-size: 20px;
  line-height: 1.35;
}

.info-card p,
.legal-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.legal-block {
  padding: 28px;
}

.legal-block h3 {
  margin-top: 0;
}

.legal-block ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.legal-block li {
  display: flex;
  gap: 10px;
  color: #2e4058;
  line-height: 1.7;
}

.legal-block li i {
  color: var(--green);
  margin-top: 4px;
}

.info-cta-band {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.info-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.info-cta h2 {
  margin: 0;
  color: #12223d;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0;
}

.info-cta p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}



.buy-page {
  background: #f5f9fc;
}

.buy-page .container {
  width: min(1760px, calc(100% - 64px));
}

.buy-main {
  background:
    linear-gradient(180deg, rgba(232, 246, 250, 0.72) 0%, rgba(255, 255, 255, 0.96) 420px),
    #fff;
}

.buy-workspace {
  padding: 58px 0 88px;
}

.buy-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.buy-page-heading h1 {
  max-width: 760px;
  margin: 0;
  color: #12223d;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.buy-page-heading p:not(.section-kicker),
.buy-help-card p {
  color: var(--muted);
  line-height: 1.8;
}

.buy-page-heading p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 18px;
}

.buy-help-card,
.buy-flow-strip,
.buy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 58px rgba(15, 43, 82, 0.08);
}

.buy-help-card {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.buy-help-card span,
.buy-panel-head span,
.buy-summary-head span,
.buy-price-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.buy-help-card strong {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.buy-help-card p {
  margin: 0;
  font-size: 14px;
}

.buy-flow-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 26px;
}

.buy-flow-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.buy-flow-strip div:last-child {
  border-right: 0;
}

.buy-flow-strip i {
  grid-row: span 2;
  color: var(--blue);
  font-size: 28px;
}

.buy-flow-strip strong {
  color: #1b2d47;
  font-size: 17px;
}

.buy-flow-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 24px;
  align-items: start;
}

.buy-panel {
  overflow: hidden;
}

.buy-products-panel {
  min-height: 620px;
  padding: 0;
}

.buy-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.buy-panel-head h2,
.buy-summary-head h2 {
  margin: 4px 0 0;
  color: #12223d;
  font-size: 26px;
  line-height: 1.2;
}

.buy-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.buy-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  color: #5e6d81;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.buy-tabs button.active,
.buy-tabs button:hover {
  color: #fff;
  background: var(--green);
}

.buy-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 16px;
  padding: 24px;
}

.buy-source,
.buy-loading {
  grid-column: 1 / -1;
  border: 1px dashed rgba(20, 120, 255, 0.22);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #53657b;
  background: #f5faff;
  font-size: 13px;
  font-weight: 800;
}

.buy-product-card {
  display: grid;
  gap: 12px;
  min-height: 276px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  color: inherit;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.buy-product-card:hover,
.buy-product-card.active {
  border-color: rgba(0, 168, 107, 0.46);
  box-shadow: 0 18px 45px rgba(15, 43, 82, 0.1);
  transform: translateY(-2px);
}

.buy-product-card.active {
  background: linear-gradient(180deg, #fff, #f4fbf8);
}

.buy-product-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
}

.buy-product-group {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.buy-product-title {
  color: #12223d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.buy-product-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.buy-product-specs,
.buy-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buy-product-specs em,
.buy-preview span {
  border: 1px solid rgba(20, 120, 255, 0.12);
  border-radius: 7px;
  padding: 7px 8px;
  color: #2f435d;
  background: #f5faff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.buy-product-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: auto;
}

.buy-product-price strong {
  color: var(--green-dark);
  font-size: 27px;
  line-height: 1;
}

.buy-product-price small {
  color: var(--muted);
  font-weight: 800;
}

.buy-order-panel {
  position: static;
  padding: 24px;
}

.buy-order-form {
  display: grid;
  gap: 18px;
}

.buy-config-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.buy-note-field {
  display: grid;
}

.buy-note-field textarea {
  min-height: 92px;
}

.buy-qty-box {
  display: grid;
  gap: 8px;
}

.buy-qty-box input {
  width: 100%;
}

.buy-price-box {
  padding: 20px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 120, 255, 0.24), rgba(0, 168, 107, 0.18)),
    #12223d;
}

.buy-price-box span,
.buy-price-box small {
  color: rgba(255, 255, 255, 0.74);
}

.buy-price-box strong {
  display: block;
  margin-top: 6px;
  font-size: 38px;
  line-height: 1;
}

.buy-price-box small {
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}

.buy-preview span {
  display: inline-flex;
  gap: 6px;
}

.buy-preview b {
  color: #152641;
}

.buy-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.buy-status.success {
  color: var(--green-dark);
}

.buy-status.error {
  color: #c73b3b;
}

.buy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
    padding: 0 24px;
  }

  .main-nav {
    gap: 18px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-block {
    grid-column: 1 / -1;
  }

  .buy-page-heading,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .buy-order-panel {
    position: static;
  }
}

@media (max-width: 1480px) {
  .buy-page .container {
    width: min(1400px, calc(100% - 48px));
  }

  .buy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
  }

  .buy-products {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

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

  .main-nav,
  .header-actions {
    position: absolute;
    right: 20px;
    left: 20px;
    display: none;
    background: #fff;
  }

  .main-nav {
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 14px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 14px 10px;
    padding: 6px;
    border-radius: 7px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .header-actions {
    top: 410px;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .header-actions.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 86px;
  }

  .hero-bg {
    width: 100%;
    height: 520px;
    opacity: 0.46;
    background-position: center right;
  }

  .network-card,
  .solution-content,
  .section-heading.split,
  .info-split {
    grid-template-columns: 1fr;
  }

  .info-heading {
    position: static;
  }

  .info-cta {
    display: grid;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .floating-support {
    top: auto;
    right: 16px;
    bottom: 16px;
    width: 108px;
    transform: none;
  }

  .floating-support__trigger {
    min-height: 58px;
    cursor: pointer;
  }

  .floating-support__links {
    top: auto;
    right: 0;
    bottom: calc(100% + 10px);
    width: 108px;
    transform: translateY(8px);
  }

  .floating-support__links::after {
    top: auto;
    right: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
  }

  .floating-support:hover .floating-support__links,
  .floating-support:focus-within .floating-support__links {
    transform: translateY(0);
  }

  .floating-support__links a {
    min-height: 44px;
    font-size: 12px;
  }

  .buy-panel-head {
    grid-template-columns: 1fr;
  }

  .buy-flow-strip {
    grid-template-columns: 1fr;
  }

  .buy-flow-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .buy-flow-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .buy-page .container {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    padding: 0 14px;
  }

  .brand {
    font-size: 22px;
  }

  .hero h1 strong {
    display: block;
  }

  .hero h1 b {
    margin: 0 8px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .network-card {
    padding: 22px;
  }

  .stats-grid,
  .service-grid,
  .proof-grid,
  .pricing-grid,
  .solution-metrics,
  .form-row,
  .info-summary-grid,
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .info-hero {
    min-height: auto;
    padding: 70px 0 92px;
  }

  .info-summary-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-summary-grid div:last-child {
    border-bottom: 0;
  }

  .service-grid {
    border-left: 0;
  }

  .service-item {
    border-left: 1px solid var(--line);
  }

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .solution-content,
  .contact-grid {
    padding: 22px;
  }

  .tabs,
  .billing-toggle {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .pricing-card {
    min-height: auto;
  }

  .map-legend {
    position: static;
    margin-top: 12px;
    border-radius: var(--radius);
  }

  .map-stage {
    width: 100%;
  }

  .map-label {
    min-width: 58px;
    padding: 5px 6px;
  }

  .map-label strong {
    font-size: 10px;
  }

  .map-label span {
    display: none;
  }

  .buy-workspace {
    padding: 38px 0 58px;
  }

  .buy-help-card,
  .buy-panel-head,
  .buy-products,
  .buy-order-panel {
    padding: 18px;
  }

  .buy-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .buy-products,
  .buy-config-grid,
  .buy-actions {
    grid-template-columns: 1fr;
  }

  .buy-product-card {
    min-height: auto;
  }
}

/* Cloud order console layout */
.buy-page {
  background: #f5f8fc;
}

.buy-page .site-header {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(214, 225, 238, 0.8);
}

.buy-page .btn-primary {
  background: #1677ff;
  box-shadow: 0 12px 28px rgba(22, 119, 255, 0.24);
}

.buy-page .btn-primary:hover,
.buy-page .btn-primary:focus-visible {
  background: #005bff;
}

.buy-page .container {
  width: min(1440px, calc(100% - 48px));
}

.buy-main {
  min-height: calc(100vh - 72px);
  background: #f5f8fc;
}

.buy-workspace {
  padding: 26px 0 72px;
}

.buy-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.buy-console-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.buy-console-back {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d8e4f1;
  border-radius: 8px;
  color: #334155;
  background: #fff;
}

.buy-console-title span:not(.buy-console-back) {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.buy-console-title h1 {
  margin: 2px 0 0;
  color: #0f172a;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0;
}

.buy-console-head p {
  max-width: 430px;
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.buy-flow-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
  border: 1px solid #dde7f3;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: none;
  overflow: hidden;
}

.buy-flow-strip div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border-right: 1px solid #e3ebf5;
}

.buy-flow-strip div:first-child {
  background: #eef6ff;
}

.buy-flow-strip div:last-child {
  border-right: 0;
}

.buy-flow-strip i {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #1677ff;
  font-size: 15px;
}

.buy-flow-strip strong {
  color: #101828;
  font-size: 14px;
  line-height: 1.2;
}

.buy-flow-strip span {
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
}

.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.buy-panel {
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.buy-products-panel {
  min-height: 0;
}

.buy-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid #e5edf6;
}

.buy-panel-head span,
.buy-summary-head span,
.buy-price-box span,
.buy-config-title span {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
}

.buy-panel-head h2,
.buy-summary-head h2 {
  margin: 4px 0 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.25;
}

.buy-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.buy-tabs button {
  min-height: 34px;
  border: 1px solid #d7e3f1;
  border-radius: 7px;
  padding: 0 14px;
  color: #475569;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.buy-tabs button.active,
.buy-tabs button:hover {
  border-color: #1677ff;
  color: #1677ff;
  background: #eef6ff;
}

.buy-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  padding: 16px;
}

.buy-source,
.buy-loading {
  grid-column: 1 / -1;
  border: 1px solid #cfe0f5;
  border-radius: 8px;
  color: #2563eb;
  background: #f8fbff;
}

.buy-product-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  min-height: 96px;
  padding: 12px 14px;
  border: 1px solid #d8e5f2;
  border-radius: 8px;
  color: #101828;
  background: #fff;
  box-shadow: none;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.buy-product-card:hover,
.buy-product-card.active {
  border-color: #1677ff;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.12);
  transform: translateY(-1px);
}

.buy-product-card.active {
  background: #f8fbff;
}

.buy-product-card.sold-out {
  border-color: #e4e7ec;
  color: #98a2b3;
  background: #f7f8fa;
}

.buy-product-card.sold-out:hover {
  border-color: #d0d5dd;
  box-shadow: none;
  transform: none;
}

.buy-product-card.sold-out .buy-product-icon {
  color: #98a2b3;
  background: #eaecf0;
}

.buy-product-card.sold-out .buy-product-group,
.buy-product-card.sold-out .buy-product-title,
.buy-product-card.sold-out .buy-product-price strong,
.buy-product-card.sold-out .buy-product-price small {
  color: #98a2b3;
}

.buy-product-stock {
  grid-column: 2;
  width: fit-content;
  border: 1px solid #fecdca;
  border-radius: 999px;
  padding: 2px 8px;
  color: #b42318;
  background: #fffbfa;
  font-size: 11px;
  font-weight: 800;
}

.buy-product-card.active::after {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #1677ff;
  font-family: remixicon;
  font-size: 12px;
  content: "\eb7b";
}

.buy-product-card.sold-out.active::after {
  background: #98a2b3;
}

.buy-product-icon {
  grid-row: span 3;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #1677ff;
  background: #eaf3ff;
  font-size: 18px;
}

.buy-product-group {
  align-self: end;
  color: #2563eb;
  padding-right: 20px;
  font-size: 11px;
  font-weight: 800;
}

.buy-product-title {
  color: #101828;
  display: -webkit-box;
  overflow: hidden;
  padding-right: 20px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.buy-product-specs {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
  display: none;
}

.buy-product-specs em {
  min-height: 32px;
  border: 1px solid #dbe8f7;
  border-radius: 6px;
  padding: 7px 8px;
  color: #344054;
  background: #f8fbff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.buy-product-price {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 0;
  min-width: 0;
}

.buy-product-price strong {
  color: #ff4d4f;
  font-size: 18px;
  line-height: 1;
}

.buy-product-price small {
  color: #667085;
  font-size: 11px;
  font-weight: 800;
}

.buy-config-panel {
  border-top: 1px solid #e5edf6;
  padding: 22px 24px 26px;
}

.buy-config-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.buy-product-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 14px;
  color: #b42318;
  background: #fff5f5;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.buy-product-notice[hidden] {
  display: none !important;
}

.buy-product-notice i {
  flex: 0 0 auto;
  color: #ef4444;
  font-size: 18px;
}

.buy-config-title small {
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

.buy-mode-tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 20px;
  border-bottom: 1px solid #e5edf6;
}

.buy-mode-tabs button {
  position: relative;
  min-height: 38px;
  border: 0;
  padding: 0 0 10px;
  color: #101828;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.buy-mode-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #0052d9;
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.buy-mode-tabs button.active {
  color: #0052d9;
}

.buy-mode-tabs button.active::after {
  transform: scaleX(1);
}

.buy-package-area {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.buy-extra-config {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.buy-package-area[hidden],
.buy-custom-config[hidden],
.buy-package-select-field[hidden],
.buy-region-field[hidden],
.buy-vpc-field[hidden],
.buy-vpc-cidr-field[hidden],
.buy-password-field[hidden] {
  display: none !important;
}

.buy-config-label {
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.buy-package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
}

.buy-package-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 136px;
  border: 1px solid #d8e5f2;
  border-radius: 8px;
  padding: 14px;
  color: #101828;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.buy-package-card:hover,
.buy-package-card.active {
  border-color: #0052d9;
  box-shadow: 0 10px 24px rgba(0, 82, 217, 0.12);
}

.buy-package-card.active::after {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #0052d9;
  font-family: remixicon;
  font-size: 13px;
  content: "\eb7b";
}

.buy-package-card strong {
  padding-right: 24px;
  color: #101828;
  font-size: 17px;
  line-height: 1.2;
}

.buy-package-card-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
}

.buy-package-card-specs em {
  display: grid;
  gap: 2px;
  color: #101828;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.buy-package-card-specs b {
  color: rgba(0, 0, 0, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.buy-package-empty {
  border: 1px dashed #cfe0f5;
  border-radius: 8px;
  padding: 16px;
  color: #667085;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 800;
}

.buy-config-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.buy-config-grid label,
.buy-order-field {
  display: grid;
  gap: 8px;
}

.buy-os-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: end;
}

.buy-os-row label {
  display: grid;
  gap: 8px;
  align-content: end;
}

.buy-config-grid label > span,
.buy-order-field > span {
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.buy-config-grid select,
.buy-config-grid input,
.buy-order-field select,
.buy-order-field input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d7e3f1;
  border-radius: 6px;
  padding: 0 12px;
  color: #101828;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.buy-config-grid select:focus,
.buy-config-grid input:focus,
.buy-order-field select:focus,
.buy-order-field input:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.buy-order-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.buy-cart-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  margin: 0 0 14px;
  padding: 0 14px;
  border: 1px solid #b8c7da;
  border-radius: 8px;
  color: #1f2937;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.buy-cart-entry[hidden] {
  display: none;
}

.buy-cart-entry span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.buy-cart-entry:hover,
.buy-cart-entry:focus-visible {
  border-color: #1677ff;
  color: #1677ff;
  box-shadow: 0 10px 28px rgba(22, 119, 255, 0.12);
}

.buy-grid.buy-order-form {
  display: grid;
  gap: 18px;
}

.buy-order-panel .buy-summary-head {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5edf6;
}

.buy-preview {
  display: grid;
  gap: 0;
  margin: 16px 0 18px;
  border: 1px solid #e6eef7;
  border-radius: 8px;
  background: #fbfdff;
  overflow: hidden;
}

.buy-preview div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #e6eef7;
}

.buy-preview div:last-child {
  border-bottom: 0;
}

.buy-preview span {
  border: 0;
  padding: 0;
  color: #667085;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.buy-preview strong {
  min-width: 0;
  color: #101828;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.buy-price-box {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid #d7e7ff;
  border-radius: 8px;
  color: #101828;
  background: #f5f9ff;
}

.buy-price-box span,
.buy-price-box small {
  color: #667085;
}

.buy-price-box strong {
  display: block;
  margin-top: 6px;
  color: #ff4d4f;
  font-size: 40px;
  line-height: 1;
}

.buy-price-box small {
  display: block;
  margin-top: 10px;
  line-height: 1.6;
}

.buy-price-breakdown {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #d7e7ff;
}

.buy-price-breakdown[hidden] {
  display: none;
}

.buy-price-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.buy-price-breakdown b {
  color: #1677ff;
  font-size: 13px;
}

.buy-coupon-box {
  margin: 0 0 12px;
  padding: 14px;
  border: 1px solid #e5edf6;
  border-radius: 8px;
  background: #fbfdff;
}

.buy-coupon-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.buy-coupon-toggle input {
  width: 16px;
  height: 16px;
  accent-color: #1677ff;
}

.buy-coupon-fields {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.buy-coupon-fields[hidden] {
  display: none;
}

.buy-coupon-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 8px;
}

.buy-coupon-entry .btn {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
}

.buy-coupon-clear {
  justify-self: start;
  border: 0;
  padding: 0;
  color: #1677ff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.buy-coupon-clear:disabled {
  color: #98a2b3;
  cursor: not-allowed;
}

.buy-coupon-status {
  min-height: 18px;
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.buy-coupon-status.success {
  color: #1677ff;
}

.buy-coupon-status.error {
  color: #d92d20;
}

.buy-order-panel .buy-order-field {
  margin-bottom: 12px;
}

.buy-status {
  min-height: 22px;
  margin: 0 0 14px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.buy-status.success {
  color: #1677ff;
}

.buy-status.error {
  color: #d92d20;
}

.buy-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.buy-actions .btn {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  font-size: 15px;
}

.buy-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.buy-actions .btn-secondary {
  border-color: #b8c7da;
  color: #1f2937;
  background: #fff;
}

@media (max-width: 1180px) {
  .buy-page .container {
    width: min(100% - 32px, 980px);
  }

  .buy-grid {
    grid-template-columns: 1fr;
  }

  .buy-order-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .buy-console-head {
    display: grid;
  }

  .buy-console-head p {
    max-width: none;
    text-align: left;
  }

  .buy-flow-strip {
    grid-template-columns: 1fr;
  }

  .buy-flow-strip div {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid #e3ebf5;
  }

  .buy-flow-strip div:last-child {
    border-bottom: 0;
  }

  .buy-panel-head {
    grid-template-columns: 1fr;
  }

  .buy-tabs {
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 680px) {
  .buy-workspace {
    padding: 20px 0 48px;
  }

  .buy-page .container {
    width: min(100% - 24px, 560px);
  }

  .buy-console-title h1 {
    font-size: 22px;
  }

  .buy-panel-head,
  .buy-products,
  .buy-config-panel,
  .buy-order-panel {
    padding: 16px;
  }

  .buy-products,
  .buy-config-grid {
    grid-template-columns: 1fr;
  }

  .buy-package-cards {
    grid-template-columns: 1fr;
  }

  .buy-product-card {
    min-height: auto;
  }

  .buy-product-specs {
    grid-template-columns: 1fr;
  }

  .buy-preview div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
