:root {
  --ink: #061a44;
  --muted: #51617d;
  --line: #dce5f3;
  --soft: #f5f8fc;
  --soft-2: #eaf3ff;
  --blue: #075fe4;
  --blue-2: #064fbd;
  --teal: #14a38b;
  --green: #20a464;
  --red: #d84242;
  --navy: #02214a;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(6, 26, 68, 0.10);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 22px;
  color: var(--ink);
  flex: 0 0 auto;
}

.brand-mark {
  width: 32px;
  height: 28px;
  border-radius: 8px 4px 8px 4px;
  background: linear-gradient(135deg, var(--blue), #0b89ff);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 26px 0 24px;
  color: #10264f;
  white-space: nowrap;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  background: var(--blue-2);
  box-shadow: 0 10px 24px rgba(7, 95, 228, 0.22);
  transform: translateY(-1px);
}

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

.btn.secondary:hover {
  background: var(--soft-2);
  box-shadow: none;
}

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

.lang-switcher {
  position: relative;
}

.lang-trigger {
  min-width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: none;
}

[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

.lang-switcher.is-open .lang-menu {
  display: grid;
}

.lang-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
}

.lang-menu a:hover,
.lang-menu a.is-current {
  background: var(--soft-2);
  color: var(--blue);
}

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

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--soft-2);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 strong,
.blue {
  color: var(--blue);
  font-weight: 900;
}

.lead {
  max-width: 630px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.hero-media {
  position: relative;
  min-height: 338px;
  border-radius: var(--radius);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 164px 132px;
  gap: 8px;
}

.photo-grid img,
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-photo {
  height: 336px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-grid img:first-child {
  grid-row: span 2;
}

.metric-stack {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  width: min(92%, 620px);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.metric {
  padding: 17px 14px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

[dir="rtl"] .metric {
  border-right: 0;
  border-left: 1px solid var(--line);
}

[dir="rtl"] .metric:last-child {
  border-left: 0;
}

.metric strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: #18335f;
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 40px 0;
}

.section.tight {
  padding: 28px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.2;
}

.section-head p {
  color: var(--muted);
  margin-bottom: 0;
}

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

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

.card-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  min-height: 160px;
}

.card.compact {
  min-height: 118px;
  padding: 18px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.card .link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-bottom: 18px;
  color: var(--blue);
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef6ff, #f8fbff 58%, #eefbf6);
  border: 1px solid #dcecff;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #22385f;
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--green) 38%, transparent 40%), #e8f8ef;
}

[dir="rtl"] .feature-list li::before {
  margin-right: 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.process-step {
  text-align: center;
}

.step-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border: 1px solid #b9d2ff;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.process-step p {
  color: var(--muted);
  font-size: 13px;
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 486px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  background: var(--white);
}

.plan > p {
  min-height: 74px;
  margin-bottom: 0;
}

.plan.is-featured {
  border-color: var(--blue);
  outline: 1px solid var(--blue);
  box-shadow: 0 18px 32px rgba(7, 95, 228, 0.13);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.price {
  min-height: 46px;
  margin: 18px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.08;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan .feature-list {
  flex: 1;
}

.plan > .btn {
  align-self: flex-start;
  margin-top: 20px;
}

.dev-overview {
  padding-top: 18px;
}

.dev-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #061a44 0%, #0b3f7c 56%, #0f766e 100%);
  overflow: hidden;
}

.dev-showcase .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.dev-showcase h2 {
  max-width: 780px;
  margin: 14px 0 12px;
  font-size: 42px;
  line-height: 1.12;
}

.dev-showcase p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.dev-showcase .btn.secondary {
  border-color: rgba(255, 255, 255, 0.66);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.dev-dashboard {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.dev-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.dev-dashboard-head strong,
.dev-dashboard-head span {
  display: block;
}

.dev-dashboard-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

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

.dev-metric {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dev-metric:nth-child(2n) {
  border-right: 0;
}

.dev-metric:nth-last-child(-n+2) {
  border-bottom: 0;
}

.dev-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 1.12;
}

.dev-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

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

.dev-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(6, 26, 68, 0.05);
}

.dev-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  margin-bottom: 22px;
  border-radius: 6px;
  background: #eaf8f1;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.dev-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.dev-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dev-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 40px;
  align-items: start;
  padding: 38px;
  border: 1px solid #dcecff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbff, #eefbf6);
}

.dev-workflow .section-head {
  margin: 0 0 24px;
  text-align: start;
}

.dev-stack {
  margin-top: 28px;
}

.dev-stack h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.dev-stack div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dev-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #cfe0f6;
  border-radius: 6px;
  background: var(--white);
  color: #18335f;
  font-size: 13px;
  font-weight: 800;
}

