:root {
  --ink: #10212b;
  --navy: #0b1f33;
  --navy-2: #12344a;
  --steel: #5f6b73;
  --line: #d9e1e5;
  --mist: #f4f7f8;
  --white: #ffffff;
  --orange: #e66a2c;
  --orange-2: #bc4d17;
  --green: #1f6f5b;
  --green-soft: #eaf4f1;
  --blue-soft: #f3f8fb;
  --paper: #ffffff;
  --shadow: 0 10px 26px rgba(15, 45, 58, 0.06);
  --serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.top-strip {
  background: var(--green-soft);
  color: #254b45;
  font-size: 13px;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.top-strip__meta {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

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

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

.site-header.is-compact {
  box-shadow: 0 10px 28px rgba(11, 42, 58, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-text strong,
.footer-brand strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}

.brand-text span,
.footer-brand span {
  display: block;
  color: var(--steel);
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  color: #263942;
  font-size: 15px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--navy);
  background: #edf3f5;
}

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

.menu-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  border-color: rgba(217, 108, 28, 0.5);
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 14px 28px rgba(230, 106, 44, 0.28);
}

.button-primary:hover {
  background: var(--orange-2);
  border-color: var(--orange-2);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 45, 58, 0.16);
}

.button svg,
.menu-button svg,
.action-item svg,
.icon-chip svg,
.info-row svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  min-height: calc(100svh - 114px);
  background: #0b1f33;
  border-bottom: 0;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: transparent;
  transform: none;
}

.hero::after {
  display: none;
}

.hero > .container {
  width: 100%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: calc(100svh - 114px);
  padding: 0;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 64px 28px 30px;
  color: var(--white);
  text-align: center;
}

.hero-copy-inner {
  align-self: center;
  width: min(760px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--sans);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-position {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 700px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4d6169;
  font-size: 18px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero .button-primary {
  min-height: 44px;
  padding: 10px 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero .button-ghost {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.hero .button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-note {
  position: static;
  width: min(920px, 100%);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.hero-image-band {
  position: relative;
  width: 100%;
  max-width: none;
  height: calc(100svh - 114px);
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #eef3f4;
  border-radius: 0;
  box-shadow: none;
}

.hero-image-band::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 31, 51, 0.16) 0%, rgba(11, 31, 51, 0.44) 100%),
    linear-gradient(90deg, rgba(11, 31, 51, 0.34), rgba(11, 31, 51, 0.08));
}

.hero-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 760px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 26px auto 0;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: #1c4654;
  background: rgba(234, 244, 241, 0.9);
  border: 1px solid #d5e6e2;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.hero-business-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin: 36px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(11, 42, 58, 0.07);
}

.hero-business-strip div {
  padding: 20px 24px;
  border-right: 1px solid #dce6ea;
}

.hero-business-strip div:last-child {
  border-right: 0;
}

.hero-business-strip strong,
.hero-business-strip span {
  display: block;
}

.hero-business-strip strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.hero-business-strip span {
  margin-top: 4px;
  color: var(--steel);
  font-size: 14px;
}

.metric {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-size: 13px;
}

.hero-panel {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 45, 58, 0.09);
  color: var(--ink);
}

.hero-panel-simple {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 251, 0.96)),
    var(--white);
  border-top: 4px solid var(--green);
}

.hero-panel::before {
  display: none;
}

.hero-panel-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.hero-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.28;
}

.hero-simple-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.hero-simple-list span {
  position: relative;
  padding-left: 20px;
  color: #334b55;
  font-size: 15px;
  font-weight: 700;
}

.hero-simple-list span::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.keyword-grid,
.hero-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.keyword-grid span,
.hero-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  color: #18323d;
  background: #edf3f5;
  border: 1px solid #dce7eb;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.hero-inquiry-list {
  padding: 16px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-inquiry-list li {
  position: relative;
  padding-left: 18px;
  color: #344b56;
  font-size: 14px;
}

.hero-inquiry-list li + li {
  margin-top: 9px;
}

.hero-inquiry-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.hero-contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hero-phone {
  display: grid;
  gap: 2px;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 111, 91, 0.98), rgba(15, 45, 58, 0.96));
  border-radius: 8px;
}

