:root {
  --blue: #0b63b6;
  --blue-dark: #08427c;
  --blue-soft: #eef6ff;
  --red: #e43d30;
  --red-dark: #c52d22;
  --gold: #f7b733;
  --ink: #1d2b36;
  --muted: #667582;
  --line: #dbe5ee;
  --bg: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(21, 55, 86, 0.12);
  --container: 1180px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

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

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  clip: auto;
}

.top-strip {
  color: #e8f4ff;
  background: #07345f;
  font-size: 13px;
}

.top-strip-inner,
.header-main,
.nav-shell,
.contact-band-inner,
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p {
  margin: 7px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 3px 14px rgba(10, 45, 75, 0.08);
}

.header-main {
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
  color: var(--blue-dark);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.header-contact {
  min-width: 210px;
  padding-left: 42px;
  background:
    radial-gradient(circle at 18px 50%, var(--red) 0 9px, transparent 10px),
    radial-gradient(circle at 18px 50%, rgba(228, 61, 48, 0.14) 0 19px, transparent 20px);
}

.header-contact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.header-contact strong {
  display: block;
  color: var(--red);
  font-size: 25px;
  line-height: 1.2;
}

.nav-bar {
  background: var(--blue);
}

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

.site-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--blue-dark);
}

.site-search {
  position: relative;
  display: flex;
  width: 310px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 9px 10px;
  outline: none;
}

.site-search button {
  border: 0;
  padding: 0 14px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
}

.search-note {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 3;
  width: max-content;
  max-width: min(310px, calc(100vw - 32px));
  margin: 0;
  padding: 7px 10px;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(9, 41, 70, 0.14);
  font-size: 13px;
  line-height: 1.4;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

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

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
  background: #0b3560;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 28, 54, 0.92), rgba(8, 61, 112, 0.77) 52%, rgba(8, 61, 112, 0.26)),
    linear-gradient(0deg, rgba(3, 28, 54, 0.35), rgba(3, 28, 54, 0.12));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  min-height: 580px;
  padding: 54px 0;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 13px;
  color: #07345f;
  background: var(--gold);
  border-radius: 3px;
  font-weight: 800;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

.btn,
.quote-card button,
.service-grid a,
.news-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  padding: 12px 22px;
}

.btn-primary,
.quote-card button {
  color: #fff;
  background: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.quote-card button:hover,
.quote-card button:focus-visible {
  background: var(--red-dark);
}

.btn-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.quote-card {
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 26px;
}

.quote-card p {
  margin: 9px 0 14px;
  color: var(--muted);
}

.quote-card form {
  display: grid;
  gap: 10px;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  outline: none;
}

.quote-card textarea {
  resize: vertical;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 99, 182, 0.12);
}

.quote-preview {
  margin-top: 6px;
  padding: 13px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 4px;
}

.quote-preview[hidden] {
  display: none;
}

.quote-preview strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 17px;
}

.quote-preview dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.quote-preview div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px;
}

.quote-preview dt {
  color: var(--muted);
}

.quote-preview dd {
  margin: 0;
  color: var(--ink);
  word-break: break-word;
}

.keyword-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.keyword-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 13px 0;
  font-size: 14px;
}

.keyword-inner strong {
  color: var(--red);
}

.keyword-inner a {
  color: #405568;
}

.keyword-inner a:hover,
.keyword-inner a:focus-visible {
  color: var(--blue);
}

.section {
  padding: 74px 0;
}

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

.section-title.left {
  margin-left: 0;
  text-align: left;
}

.section-title span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 800;
}

.section-title h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
}

.section-title p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.stats-section {
  padding: 36px 0;
  background: #fff;
}

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

.stats-grid article {
  min-height: 124px;
  padding: 24px 18px;
  background: var(--blue-soft);
  border: 1px solid #cfe4f7;
  border-radius: var(--radius);
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: #44596b;
}

.service-section {
  background: var(--bg);
}

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

.service-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 9px 22px rgba(20, 53, 84, 0.07);
}

.service-grid div {
  padding: 26px;
}

.service-grid h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 22px;
}

.service-grid p {
  min-height: 78px;
  margin: 0 0 16px;
  color: var(--muted);
}

.service-grid a,
.news-card a {
  min-height: 38px;
  padding: 8px 14px;
  color: #fff;
  background: var(--blue);
}

.service-grid a:hover,
.news-card a:hover {
  background: var(--blue-dark);
}

.why-section {
  background: #fff;
}

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  min-height: 130px;
  padding: 20px 18px 18px 52px;
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.why-list li::before {
  position: absolute;
  left: 18px;
  top: 24px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.why-list b {
  display: block;
  color: var(--blue-dark);
  font-size: 19px;
}

.why-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.why-photo {
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.factory-section {
  background: var(--blue-soft);
}

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

.factory-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.factory-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.factory-gallery figure:hover img {
  transform: scale(1.04);
}

.factory-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 11px 14px;
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 66, 124, 0.92), rgba(8, 66, 124, 0.68));
  font-weight: 800;
}