.dev-steps {
  display: grid;
  gap: 14px;
}

.dev-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.dev-step span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.dev-step h3 {
  margin-bottom: 5px;
  font-size: 19px;
}

.dev-step p {
  margin: 0;
  color: var(--muted);
}

.dev-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.dev-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 26, 68, 0.06);
}

.dev-plan.is-featured {
  border-color: var(--blue);
  border-top-color: var(--blue);
  box-shadow: 0 20px 42px rgba(7, 95, 228, 0.14);
}

.dev-plan h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.18;
}

.dev-plan > p {
  min-height: 92px;
  margin-bottom: 0;
  color: var(--muted);
}

.dev-price {
  min-height: 62px;
  margin: 22px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--ink);
  font-size: 36px;
  font-weight: 950;
  line-height: 1.04;
}

.dev-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.dev-plan .feature-list {
  flex: 1;
}

.dev-plan > .btn {
  align-self: flex-start;
  margin-top: 22px;
}

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

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

.faq-question {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: start;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cn-tech-page {
  background: linear-gradient(180deg, #f6f9fe 0, #ffffff 260px);
}

.cn-tech-hero {
  padding: 54px 0 26px;
}

.cn-tech-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1fr);
  gap: 58px;
  align-items: center;
}

.cn-tech-hero-copy h1 {
  max-width: 880px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 4.2vw, 64px);
}

.cn-tech-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.cn-tech-proof span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #cfe0f7;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: #16345f;
  font-size: 13px;
  font-weight: 800;
}

.cn-tech-visual {
  position: relative;
  min-height: 456px;
  overflow: hidden;
  border-radius: 8px;
  background: #071e42;
  box-shadow: 0 26px 58px rgba(6, 26, 68, 0.18);
}

.cn-tech-visual img {
  width: 100%;
  height: 456px;
  object-fit: cover;
  opacity: .86;
}

.cn-tech-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 49, .64), rgba(5, 22, 49, .08) 58%, rgba(5, 22, 49, .42));
}

.cn-tech-control {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 38px rgba(6, 26, 68, .20);
}

.cn-tech-control-head,
.cn-tech-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cn-tech-control-head {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.cn-tech-control-head span,
.cn-tech-control-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.cn-tech-control-row strong {
  color: var(--ink);
  font-size: 14px;
}

.cn-tech-snapshot {
  padding-top: 20px;
}

.cn-tech-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cn-tech-snapshot-grid article {
  min-height: 104px;
  padding: 22px 24px;
  border: 1px solid #d8e6f7;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 26, 68, .06);
}

.cn-tech-snapshot-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 30px;
  line-height: 1.08;
}

.cn-tech-snapshot-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cn-tech-two-col,
.cn-tech-deliverables-grid {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.cn-tech-section-copy {
  position: sticky;
  top: 104px;
  padding-right: 18px;
}

.cn-tech-section-copy h2,
.cn-tech-deliverables-copy h2 {
  margin: 12px 0 12px;
  font-size: 36px;
  line-height: 1.16;
}

.cn-tech-section-copy p,
.cn-tech-deliverables-copy p {
  color: var(--muted);
  font-size: 17px;
}

.cn-tech-fit-grid,
.cn-tech-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cn-tech-fit-grid article,
.cn-tech-scope-grid article,
.cn-tech-pricing-grid article {
  min-height: 196px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 26, 68, .05);
}

.cn-tech-fit-grid article span,
.cn-tech-process-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #eaf8f1;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.cn-tech-fit-grid h3,
.cn-tech-scope-grid h3,
.cn-tech-process-grid h3,
.cn-tech-pricing-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.24;
}

.cn-tech-fit-grid p,
.cn-tech-scope-grid p,
.cn-tech-process-grid p,
.cn-tech-pricing-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cn-tech-scope {
  background: #f6f9fe;
}

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

.cn-tech-scope-grid article {
  min-height: 178px;
}