.hero-phone-light {
  margin-top: 4px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-phone-light span {
  color: var(--green);
}

.hero-phone-light strong {
  color: var(--navy);
}

.hero-phone span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-phone strong {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-tags {
  margin-top: 16px;
}

.panel-note {
  margin: 18px 0 0;
  padding-top: 16px;
  color: var(--steel);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.section {
  padding: 70px 0;
}

.one-page-nav {
  position: relative;
  z-index: 4;
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid #eef3f5;
}

.one-page-nav-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e3ebee;
  border-radius: 8px;
}

.one-page-nav a {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 16px 14px;
  border-right: 1px solid #e3ebee;
}

.one-page-nav a:last-child {
  border-right: 0;
}

.one-page-nav span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.one-page-nav strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.one-page-nav a:hover {
  background: #f8fafb;
}

.section-alt {
  background: #f8fafb;
  border-top: 1px solid #edf2f4;
  border-bottom: 1px solid #edf2f4;
}

.section-dark {
  color: var(--ink);
  background: #fbfdfc;
  border-top: 1px solid #edf2f4;
  border-bottom: 1px solid #edf2f4;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.46fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.section h2,
.page-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-size: clamp(26px, 3.1vw, 38px);
  font-weight: 900;
  line-height: 1.18;
}

.section-dark h2 {
  color: var(--navy);
}

.section-dark .section-kicker {
  color: var(--green);
}

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

.section-dark .section-head p {
  color: #526b68;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  gap: 38px;
  align-items: stretch;
}

.intro-copy {
  padding: 30px;
  background: var(--white);
  border: 1px solid #e3ebee;
  border-top: 3px solid var(--green);
  border-radius: 8px;
  box-shadow: none;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border: 1px solid #e3ebee;
  border-radius: 8px;
}

.info-row svg,
.info-row i {
  flex: 0 0 auto;
  color: var(--orange);
  margin-top: 3px;
}

.info-index {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.about-intro {
  display: grid;
  gap: 34px;
}

.about-intro-copy {
  max-width: 860px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e3ebee;
  border-radius: 8px;
}

.service-point {
  min-height: 178px;
  padding: 26px 28px;
  border-right: 1px solid #e3ebee;
}

.service-point:last-child {
  border-right: 0;
}

.service-point span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.service-point h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.service-point p {
  margin: 0;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.75;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

.surface {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(11, 42, 58, 0.06);
}

.category-card,
.industry-card,
.solution-card,
.product-card,
.strength-card,
.process-step,
.article-card,
.contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid #e3ebee;
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.industry-card:hover,
.solution-card:hover,
.product-card:hover,
.strength-card:hover,
.process-step:hover,
.contact-card:hover {
  border-color: rgba(230, 106, 44, 0.38);
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.05);
  transform: translateY(-1px);
}

.category-card {
  position: relative;
  border-left: 4px solid var(--green);
  overflow: hidden;
}

.category-card::after {
  display: none;
}

.category-card:nth-child(2),
.category-card:nth-child(5) {
  border-left-color: #d98a34;
}

.category-card:nth-child(3),
.category-card:nth-child(6) {
  border-left-color: #2b7088;
}

.category-card h3,
.industry-card h3,
.solution-card h3,
.product-card h3,
.strength-card h3,
.process-step h3,
.article-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
}

.category-card ul,
.industry-card ul,
.solution-card ul,
.strength-card ul,
.footer-links,
.plain-list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.category-card li,
.industry-card li,
.solution-card li,
.strength-card li,
.plain-list li {
  position: relative;
  padding-left: 16px;
  color: var(--steel);
  font-size: 14px;
}

.category-card li + li,
.industry-card li + li,
.solution-card li + li,
.strength-card li + li,
.plain-list li + li {
  margin-top: 8px;
}

.category-card li::before,
.industry-card li::before,
.solution-card li::before,
.strength-card li::before,
.plain-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.advantage-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e3ebee;
  border-radius: 8px;
  background: #e3ebee;
}

.advantage-item {
  min-height: 160px;
  padding: 24px;
  background: var(--white);
}

.advantage-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 900;
}

.advantage-item p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-meta {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-meta div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  color: var(--steel);
  font-size: 14px;
}

.product-meta dt {
  color: var(--navy);
  font-weight: 800;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  min-height: auto;
  color: var(--green);
  background: var(--green-soft);
  border-color: #c8dfd8;
  font-size: 12px;
}

