:root {
  --ink: #101820;
  --ink-soft: #31404f;
  --muted: #667481;
  --line: #d9e0e7;
  --paper: #f5f7f9;
  --surface: #ffffff;
  --navy: #101b2e;
  --navy-2: #17263d;
  --accent: #f05a28;
  --accent-dark: #c93e18;
  --steel: #dfe6ec;
  --shadow: 0 24px 60px rgba(16, 24, 32, 0.16);
  --radius: 18px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

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

p {
  color: var(--muted);
  line-height: 1.8;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--navy);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 224, 231, 0.82);
  background: rgba(245, 247, 249, 0.92);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 36px rgba(16, 24, 32, 0.08);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--steel);
}

.site-nav .nav-call {
  color: #fff;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 3.6vw, 48px);
  align-items: center;
  min-height: auto;
  padding: clamp(52px, 6vw, 78px) clamp(18px, 4vw, 56px) clamp(42px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(16, 27, 46, 0.07), transparent 35%),
    linear-gradient(180deg, #f8fafc 0%, #edf2f6 100%);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 64px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.hero-media {
  display: grid;
  gap: 14px;
  align-self: center;
}

.hero-visual {
  position: relative;
  height: clamp(360px, 44dvh, 430px);
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 27, 46, 0.06) 0%, rgba(16, 27, 46, 0.2) 48%, rgba(16, 27, 46, 0.86) 100%),
    linear-gradient(90deg, rgba(16, 27, 46, 0.18), transparent 38%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-slide:nth-child(3) img {
  object-position: center center;
}

.hero-slide-caption {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 20px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 27, 46, 0.58);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-carousel-dots {
  position: absolute;
  z-index: 3;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-proof-grid div {
  padding: 13px 16px;
}

.hero-proof-grid div + div {
  border-left: 1px solid var(--line);
}

.hero-proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.hero-proof-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-carousel-dots {
  right: 22px;
  top: 24px;
  display: flex;
  gap: 6px;
}

.hero-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-carousel-dots button.is-active {
  width: 22px;
  background: #fff;
}

.hero-carousel-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(100%, 960px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(58px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(245, 247, 249, 0.96) 0%, rgba(245, 247, 249, 0.88) 58%, rgba(245, 247, 249, 0.98) 100%),
    url("../pictures/textile-equipment-fabric-workshop.png") center / cover no-repeat;
}

.trust-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(245, 247, 249, 0.98) 0%, rgba(245, 247, 249, 0.88) 56%, rgba(245, 247, 249, 0.62) 100%),
    radial-gradient(circle at 88% 18%, rgba(240, 90, 40, 0.12), transparent 34%);
}

.trust-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.trust-copy h2 {
  max-width: 900px;
}

.trust-copy p:not(.eyebrow) {
  max-width: 860px;
  font-size: 18px;
}

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

.trust-strip article {
  min-height: 190px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(217, 224, 231, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(12px);
}

.trust-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.trust-strip article:nth-child(2) .trust-icon,
.trust-strip article:nth-child(4) .trust-icon {
  background: var(--accent);
}

.trust-strip h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
}

.trust-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.entity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.entity-copy {
  position: sticky;
  top: 104px;
}

.entity-copy h2 {
  max-width: 760px;
}

.entity-copy p {
  max-width: 760px;
  font-size: 17px;
}

.entity-answer {
  color: var(--ink-soft);
  font-size: 19px !important;
}

.entity-answer strong {
  color: var(--ink);
}

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

.entity-facts div {
  min-height: 156px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.entity-facts dt {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.entity-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 850;
  line-height: 1.5;
}

.entity-facts a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: minmax(330px, auto);
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.service-card.large {
  grid-row: span 2;
  min-height: 680px;
}

.service-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(16, 27, 46, 0.88) 100%);
}

.service-card div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 38px);
}

.service-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
}

.service-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.service-card.accent::after {
  background: linear-gradient(180deg, transparent 32%, rgba(201, 62, 24, 0.88) 100%);
}

.advantage-section {
  padding-block: clamp(56px, 7vw, 88px);
  background: var(--navy);
  color: #fff;
}

.advantage-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: stretch;
}

.advantage-media {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.advantage-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.advantage-media p {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(16, 27, 46, 0.62);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.advantage-copy h2 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #fff;
}

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

.advantage-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px 18px;
  min-height: 212px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.advantage-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(240, 90, 40, 0.12);
  font-weight: 900;
}

.advantage-list h3 {
  align-self: center;
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.22;
}

.advantage-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