.cn-tech-scope-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.cn-tech-deliverables {
  background: linear-gradient(135deg, #061a44 0%, #0b3d79 56%, #0b6f74 100%);
  color: var(--white);
}

.cn-tech-deliverables .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.cn-tech-deliverables-copy p {
  color: rgba(255, 255, 255, .76);
}

.cn-tech-deliverables-list {
  display: grid;
  gap: 12px;
}

.cn-tech-deliverables-list div {
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.cn-tech-deliverables-list strong {
  color: var(--white);
}

.cn-tech-deliverables-list span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.cn-tech-process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.cn-tech-process-grid article {
  min-height: 204px;
  padding: 20px;
  border: 1px solid #d8e6f7;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.cn-tech-pricing {
  background: #f6f9fe;
}

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

.cn-tech-pricing-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 472px;
  padding: 28px 24px 30px;
}

.cn-tech-pricing-grid article.is-featured {
  border-color: var(--blue);
  outline: 1px solid var(--blue);
  box-shadow: 0 18px 32px rgba(7, 95, 228, 0.13);
}

.cn-tech-pricing-grid .feature-list {
  flex: 1;
}

.cn-tech-pricing-grid .btn {
  align-self: flex-start;
  margin-top: 22px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(90deg, #064fc5, #05285a 70%);
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 0;
  inset-block: 0;
  width: 32%;
  background: linear-gradient(90deg, rgba(5, 40, 90, 0), rgba(5, 40, 90, .25)), url("../img/shipping-port.jpg") center / cover;
  opacity: .72;
}

[dir="rtl"] .cta-band::after {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin-bottom: 4px;
  font-size: 28px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
}

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

.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.post-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.post-body {
  padding: 18px;
}

.post-body h3 {
  font-size: 18px;
  line-height: 1.25;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.chip {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #244168;
  font-size: 13px;
  font-weight: 800;
}

.chip.is-active {
  border-color: var(--blue);
  color: var(--blue);
  background: #eef5ff;
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
}

.article-body h2 {
  margin: 36px 0 10px;
  font-size: 28px;
}

.quote {
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: #eef5ff;
  padding: 18px 20px;
  color: var(--blue);
  font-weight: 800;
}

[dir="rtl"] .quote {
  border-left: 0;
  border-right: 4px solid var(--blue);
}

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

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd9e8;
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

.field input.sr-only {
  position: absolute;
  width: 1px;
  min-height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.upload-field {
  grid-row: span 2;
  align-self: start;
}

.upload-dropzone {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 146px;
  padding: 22px 18px;
  border: 2px dashed #5a96ff;
  border-radius: 8px;
  background: #f7fbff;
  color: #16325b;
  text-align: center;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.upload-dropzone:hover,
.upload-dropzone.is-dragover {
  border-color: var(--blue);
  background: #eef5ff;
  box-shadow: 0 12px 24px rgba(7, 95, 228, 0.10);
}

.upload-icon {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.upload-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-copy {
  font-size: 15px;
  font-weight: 850;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
}

.upload-hint {
  color: var(--muted);
  font-size: 13px;
}

.upload-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.upload-list:empty {
  display: none;
}

.upload-file {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 30px;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.file-type {
  display: grid;
  place-items: center;
  width: 28px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.file-type.pdf { color: #d84242; }
.file-type.sheet { color: #20a464; }
.file-type.doc { color: #075fe4; }
.file-type.image { color: #1682f3; }

.upload-file-name {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-file-size {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.upload-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #23385b;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.upload-remove:hover {
  background: #eef5ff;
  color: var(--blue);
}

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

.check-card {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.check-card input {
  appearance: none;
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin: 0;
  padding: 0;
  border: 1.5px solid #b7c6dc;
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.check-card input:checked {
  border-color: var(--blue);
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.1 5.8 10 11.2 3.8' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.check-card:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 228, 0.12);
}

.check-text {
  color: #10264f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.check-card:has(input:checked) {
  border-color: var(--blue);
  background: #eef5ff;
}

.notice {
  padding: 14px 16px;
  border-radius: 7px;
  margin-bottom: 18px;
  font-weight: 800;
}

.notice.ok {
  color: #087448;
  background: #eaf8f1;
  border: 1px solid #bfe8d2;
}

.notice.error {
  color: #ad2525;
  background: #fff0f0;
  border: 1px solid #f3caca;
}

.rfq-success-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 26, 68, 0.42);
  backdrop-filter: blur(6px);
}

.rfq-success-card {
  position: relative;
  width: min(440px, 100%);
  padding: 34px 30px 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(6, 26, 68, 0.22);
  text-align: center;
}

.rfq-success-card h2 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.rfq-success-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.rfq-success-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf8f1;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.rfq-success-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.rfq-success-close:hover,
.rfq-success-close:focus-visible {
  background: var(--soft-2);
  color: var(--blue);
}

.legal-hero {
  padding: 62px 0 20px;
}

.legal-hero h1 {
  max-width: 920px;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.legal-card {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 16px;
}

.legal-card h2 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.25;
}

.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.legal-side h3 {
  margin-bottom: 4px;
}

.legal-side a:not(.btn) {
  color: #18335f;
  font-weight: 800;
}

.legal-side .btn {
  margin-top: 8px;
}

.cookie-preferences {
  padding: 26px 28px;
  border: 1px solid #cfe0f6;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
}

.cookie-preferences p {
  margin-bottom: 18px;
  color: #18335f;
  font-weight: 760;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 210;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: min(960px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid #cfe0f6;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(6, 26, 68, 0.20);
  transform: translateX(-50%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2 {
  margin-bottom: 4px;
  font-size: 18px;
}

.cookie-consent p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer {
  margin-top: 46px;
  background: linear-gradient(135deg, #06244c, #00162f);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 46px 0 30px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.site-footer h3 {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.wechat-qr {
  display: inline-grid;
  gap: 5px;
  margin: 6px 0 10px;
}

.wechat-qr img {
  width: 86px;
  height: 86px;
  padding: 5px;
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
}

.wechat-qr span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

@media (max-width: 1480px) and (min-width: 1321px) {
  .header-inner {
    gap: 14px;
  }
  .nav {
    gap: 13px;
    font-size: 13px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn {
    padding: 0 14px;
  }
}

@media (max-width: 1320px) {
  .mobile-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; }
  .nav a.is-active::after { bottom: 7px; width: 38px; right: auto; }
  .hero-grid,
  .cn-tech-hero-grid,
  .cn-tech-two-col,
  .cn-tech-deliverables-grid,
  .split-band,
  .dev-showcase,
  .dev-workflow,
  .blog-layout,
  .article-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-side {
    position: static;
  }
  .hero-grid { gap: 30px; }
  .pricing-grid,
  .dev-pricing-grid,
  .card-grid.four,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dev-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid.six,
  .process,
  .cn-tech-scope-grid,
  .cn-tech-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cn-tech-section-copy {
    position: static;
    padding-right: 0;
  }
  .cn-tech-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cn-tech-hero-grid {
    gap: 34px;
  }
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cookie-consent {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 48px, 1620px);
  }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1620px); }
  .header-inner { height: 66px; gap: 10px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 28px; height: 25px; font-size: 16px; }
  .header-actions .btn { display: none; }
  .nav { top: 66px; }
  .hero { padding-top: 34px; }
  h1 { font-size: 39px; }
  h1,
  .lead {
    overflow-wrap: anywhere;
  }
  .lead { font-size: 16px; }
  .actions {
    align-items: stretch;
  }
  .actions .btn {
    width: 100%;
  }
  .hero-media {
    min-height: auto;
  }
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 130px 130px;
  }
  .photo-grid img:first-child {
    grid-row: auto;
  }
  .metric-stack {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }
  .metric { border-bottom: 1px solid var(--line); }
  .card-grid,
  .card-grid.four,
  .card-grid.six,
  .pricing-grid,
  .cn-tech-snapshot-grid,
  .cn-tech-fit-grid,
  .cn-tech-scope-grid,
  .cn-tech-process-grid,
  .cn-tech-pricing-grid,
  .dev-pricing-grid,
  .dev-card-grid,
  .faq-grid,
  .post-grid,
  .process,
  .rfq-form,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-hero {
    padding-top: 34px;
  }
  .legal-card,
  .cookie-preferences {
    padding: 20px;
  }
  .cookie-actions,
  .cookie-preferences .actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-actions .btn,
  .cookie-preferences .btn {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .upload-field {
    grid-row: auto;
  }
  .plan {
    min-height: auto;
  }
  .cn-tech-hero {
    padding-top: 34px;
  }
  .cn-tech-hero-copy h1 {
    font-size: 38px;
  }
  .cn-tech-visual {
    min-height: auto;
  }
  .cn-tech-visual img {
    height: 330px;
  }
  .cn-tech-control {
    position: static;
    margin: -78px 14px 14px;
  }
  .cn-tech-snapshot-grid article,
  .cn-tech-fit-grid article,
  .cn-tech-scope-grid article,
  .cn-tech-process-grid article,
  .cn-tech-pricing-grid article {
    min-height: auto;
  }
  .cn-tech-section-copy h2,
  .cn-tech-deliverables-copy h2 {
    font-size: 30px;
  }
  .cn-tech-deliverables-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .dev-showcase,
  .dev-workflow {
    padding: 24px;
  }
  .dev-showcase h2 {
    font-size: 31px;
  }
  .dev-metrics {
    grid-template-columns: 1fr;
  }
  .dev-metric,
  .dev-metric:nth-child(2n),
  .dev-metric:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .dev-metric:last-child {
    border-bottom: 0;
  }
  .dev-step {
    grid-template-columns: 1fr;
  }
  .dev-plan {
    min-height: auto;
  }
  .plan > p {
    min-height: auto;
  }
  .dev-plan > p {
    min-height: auto;
  }
  .upload-file {
    grid-template-columns: 30px minmax(0, 1fr) 28px;
  }
  .upload-file-size {
    grid-column: 2;
  }
  .cta-band {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .cta-band::after {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* Chinese site readability and GEO-oriented layout polish */
html[lang="zh-CN"] body {
  background: #f7fafe;
  color: #071b3f;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", "Noto Sans SC", ui-sans-serif, system-ui, sans-serif;
}

html[lang="zh-CN"] .site-header {
  box-shadow: 0 10px 26px rgba(6, 26, 68, .05);
}

html[lang="zh-CN"] .hero {
  padding: 58px 0 42px;
  background:
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 78%),
    radial-gradient(circle at 18% 12%, rgba(7, 95, 228, .10), transparent 28%);
}

html[lang="zh-CN"] .hero-grid {
  gap: 52px;
}

html[lang="zh-CN"] h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.12;
  text-wrap: balance;
}

html[lang="zh-CN"] .lead {
  max-width: 720px;
  color: #4b5c78;
  font-size: 18px;
  line-height: 1.82;
}

html[lang="zh-CN"] .eyebrow {
  text-transform: none;
  letter-spacing: 0;
  color: #0754cc;
}

html[lang="zh-CN"] .badge-row {
  gap: 10px;
  max-width: 720px;
}

html[lang="zh-CN"] .badge {
  min-height: 36px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 8px 18px rgba(6, 26, 68, .04);
}

html[lang="zh-CN"] .hero-photo,
html[lang="zh-CN"] .photo-grid img {
  border: 1px solid #dce7f5;
}

html[lang="zh-CN"] .metric-stack {
  border: 1px solid rgba(220, 229, 243, .88);
}

html[lang="zh-CN"] .section {
  padding: 52px 0;
}

html[lang="zh-CN"] .section.tight {
  padding: 34px 0;
}

html[lang="zh-CN"] .section-head {
  max-width: 900px;
  margin-bottom: 30px;
}

html[lang="zh-CN"] .section-head h2 {
  font-size: 34px;
  line-height: 1.22;
  text-wrap: balance;
}

html[lang="zh-CN"] .section-head p {
  font-size: 16px;
  line-height: 1.76;
}

html[lang="zh-CN"] .card,
html[lang="zh-CN"] .post-card,
html[lang="zh-CN"] .plan,
html[lang="zh-CN"] .faq-item {
  border-color: #d7e3f2;
  box-shadow: 0 12px 30px rgba(6, 26, 68, .045);
}

html[lang="zh-CN"] .card {
  min-height: 176px;
}

html[lang="zh-CN"] .card.compact {
  min-height: 126px;
}

html[lang="zh-CN"] .card h3,
html[lang="zh-CN"] .post-body h3,
html[lang="zh-CN"] .plan h3 {
  color: #071b3f;
  line-height: 1.34;
}

html[lang="zh-CN"] .card p,
html[lang="zh-CN"] .post-body p,
html[lang="zh-CN"] .plan p,
html[lang="zh-CN"] .faq-answer {
  color: #52637e;
  line-height: 1.76;
}

html[lang="zh-CN"] .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
}

html[lang="zh-CN"] .split-band {
  background: linear-gradient(135deg, #ffffff, #eef6ff 64%, #edf9f4);
  box-shadow: 0 16px 36px rgba(6, 26, 68, .06);
}

.cn-answer-strip {
  padding-top: 18px;
}

.cn-answer-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 28px;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 26, 68, .05);
}

.cn-answer-card .eyebrow {
  justify-self: start;
}

.cn-answer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cn-answer-card li {
  position: relative;
  padding-left: 22px;
  color: #263a5f;
  font-size: 15px;
  line-height: 1.72;
}

.cn-answer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

[dir="rtl"] .cn-answer-card li {
  padding-left: 0;
  padding-right: 22px;
}

[dir="rtl"] .cn-answer-card li::before {
  left: auto;
  right: 0;
}

html[lang="zh-CN"] .cn-answer-strip {
  padding-top: 18px;
}

html[lang="zh-CN"] .cn-answer-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 28px;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 26, 68, .05);
}

html[lang="zh-CN"] .cn-answer-card .eyebrow {
  justify-self: start;
}

html[lang="zh-CN"] .cn-answer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

html[lang="zh-CN"] .cn-answer-card li {
  position: relative;
  padding-left: 22px;
  color: #263a5f;
  font-size: 15px;
  line-height: 1.72;
}

html[lang="zh-CN"] .cn-answer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

html[lang="zh-CN"] .process {
  padding: 22px;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 26, 68, .045);
}

html[lang="zh-CN"] .process-step {
  padding: 8px;
}

html[lang="zh-CN"] .process-step h3 {
  font-size: 16px;
}

html[lang="zh-CN"] .process-step p {
  line-height: 1.65;
}

html[lang="zh-CN"] .pricing-grid {
  align-items: stretch;
}

html[lang="zh-CN"] .plan {
  min-height: 500px;
}

html[lang="zh-CN"] .price {
  color: #06245c;
}

html[lang="zh-CN"] .faq-question {
  font-size: 16px;
  line-height: 1.45;
}

html[lang="zh-CN"] .cta-band {
  box-shadow: 0 20px 42px rgba(6, 26, 68, .16);
}

html[lang="zh-CN"] .blog-layout {
  align-items: start;
}

html[lang="zh-CN"] .post-card img {
  height: 182px;
}

html[lang="zh-CN"] .legal-hero {
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
}

html[lang="zh-CN"] .legal-layout {
  align-items: start;
}

html[lang="zh-CN"] .legal-card {
  max-width: 960px;
  box-shadow: 0 12px 30px rgba(6, 26, 68, .045);
}

html[lang="zh-CN"] .legal-card h2 {
  margin-top: 12px;
  line-height: 1.28;
}

html[lang="zh-CN"] .legal-card p,
html[lang="zh-CN"] .cookie-preferences p {
  color: #455876;
  font-size: 16px;
  line-height: 1.88;
}

html[lang="zh-CN"] .form-shell {
  background: linear-gradient(135deg, #ffffff, #f1f7ff);
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(6, 26, 68, .07);
}

html[lang="zh-CN"] .rfq-form label {
  color: #142c55;
  font-weight: 800;
}

html[lang="zh-CN"] .rfq-form input,
html[lang="zh-CN"] .rfq-form textarea,
html[lang="zh-CN"] .rfq-form select {
  border-color: #cfdcec;
  line-height: 1.6;
}

html[lang="zh-CN"] .upload-dropzone {
  background: #f7fbff;
}

@media (max-width: 1320px) {
  html[lang="zh-CN"] .hero-grid {
    gap: 34px;
  }

  html[lang="zh-CN"] .plan {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  html[lang="zh-CN"] .hero {
    padding: 36px 0 28px;
  }

  html[lang="zh-CN"] h1 {
    font-size: 34px;
  }

  html[lang="zh-CN"] .lead {
    font-size: 16px;
  }

  html[lang="zh-CN"] .section {
    padding: 38px 0;
  }

  html[lang="zh-CN"] .section-head h2 {
    font-size: 27px;
  }

  html[lang="zh-CN"] .process {
    padding: 16px;
  }

  .cn-answer-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  html[lang="zh-CN"] .cn-answer-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  html[lang="zh-CN"] .post-card img {
    height: 168px;
  }
}