.process {
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 170px;
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.article-card {
  min-height: 144px;
  transition: 0.2s ease;
}

.article-card:hover {
  border-color: rgba(217, 108, 28, 0.48);
  transform: translateY(-2px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.32fr);
  gap: 26px;
  align-items: start;
}

.article-main,
.article-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-main {
  padding: 34px;
}

.article-aside {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid #c8dfd8;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
}

.article-body h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
}

.article-body p {
  color: #3f5159;
}

.key-answer {
  padding: 20px;
  margin: 0 0 24px;
  color: var(--ink);
  background: #edf3f5;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
}

.toc-list,
.related-links {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.toc-list li + li,
.related-links li + li {
  margin-top: 10px;
}

.toc-list a,
.related-links a {
  color: var(--navy);
  font-weight: 800;
}

.toc-list a:hover,
.related-links a:hover {
  color: var(--orange);
}

.note-box {
  padding: 18px;
  margin-top: 24px;
  color: #3f5159;
  background: #fff8f1;
  border: 1px solid #f0d6bd;
  border-radius: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  color: var(--ink);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 252, 0.9)),
    url("../images/hero-solvent-warehouse.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: 6vw;
  bottom: -56px;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(31, 111, 91, 0.16);
  transform: rotate(12deg);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--steel);
  font-size: 14px;
}

.page-section {
  padding: 72px 0;
}

.category-block {
  padding: 28px;
  margin-bottom: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.category-block h2 {
  margin-bottom: 18px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-list a,
.product-list span {
  padding: 8px 12px;
  color: #1d3943;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-table th,
.detail-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.detail-table th {
  width: 132px;
  color: var(--navy);
  background: #edf3f5;
  font-weight: 800;
}

.detail-table tr:last-child th,
.detail-table tr:last-child td {
  border-bottom: 0;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.solution-card p,
.industry-card p,
.strength-card p,
.product-card p,
.article-card p,
.contact-card p {
  margin: 0;
  color: var(--steel);
}

.solution-card .button {
  align-self: flex-start;
  margin-top: auto;
}

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

.feature-strip .surface {
  padding: 22px;
}

.feature-strip strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.52fr);
  gap: 24px;
  align-items: start;
}

.inquiry-band {
  color: var(--ink);
  background: #f8fbf9;
  border-top: 1px solid #d7ebe5;
  border-bottom: 1px solid #d7ebe5;
}

.inquiry-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 0;
}

.inquiry-band h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.inquiry-band p:not(.section-kicker) {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--steel);
}

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

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

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

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

.field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 108, 28, 0.12);
}

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

.form-status {
  min-height: 24px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.qr-box,
.map-box {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: var(--steel);
  background:
    linear-gradient(90deg, rgba(95, 107, 115, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(95, 107, 115, 0.1) 1px, transparent 1px),
    var(--mist);
  background-size: 16px 16px;
  border: 1px dashed #b8c6cd;
  border-radius: 8px;
  text-align: center;
}

.map-box {
  min-height: 270px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #081f2b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 0.9fr;
  gap: 30px;
  padding: 52px 0;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p {
  margin: 14px 0 0;
}

.footer-main h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.mobile-action-bar {
  display: none;
}

.wechat-modal[hidden] {
  display: none;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.wechat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.58);
  backdrop-filter: blur(10px);
}

.wechat-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: 30px;
  text-align: center;
  background: var(--white);
  border: 1px solid #e3ebee;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(11, 31, 51, 0.24);
}

.wechat-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: #f4f7f8;
  border: 1px solid #e3ebee;
  border-radius: 6px;
  cursor: pointer;
}

