:root {
  --bg: #f2f5f8;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --surface-3: #e5edf5;
  --ink: #243447;
  --heading: #12233a;
  --muted: #5f6f83;
  --line: #d7e1eb;
  --blue: #4077c0;
  --blue-dark: #1d4f91;
  --blue-deep: #153c70;
  --green: #83b91e;
  --orange: #e86826;
  --dark: #102a47;
  --radius: 4px;
  --shadow: 0 18px 48px rgba(25, 61, 102, .16);
  --max: 1180px;
  --font: Arial, "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.58;
}

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

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

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

h1,
h2,
h3 {
  color: var(--heading);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--blue-dark);
  color: #fff;
}

.skip-link:focus {
  top: 14px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(18, 35, 58, .04);
}

.utility-bar {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-inner span {
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
}

.utility-inner a:hover {
  text-decoration: underline;
}

.nav {
  position: relative;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  padding: 22px 0;
  border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--blue);
  border-bottom-color: var(--blue);
  outline: none;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--heading);
  font: inherit;
  font-weight: 800;
}

.button,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary,
.nav-cta {
  background: var(--blue);
  color: #fff;
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button.secondary {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.button.secondary:hover {
  background: var(--surface-2);
}

.button.light {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.hero {
  padding: 0;
}

.leaseweb-hero {
  background: var(--blue-deep);
  color: #fff;
}

.hero-market {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.hero-panel {
  padding: 58px 0 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-panel h1,
.hero-panel .lead,
.hero-panel .eyebrow,
.hero-panel .hero-facts dt,
.hero-panel .hero-facts dd {
  color: #fff;
}

.hero-panel h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.1vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-panel .lead {
  color: rgba(255, 255, 255, .88);
}

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

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .2);
}

.hero-facts div {
  padding: 15px;
  background: rgba(255, 255, 255, .08);
}

.hero-facts dt {
  font-size: 20px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}

.hero-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  align-self: stretch;
  background: #0c1f35;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.offer-strip {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

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

.offer-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(32, 63, 100, .13);
}

.offer-card.featured {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.offer-card span,
.service-tile span,
.product-card span,
.business-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card.featured span {
  color: #d8f49c;
}

.offer-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
}

.offer-card.featured h2,
.offer-card.featured p,
.offer-card.featured strong {
  color: #fff;
}

.offer-card p {
  color: var(--muted);
  font-size: 15px;
}

.offer-card strong,
.service-tile strong,
.product-card strong,
.business-card strong {
  color: var(--blue);
  font-size: 14px;
}

.section {
  padding: 70px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .56fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.section-heading h2,
.proof-copy h2,
.split-section h2,
.cta-band h2,
.process-layout h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  font-weight: 800;
}

.section-heading p,
.proof-copy p,
.cta-band p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-directory {
  background: var(--surface);
}

.home-minimal .section {
  padding: 54px 0;
}

.home-minimal .home-hero .hero-market {
  min-height: 470px;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
}

.home-minimal .home-hero .hero-panel {
  padding: 54px 0 58px;
}

.home-minimal .home-hero .hero-panel h1 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(36px, 4.1vw, 52px);
}

.home-minimal .home-hero .lead {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.65;
}

.home-minimal .home-hero .hero-actions {
  margin-bottom: 26px;
}

.home-minimal .hero-facts div {
  padding: 14px 15px;
}

.home-minimal .hero-facts dt {
  font-size: 18px;
}

.home-minimal .hero-facts dd {
  font-size: 13px;
}

.home-minimal .hero-photo,
.home-minimal .hero-photo img {
  min-height: 470px;
}

.home-minimal .section-heading {
  margin-bottom: 20px;
}

.home-minimal .section-heading h2 {
  font-size: clamp(25px, 2.4vw, 32px);
}

.section-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.home-service-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.home-service-card:hover,
.home-service-card:focus-visible {
  border-color: #a9c3df;
  outline: none;
}

.home-service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.home-service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.home-minimal .inventory-row {
  min-height: 58px;
  grid-template-columns: .72fr 1.24fr .58fr .62fr;
}

.home-minimal .inventory-row > div {
  padding: 12px 15px;
  font-size: 14px;
}

.home-minimal .inventory-head {
  min-height: 44px;
}

.home-minimal .cta-section {
  padding-top: 48px;
}

.home-minimal .cta-band {
  padding: 28px 32px;
}

.home-minimal .cta-band h2 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.home-footer {
  padding: 44px 0 28px;
}

.home-footer .footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, .4fr));
  align-items: start;
}