.customers-section {
  background:
    linear-gradient(180deg, #eef3f7 0%, #f6f8fa 100%);
}

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

.customer-matrix > * {
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: var(--radius);
}

.customer-title {
  grid-column: 1 / -1;
  display: flex;
  min-height: auto;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 0 18px;
  border-radius: 0;
}

.customer-title h2 {
  max-width: 760px;
  color: var(--ink);
}

.customer-title p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.customer-matrix h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.2;
}

.customer-matrix article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(217, 224, 231, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.customer-matrix article:hover {
  border-color: rgba(240, 90, 40, 0.28);
  box-shadow: 0 20px 48px rgba(16, 24, 32, 0.1);
  transform: translateY(-3px);
}

.customer-matrix article::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.customer-matrix article p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.customer-matrix article:nth-child(3) {
  color: #fff;
  border-color: rgba(240, 90, 40, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 44%),
    var(--accent);
  box-shadow: 0 20px 48px rgba(201, 62, 24, 0.2);
}

.customer-matrix article:nth-child(3)::before {
  background: rgba(255, 255, 255, 0.78);
}

.customer-matrix article:nth-child(3) h3,
.customer-matrix article:nth-child(3) p {
  color: #fff;
}

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

.client-section h2 {
  max-width: 760px;
}

.client-copy {
  max-width: 820px;
  font-size: 18px;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.client-list span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-soft);
  font-weight: 900;
  text-align: center;
}

.detail-section {
  padding-top: 0;
  background: var(--surface);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 18px;
}

.detail-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.detail-card img {
  height: 310px;
  object-fit: cover;
}

.detail-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.faq-section {
  padding-block: clamp(58px, 7vw, 92px);
  background: #e9eef3;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.faq-intro {
  max-width: 620px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: -8px 24px 22px;
}

.contact-section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 56px);
  background: var(--navy);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.18), transparent 36%),
    #142238;
}

.contact-panel h2,
.contact-panel p {
  color: #fff;
}

.contact-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
}

.contact-card strong {
  font-size: 22px;
}

.contact-card span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card .button {
  justify-self: start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.7);
  background: #0b1320;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: flex-end;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-visual {
    height: min(62dvh, 520px);
    min-height: 420px;
  }

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

  .trust-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .entity-copy {
    position: static;
  }

  .trust-copy {
    max-width: 900px;
  }

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

  .customer-title {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }

  .service-grid,
  .advantage-layout,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .advantage-media,
  .faq-intro {
    position: static;
  }

  .advantage-media {
    height: auto;
    min-height: 0;
  }

  .advantage-media img {
    position: static;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

  .service-card.large {
    grid-row: span 1;
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 56px);
  }

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

  .hero-visual {
    height: 430px;
    min-height: 0;
  }

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

  .hero-proof-grid div {
    padding: 11px 10px;
  }

  .hero-proof-grid div + div {
    border-left: 1px solid var(--line);
  }

  .client-list,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .customer-title {
    grid-column: 1 / -1;
  }

  .trust-strip,
  .entity-facts,
  .advantage-list,
  .customer-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip article,
  .entity-facts div,
  .customer-matrix article {
    padding: 18px;
  }

  .trust-icon,
  .advantage-list span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 13px;
  }

  .trust-strip h3,
  .customer-matrix h3,
  .advantage-list h3 {
    font-size: 18px;
  }

  .trust-strip p,
  .customer-matrix article p,
  .advantage-list p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
  }

  .site-footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    min-width: 0;
    min-height: 56px;
    font-size: 18px;
    width: 100%;
  }

  .trust-section {
    padding-top: 54px;
  }

  .trust-strip article {
    min-height: 0;
  }

  .trust-icon {
    margin-bottom: 12px;
  }

  .trust-strip,
  .entity-facts,
  .advantage-list,
  .customer-matrix {
    gap: 10px;
  }

  .entity-facts {
    grid-template-columns: 1fr;
  }

  .customer-matrix > *,
  .entity-facts div,
  .trust-strip article {
    min-height: 0;
    padding: 14px;
  }

  .customer-title {
    padding-inline: 0;
  }

  .customer-matrix article::before {
    width: 30px;
    height: 3px;
    margin-bottom: 18px;
  }

  .advantage-list article {
    gap: 10px;
    padding: 14px;
  }

  .section {
    padding-block: 62px;
  }

  .service-card,
  .service-card.large {
    min-height: 380px;
  }

  .advantage-list article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .advantage-list p {
    grid-column: 1;
  }
}