.wechat-modal__close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.wechat-modal h2 {
  margin: 4px 0 20px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.wechat-qr {
  padding: 14px;
  background: #f8fafb;
  border: 1px solid #e3ebee;
  border-radius: 8px;
}

.wechat-qr img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.wechat-modal__meta {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.wechat-modal__note {
  margin: 6px 0 0;
  color: var(--steel);
  font-size: 13px;
}

.skip-placeholder {
  color: var(--steel);
  font-size: 13px;
}

.home-page main {
  background: var(--white);
}

.home-page .hero {
  border-bottom: 0;
}

.home-page .section {
  padding: 86px 0;
  background: var(--white);
  border-top: 1px solid #eef3f5;
}

.home-page .hero + .section {
  padding-top: 78px;
  border-top: 0;
}

.home-page .one-page-nav {
  padding: 0;
  background: #f4f7f8;
  border-bottom: 1px solid #e5ecef;
}

.home-page .one-page-nav-inner {
  transform: translateY(-24px);
  box-shadow: 0 18px 44px rgba(11, 31, 51, 0.08);
}

.home-page .one-page-nav a {
  position: relative;
  min-height: 86px;
  background: rgba(255, 255, 255, 0.96);
}

.home-page .one-page-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 28px;
  height: 2px;
  content: "";
  background: #cbd8dd;
}

.home-page .one-page-nav a:hover::after {
  background: var(--orange);
}

.home-page .home-overview {
  padding-top: 52px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f4f7f8 58%, #f4f7f8 100%);
}

.home-page .section-alt,
.home-page .section-dark {
  background: var(--white);
  border-top: 1px solid #eef3f5;
  border-bottom: 0;
}

.home-page .home-products {
  background: #f7fafb;
}

.home-page .home-applications {
  background: #ffffff;
}

.home-page .home-featured-products {
  background: #f8fbfa;
}

.home-page .home-process {
  background: #ffffff;
}

.home-page .section-head {
  display: block;
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-page .section-head p {
  max-width: 650px;
  margin: 14px auto 0;
  color: #6c7a82;
}

.home-page .section-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.home-page .section h2,
.home-page .inquiry-band h2 {
  font-family: var(--sans);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
}

.home-page .intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.86fr);
  gap: 64px;
  max-width: 1050px;
  margin: 0 auto;
  align-items: start;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #e4ecef;
  border-radius: 10px;
}

.home-page .intro-copy {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-page .intro-copy p {
  margin: 0;
  color: #6c7a82;
}

.home-page .intro-copy p + p {
  margin-top: 18px;
}

.home-page .intro-lead {
  color: var(--navy);
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.32;
}

.home-page .info-list {
  gap: 0;
  padding: 6px 0 6px 26px;
  background: transparent;
  border: 0;
  border-top: 0;
  border-left: 1px solid #e1eaee;
  border-radius: 0;
}

.home-page .info-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid #eef3f5;
  border-radius: 0;
}

.home-page .info-row:first-child {
  border-top: 0;
}

.home-page .info-row svg,
.home-page .info-row i {
  display: none;
}

.home-page .info-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.home-page .info-row p {
  margin: 0;
  color: #6c7a82;
}

.home-page .info-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
}

.home-page .grid-2,
.home-page .grid-3,
.home-page .grid-4 {
  gap: 14px;
}

.home-page .category-card,
.home-page .industry-card,
.home-page .product-card,
.home-page .process-step,
.home-page .article-card,
.home-page .contact-card {
  background: var(--white);
  border: 1px solid #e8eef1;
  border-radius: 10px;
  box-shadow: none;
}

.home-page .category-card {
  counter-increment: category;
  min-height: 210px;
  padding-top: 54px;
  border-left: 1px solid #e8eef1;
  border-top: 4px solid var(--green);
}

.home-page .product-category-grid {
  counter-reset: category;
}