.home-footer .footer-bottom {
  margin-top: 28px;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

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

.service-tile {
  display: grid;
  grid-template-rows: 190px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.service-tile.large {
  grid-row: span 2;
  grid-template-rows: 300px 1fr;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface-2);
}

.service-tile > div {
  padding: 22px;
}

.service-tile h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
}

.service-grid-four .service-tile {
  grid-template-rows: 170px 1fr;
}

.service-grid-four .service-tile h3 {
  font-size: 22px;
}

.integration-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.integration-row span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-row strong {
  color: var(--heading);
  font-size: 16px;
}

.integration-row em {
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.service-tile p,
.solution-card p,
.case-card p,
.capability-card p,
.spec-card p,
.contact-card p,
.business-card p,
.product-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-tile ul,
.product-card ul {
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.service-tile li,
.product-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.stock-section,
.proof-section {
  background: var(--bg);
}

.service-visual-section {
  padding: 34px 0 0;
  background: var(--surface);
}

.service-visual-row {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-visual-media {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.service-visual-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-visual-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.service-visual-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.16;
}

.service-visual-panel p {
  color: var(--muted);
}

.service-checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-checklist li {
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

.inventory-table,
.comparison-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.inventory-row {
  display: grid;
  grid-template-columns: .78fr 1.55fr .7fr .82fr;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}

.inventory-row:last-child {
  border-bottom: 0;
}

.inventory-row > div {
  padding: 17px 18px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.inventory-row > div:first-child {
  color: var(--heading);
  font-weight: 800;
}

.inventory-row > div:last-child {
  border-right: 0;
}

.inventory-head {
  min-height: 52px;
  background: var(--surface-2);
}

.inventory-head > div {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.inventory-row:not(.inventory-head):hover {
  background: #f8fbff;
}

.proof-band,
.band {
  background: var(--blue-deep);
  color: #fff;
}

.proof-band h2,
.proof-band .section-kicker,
.band h2,
.band .section-kicker,
.band h3 {
  color: #fff;
}

.proof-band p,
.band .section-heading p,
.band .capability-card p,
.band .solution-card p,
.band .spec-card p,
.muted-on-dark {
  color: rgba(255, 255, 255, .78);
}

.proof-grid,
.infra-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.mini-specs {
  margin-top: 24px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .2);
}

.mini-specs div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .08);
}

.mini-specs span {
  color: rgba(255, 255, 255, .72);
}

.mini-specs strong {
  color: #fff;
}

.ops-panel {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  color: var(--ink);
}

.ops-panel div {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.ops-panel div:last-child {
  border-bottom: 0;
}

.ops-panel span {
  color: var(--muted);
  font-size: 14px;
}

.ops-panel strong {
  color: var(--heading);
  font-size: 14px;
}

.solution-grid,
.case-grid,
.capability-grid,
.spec-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quote-form-section {
  background: var(--surface);
}

.contact-page .quote-form-section {
  padding-top: 42px;
}

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

.quote-form-layout h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.quote-form-layout p {
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(64, 119, 192, .18);
}

.quote-form-wide,
.quote-form-actions {
  grid-column: 1 / -1;
}

.quote-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.solution-card,
.case-card,
.capability-card,
.spec-card,
.contact-card,
.business-card,
.product-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.solution-card h3,
.case-card h3,
.capability-card h3,
.spec-card h3,
.contact-card h3,
.business-card h3,
.product-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.solution-card:hover,
.case-card:hover,
.capability-card:hover,
.spec-card:hover,
.service-tile:hover,
.offer-card:hover,
.inventory-row:not(.inventory-head):hover {
  border-color: #a9c3df;
}

.process-section {
  background: var(--surface);
}

.process-layout,
.proof-layout,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: start;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-list li {
  min-height: 156px;
  padding: 24px;
  background: var(--surface);
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 18px;
}

.process-list span {
  color: var(--muted);
  font-size: 15px;
}

.cta-section {
  padding-top: 56px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-band h2,
.cta-band p,
.cta-band .section-kicker {
  color: #fff;
}

.cta-band .section-kicker::before {
  background: #fff;
}

.page-hero {
  padding: 62px 0 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.contact-page .page-hero {
  padding: 42px 0 26px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.9vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.page-hero .lead {
  max-width: 820px;
}

.contact-page .page-hero h1 {
  max-width: 760px;
}

.contact-page .page-hero .lead {
  margin-bottom: 0;
}

.page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-tabs a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.page-tabs a:hover {
  border-color: var(--blue);
}

.band .capability-card,
.band .solution-card,
.band .spec-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.band .spec-card h3,
.band .solution-card h3,
.band .capability-card h3 {
  color: #fff;
}

.spec-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.spec-list strong {
  color: var(--heading);
  text-align: right;
}

.band .spec-list li {
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .72);
}

.band .spec-list strong {
  color: #fff;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-head {
  background: var(--surface-2);
  color: var(--heading);
  font-size: 13px;
  font-weight: 800;
}

.narrative-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.narrative-panel p {
  color: var(--muted);
}

.narrative-panel p:last-child {
  margin-bottom: 0;
}

.business-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.business-card,
.product-card {
  display: flex;
  flex-direction: column;
}

.business-card.featured {
  background: var(--blue);
  color: #fff;
}

.business-card.featured h3,
.business-card.featured p,
.business-card.featured strong {
  color: #fff;
}

.site-footer {
  padding: 44px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, .4fr));
  gap: 34px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-bottom {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid h2 {
  margin: 0 0 10px;
  font-size: 14px;
}

.footer-grid a:not(.brand) {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:not(.brand):hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-market,
  .section-heading,
  .service-visual-row,
  .proof-grid,
  .infra-grid,
  .process-layout,
  .proof-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 380px;
  }

  .hero-photo img {
    min-height: 380px;
  }

  .offer-grid,
  .service-showcase,
  .home-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-minimal .home-hero .hero-market {
    grid-template-columns: 1fr;
  }

  .service-tile.large {
    grid-row: auto;
  }

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

  .inventory-head {
    display: none;
  }

  .inventory-row > div:nth-child(2n) {
    border-right: 0;
  }

  .solution-grid,
  .case-grid,
  .capability-grid,
  .spec-grid,
  .contact-grid,
  .business-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .utility-bar {
    display: none;
  }

  .nav {
    min-height: 66px;
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    padding: 0 12px;
  }

  .hero-panel {
    padding: 44px 0 34px;
  }

  .hero-panel h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-facts,
  .offer-grid,
  .service-showcase,
  .home-card-grid,
  .solution-grid,
  .case-grid,
  .capability-grid,
  .spec-grid,
  .contact-grid,
  .process-list,
  .footer-grid,
  .business-grid,
  .product-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .quote-form-actions .button {
    width: 100%;
  }

  .integration-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .offer-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .service-tile,
  .service-tile.large {
    grid-template-rows: 210px 1fr;
  }

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

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

  .inventory-row > div {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .inventory-row > div:last-child {
    border-bottom: 0;
  }

  .mini-specs div,
  .ops-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section {
    padding: 52px 0;
  }

  .contact-page .page-hero {
    padding: 30px 0 18px;
  }

  .contact-page .quote-form-section {
    padding-top: 32px;
  }

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

  .comparison-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-row > div:last-child {
    border-bottom: 0;
  }

  .cta-band {
    padding: 24px;
  }

  .hero-actions .button,
  .cta-band .button,
  .page-hero-actions .button {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
    justify-content: stretch;
  }

  .home-minimal .home-hero .hero-panel {
    padding: 38px 0 28px;
  }

  .home-minimal .home-hero .lead {
    font-size: 16px;
  }

  .home-minimal .hero-photo,
  .home-minimal .hero-photo img {
    min-height: 0;
  }

  .home-minimal .home-hero .hero-photo {
    display: none;
  }

  .home-minimal .home-hero .hero-market {
    min-height: auto;
  }

  .home-service-card {
    min-height: auto;
  }

  .home-minimal .cta-band {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 8px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-toggle,
  .nav-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .nav-cta {
    font-size: 0;
  }

  .nav-cta::after {
    content: "报价";
    font-size: 13px;
  }

  .hero-panel h1,
  .page-hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .home-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .home-footer .footer-brand span:last-child {
    display: inline;
  }
}