.process-section {
  background: #fff;
}

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

.process-grid article {
  position: relative;
  min-height: 190px;
  padding: 20px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  text-align: center;
}

.process-grid strong {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}

.process-grid span {
  display: block;
  margin-top: 13px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 18px;
}

.process-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.clients-section {
  background:
    linear-gradient(135deg, rgba(8, 66, 124, 0.94), rgba(9, 91, 160, 0.9)),
    url("./assets/image11.png") center / cover;
  color: #fff;
}

.clients-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.clients-section .section-title h2,
.clients-section .section-title p {
  color: #fff;
}

.clients-section .section-title span {
  color: var(--gold);
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.client-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
}

.news-section {
  background: var(--bg);
}

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

.news-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-card h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 22px;
}

.news-card p {
  min-height: 78px;
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-band {
  padding: 28px 0;
  color: #fff;
  background: var(--red);
}

.contact-band span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
}

.contact-band strong {
  display: block;
  font-size: 28px;
  line-height: 1.25;
}

.contact-band .btn-primary {
  background: #fff;
  color: var(--red);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #09243f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.75fr;
  gap: 36px;
  padding: 46px 0;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-grid p {
  margin: 7px 0;
}

.qr-placeholder {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  color: #51687a;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.qr-image {
  width: 132px;
  height: 188px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border-radius: 4px;
}

.footer-bottom {
  padding: 13px 0;
  background: #06182a;
  font-size: 13px;
}

.process-page-hero {
  padding: 44px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 105, 54, 0.95), rgba(8, 66, 124, 0.86)),
    url("./assets/image11.png") center / cover;
}

.process-page-hero p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 700;
}

.process-page-hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
}

.process-page-hero span {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.process-catalog-section {
  padding: 42px 0 70px;
  background: #fff;
}

.process-catalog-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 40px;
  align-items: start;
}

.process-sidebar {
  overflow: hidden;
  background: #e8e8e8;
}

.sidebar-title {
  position: relative;
  padding: 30px 20px 28px;
  color: #fff;
  background: #17ad59;
  text-align: center;
}

.sidebar-title::after {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 0;
  height: 0;
  content: "";
  border-left: 135px solid transparent;
  border-right: 135px solid transparent;
  border-top: 34px solid #17ad59;
  transform: translateX(-50%);
}

.sidebar-title strong {
  display: block;
  font-size: 34px;
  line-height: 1.15;
}

.sidebar-title span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.process-sidebar nav {
  display: grid;
  gap: 22px;
  padding: 94px 22px 42px;
}

.process-sidebar nav a {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px 14px 48px;
  color: #25323b;
  background: #eeeeee;
  border: 1px solid #d2d2d2;
  font-size: 20px;
}

.process-sidebar nav a::before {
  position: absolute;
  left: 28px;
  width: 17px;
  height: 24px;
  content: "";
  background: #16aa58;
  clip-path: polygon(0 0, 60% 0, 60% 37%, 100% 37%, 100% 63%, 60% 63%, 60% 100%, 0 100%);
}

.process-catalog-main {
  min-width: 0;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  min-height: 58px;
  border-bottom: 1px solid #d8d8d8;
}

.catalog-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: #101820;
  font-size: 19px;
  font-weight: 800;
}

.catalog-tabs a::before {
  width: 9px;
  height: 16px;
  margin-right: 12px;
  content: "";
  background: #b9b9b9;
  clip-path: polygon(0 0, 65% 50%, 0 100%, 35% 50%);
}

.catalog-tabs a:first-child {
  color: #078b3e;
  border-bottom: 3px solid #078b3e;
}

.catalog-tabs a:first-child::before {
  background: #ff6a00;
}

.catalog-tabs .more-link {
  margin-left: auto;
  color: #ff6a00;
  font-size: 15px;
  font-weight: 700;
}

.catalog-tabs .more-link::before {
  content: none;
}

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

.catalog-card {
  text-align: center;
}

.photo-placeholder {
  display: grid;
  height: 208px;
  place-items: center;
  color: #8a969f;
  background:
    linear-gradient(135deg, rgba(22, 170, 88, 0.08), rgba(11, 99, 182, 0.08)),
    #f7f7f7;
  border: 1px solid #d8d8d8;
  font-size: 22px;
  font-weight: 800;
}

.catalog-image {
  width: 100%;
  height: 208px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #d8d8d8;
}

.catalog-image-contain {
  object-fit: contain;
  padding: 10px;
}

.catalog-card h2 {
  margin: 9px 0 16px;
  color: #111;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}

.card-actions .learn {
  background: #009640;
}

.card-actions .consult {
  background: #333333;
}

.card-actions a:hover,
.card-actions a:focus-visible {
  filter: brightness(0.92);
}

.craft-hero {
  padding: 52px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 52, 95, 0.95), rgba(0, 150, 64, 0.82)),
    url("./assets/image11.png") center / cover;
}

.craft-hero p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
}

.craft-hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.16;
}