.home-page .category-card::before {
  position: absolute;
  top: 22px;
  left: 24px;
  content: "0" counter(category);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.home-page .category-card:nth-child(2),
.home-page .category-card:nth-child(3),
.home-page .category-card:nth-child(5),
.home-page .category-card:nth-child(6) {
  border-left-color: #e8eef1;
}

.home-page .category-card:nth-child(2),
.home-page .category-card:nth-child(5) {
  border-top-color: #d98a34;
}

.home-page .category-card:nth-child(3),
.home-page .category-card:nth-child(6) {
  border-top-color: #2b7088;
}

.home-page .category-card:hover,
.home-page .industry-card:hover,
.home-page .product-card:hover,
.home-page .process-step:hover,
.home-page .article-card:hover,
.home-page .contact-card:hover {
  border-color: #d8e3e7;
  box-shadow: none;
  transform: translateY(-1px);
}

.home-page .category-card h3,
.home-page .industry-card h3,
.home-page .product-card h3,
.home-page .process-step h3,
.home-page .article-card h3,
.home-page .contact-card h3 {
  font-size: 18px;
}

.home-page .industry-scan {
  counter-reset: industry;
  gap: 1px;
  overflow: hidden;
  background: #e3ebee;
  border: 1px solid #e3ebee;
  border-radius: 10px;
}

.home-page .industry-card {
  counter-increment: industry;
  position: relative;
  min-height: 188px;
  border: 0;
  border-radius: 0;
}

.home-page .industry-card::before {
  display: block;
  margin-bottom: 34px;
  content: "0" counter(industry);
  color: #9daeb5;
  font-size: 13px;
  font-weight: 900;
}

.home-page .industry-card::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.home-page .category-card li,
.home-page .industry-card li,
.home-page .plain-list li {
  color: #6c7a82;
}

.home-page .advantage-band {
  border: 1px solid #e8eef1;
  border-radius: 10px;
  background: #e8eef1;
}

.home-page .advantage-item {
  min-height: 148px;
  padding: 24px;
  background: var(--white);
}

.home-page .advantage-item strong {
  font-size: 20px;
}

.home-page .service-points-home {
  max-width: 1050px;
  margin: 0 auto;
}

.home-page .product-meta {
  border-top-color: #eef3f5;
}

.home-page .featured-product-grid .product-card {
  min-height: 330px;
  border-top: 4px solid var(--green);
}

.home-page .featured-product-grid .product-card:nth-child(2) {
  border-top-color: #2b7088;
}

.home-page .featured-product-grid .product-card:nth-child(3) {
  border-top-color: #d98a34;
}

.home-page .tag {
  color: #48636c;
  background: #f7fafb;
  border-color: #e8eef1;
}

.home-page .process {
  max-width: 1060px;
  margin: 0 auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e3ebee;
  border-radius: 10px;
}

.home-page .process-step {
  min-height: 0;
  padding: 26px 24px;
  border: 0;
  border-right: 1px solid #e8eef1;
  border-radius: 0;
}

.home-page .process-step:last-child {
  border-right: 0;
}

.home-page .process-step::before {
  margin-bottom: 12px;
  font-size: 22px;
}

.home-page .article-card {
  min-height: 126px;
}

.home-page .inquiry-band {
  color: rgba(255, 255, 255, 0.78);
  background: #0b1f33;
  border: 0;
}

.home-page .inquiry-band-inner {
  padding: 54px 0;
}

.home-page .inquiry-band .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.home-page .inquiry-band h2 {
  color: var(--white);
}

.home-page .inquiry-band p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.home-page .inquiry-band .button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.home-page #contact .contact-layout {
  max-width: 1050px;
  margin: 0 auto;
  align-items: center;
}

.home-page #contact .contact-card {
  background: #f8fafb;
}