.craft-hero span {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.craft-detail-section {
  padding: 52px 0 78px;
  background: #fff;
}

.craft-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
  align-items: start;
}

.craft-nav {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.craft-nav a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0 18px;
  color: #263846;
  background: #f7fafc;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.craft-nav a:last-child {
  border-bottom: 0;
}

.craft-nav a.active,
.craft-nav a:hover,
.craft-nav a:focus-visible {
  color: #fff;
  background: #009640;
}

.craft-content {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 9px 22px rgba(20, 53, 84, 0.07);
}

.craft-photo-placeholder {
  display: grid;
  height: 320px;
  place-items: center;
  color: #7a8b97;
  background:
    linear-gradient(135deg, rgba(0, 150, 64, 0.08), rgba(11, 99, 182, 0.08)),
    #f5f5f5;
  border: 1px solid #d8d8d8;
  font-size: 25px;
  font-weight: 800;
}

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

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

.craft-photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
}

.craft-content h2 {
  margin: 28px 0 12px;
  color: var(--blue-dark);
  font-size: 30px;
}

.craft-content h3 {
  margin: 24px 0 10px;
  color: #009640;
  font-size: 22px;
}

.craft-content p,
.craft-content li {
  color: var(--muted);
  font-size: 17px;
}

.craft-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.craft-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 20px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-weight: 800;
}

.craft-cta:hover,
.craft-cta:focus-visible {
  background: var(--red-dark);
}

.online-service {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 30;
  width: 260px;
  pointer-events: none;
}

.service-float {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: #628ff5;
  border: 0;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 12px 30px rgba(26, 75, 160, 0.22);
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
}

.service-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #628ff5;
  background: #fff;
  border-radius: 50%;
  font-size: 10px;
}

.service-panel {
  display: none;
  overflow: hidden;
  background: #fff;
  border: 8px solid #628ff5;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 18px 40px rgba(20, 50, 95, 0.22);
  pointer-events: auto;
}

.online-service.is-open .service-panel {
  display: block;
}

.service-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  color: #fff;
  background: #628ff5;
}

.service-panel-head strong {
  font-size: 18px;
}

.service-panel-head button {
  width: 28px;
  height: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.service-welcome {
  padding: 13px 14px;
  color: #334454;
  background: #f4f7ff;
  border-bottom: 1px solid #dfe7fa;
  font-size: 14px;
}

.service-welcome p {
  margin: 0;
}

.service-welcome p + p {
  margin-top: 5px;
}

.service-options {
  display: grid;
  padding: 0 10px;
  background: #fff;
}

.service-options a {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  color: #333;
  border-bottom: 1px solid #d8d8d8;
  font-size: 17px;
}

.service-options a:hover,
.service-options a:focus-visible {
  color: #fff;
  background: #009640;
}

.service-contact {
  display: grid;
  gap: 7px;
  padding: 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.service-contact .phone-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-weight: 800;
}

.service-contact .mail-link {
  color: var(--blue-dark);
  font-weight: 700;
}

.service-qr {
  width: 124px;
  height: 176px;
  margin: 3px auto 0;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

@media (max-width: 1080px) {
  .nav-shell {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 0;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .site-search {
    width: 100%;
  }

  .hero-inner,
  .why-layout,
  .clients-layout,
  .craft-layout {
    grid-template-columns: 1fr;
  }

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

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

  .process-sidebar nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 74px;
  }

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

@media (max-width: 760px) {
  .top-strip-inner,
  .header-main,
  .contact-band-inner,
  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-strip p:nth-child(2),
  .header-contact {
    display: none;
  }

  .header-main {
    min-height: 72px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

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

  .brand small {
    font-size: 12px;
  }

  .nav-toggle {
    position: absolute;
    right: 16px;
    top: 72px;
    display: block;
    z-index: 3;
  }

  .nav-shell {
    padding-top: 12px;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 42px 0;
  }

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

  .hero-copy > p:not(.hero-kicker) {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .service-grid,
  .stats-grid,
  .why-list,
  .factory-gallery,
  .process-grid,
  .catalog-grid,
  .news-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-sidebar nav {
    grid-template-columns: 1fr;
  }

  .catalog-tabs {
    gap: 10px 18px;
  }

  .catalog-tabs .more-link {
    margin-left: 0;
  }

  .photo-placeholder {
    height: 190px;
  }

  .catalog-image {
    height: 190px;
  }

  .craft-content {
    padding: 18px;
  }

  .craft-photo-placeholder {
    height: 220px;
  }

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

  .craft-photo-grid img {
    height: 220px;
  }

  .online-service {
    right: 14px;
    bottom: 14px;
    width: min(300px, calc(100vw - 28px));
  }

  .online-service:not(.is-open) {
    width: 150px;
  }

  .service-float {
    min-height: 48px;
    font-size: 17px;
  }

  .service-grid p,
  .news-card p {
    min-height: auto;
  }

  .why-photo img,
  .factory-gallery img {
    height: 250px;
  }

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