@media (max-width: 1040px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  body.nav-open .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .intro-grid,
  .section-head,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: calc(100svh - 114px);
    padding: 0;
  }

  .grid-4,
  .advantage-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .one-page-nav-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .one-page-nav a:nth-child(3) {
    border-right: 0;
  }

  .one-page-nav a:nth-child(-n + 3) {
    border-bottom: 1px solid #e3ebee;
  }

  .grid-3,
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-overview {
    background: #ffffff;
  }

  .home-page .intro-grid {
    padding: 28px;
  }

  .home-page .info-list {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #e1eaee;
  }

  .home-page .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .process-step:nth-child(2) {
    border-right: 0;
  }

  .home-page .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid #e8eef1;
  }

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

  .article-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 70px;
    background-size: 32px 32px;
  }

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

  .top-strip .container {
    justify-content: center;
  }

  .top-strip__meta {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .hero::before {
    background: transparent;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-subtitle,
  .page-hero p {
    font-size: 16px;
  }

  .hero-position {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
  }

  .hero-image-band {
    height: calc(100svh - 114px);
    min-height: 560px;
    margin-top: 0;
    border-radius: 0;
  }

  .hero-copy {
    padding: 42px 20px 22px;
  }

  .hero-copy-inner {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .hero-business-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

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

  .hero-business-strip div:last-child {
    border-bottom: 0;
  }

  .hero-panel-simple {
    min-height: 0;
  }

  .hero-metrics,
  .grid-2,
  .grid-3,
  .grid-4,
  .advantage-band,
  .feature-strip,
  .inquiry-band-inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-page .intro-grid {
    padding: 22px;
  }

  .home-page .category-card {
    min-height: 0;
    padding-top: 48px;
  }

  .home-page .industry-scan {
    grid-template-columns: 1fr;
  }

  .home-page .industry-card {
    min-height: 0;
  }

  .home-page .process {
    grid-template-columns: 1fr;
  }

  .home-page .process-step,
  .home-page .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #e8eef1;
  }

  .home-page .process-step:last-child {
    border-bottom: 0;
  }

  .keyword-grid,
  .hero-tags {
    grid-template-columns: 1fr;
  }

  .inquiry-actions {
    justify-content: flex-start;
  }

  .section,
  .page-section {
    padding: 56px 0;
  }

  .intro-copy,
  .article-main,
  .article-aside,
  .category-card,
  .industry-card,
  .solution-card,
  .product-card,
  .strength-card,
  .process-step,
  .article-card,
  .contact-card,
  .category-block {
    padding: 20px;
  }

  .detail-table,
  .detail-table tbody,
  .detail-table tr,
  .detail-table th,
  .detail-table td {
    display: block;
    width: 100%;
  }

  .detail-table th {
    border-bottom: 0;
  }

  .detail-table td {
    padding-top: 0;
  }

  .footer-main {
    padding-bottom: 86px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 25px rgba(11, 42, 58, 0.12);
  }

  .action-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 58px;
    color: var(--navy);
    background: var(--white);
    border: 0;
    border-right: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .action-item:last-child {
    color: var(--white);
    background: var(--orange);
    border-right: 0;
  }

  .wechat-modal {
    padding: 16px 16px 86px;
  }

  .wechat-modal__panel {
    width: min(390px, 100%);
    max-height: calc(100svh - 110px);
    padding: 22px 18px 20px;
  }

  .wechat-modal h2 {
    font-size: 22px;
  }

  .wechat-qr {
    padding: 10px;
  }

  .wechat-qr img {
    max-height: min(52svh, 340px);
  }
}

@media (min-width: 541px) and (max-width: 720px) {
  .service-point {
    min-height: 218px;
    padding: 24px 18px;
  }

  .service-point span {
    margin-bottom: 16px;
  }

  .service-point h3 {
    font-size: 19px;
    line-height: 1.35;
  }

  .service-point p {
    font-size: 14px;
    line-height: 1.78;
  }
}

@media (max-width: 1040px) {
  .home-page .section-head,
  .home-page .intro-grid,
  .home-page #contact .contact-layout {
    max-width: none;
  }

  .home-page .section-head {
    display: block;
    text-align: left;
  }

  .home-page .section-head p {
    margin-right: 0;
    margin-left: 0;
  }

  .home-page .intro-grid {
    grid-template-columns: 1fr;
  }

  .home-page .inquiry-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .home-page .section {
    padding: 58px 0;
  }

  .home-page .hero + .section {
    padding-top: 56px;
  }

  .home-page .section-head {
    margin-bottom: 28px;
  }

  .home-page .intro-copy,
  .home-page .category-card,
  .home-page .industry-card,
  .home-page .product-card,
  .home-page .article-card,
  .home-page .contact-card {
    padding: 20px;
  }

  .home-page .info-list {
    padding: 4px 18px;
  }

  .home-page .advantage-band {
    grid-template-columns: 1fr;
  }

  .home-page .advantage-item {
    min-height: 0;
    padding: 20px;
  }

  .home-page .process-step {
    padding: 18px 0 0;
  }

  .home-page .inquiry-band-inner {
    padding: 42px 0;
  }
}

@media (max-width: 540px) {
  .one-page-nav-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .one-page-nav a,
  .one-page-nav a:nth-child(3) {
    border-right: 1px solid #e3ebee;
    border-bottom: 1px solid #e3ebee;
  }

  .one-page-nav a:nth-child(2n) {
    border-right: 0;
  }

  .one-page-nav a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .service-point {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid #e3ebee;
  }

  .service-point:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .home-page .category-card {
    padding: 52px 20px 20px;
  }

  .home-page .category-card::before {
    top: 22px;
    left: 20px;
  }
}
