:root {
  --smyr-blue: #1478ff;
  --smyr-blue-dark: #0a4fb5;
  --smyr-text: #0f172a;
  --smyr-container-width: 1680px;
  --smyr-page-gutter: clamp(24px, 4vw, 72px);
}

.smyr-search-hero {
  background:
    linear-gradient(118deg, rgba(7, 31, 61, .88), rgba(12, 99, 223, .66)),
    url("../../res/xinw/20260126/c290f06636a59d78.jpg") center / cover no-repeat;
}

.smyr-search-section {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 62%);
}

.smyr-search-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.smyr-search-top h2,
.smyr-search-empty h2 {
  margin: 8px 0 10px;
  color: #071f3d;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.18;
}

.smyr-search-top p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
}

.smyr-search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 58, 120, .08);
}

.smyr-search-page-form input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: #0f172a;
  font-size: 16px;
  background: transparent;
}

.smyr-search-page-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  background: #1478ff;
  transition: background .2s ease, transform .2s ease;
}

.smyr-search-page-form button:hover {
  background: #0c63df;
  transform: translateY(-1px);
}

.smyr-search-page-form svg {
  width: 18px;
  height: 18px;
}

.smyr-search-list {
  display: grid;
  gap: 18px;
}

.smyr-search-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 58, 120, .07);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.smyr-search-card:hover {
  border-color: rgba(20, 120, 255, .42);
  box-shadow: 0 24px 70px rgba(15, 58, 120, .12);
  transform: translateY(-2px);
}

.smyr-search-card-img {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #e2e8f0;
  aspect-ratio: 4 / 3;
}

.smyr-search-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.smyr-search-card:hover .smyr-search-card-img img {
  transform: scale(1.04);
}

.smyr-search-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.smyr-search-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 13px;
}

.smyr-search-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0a4fb5;
  background: #eef8ff;
}

.smyr-search-card h3 {
  margin: 0 0 10px;
  color: #071f3d;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.28;
}

.smyr-search-card h3 a {
  color: inherit;
}

.smyr-search-card h3 i {
  color: #1478ff;
  font-style: normal;
}

.smyr-search-card p {
  margin: 0 0 16px;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.smyr-search-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #0c63df;
  font-weight: 800;
}

.smyr-search-more svg {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.smyr-search-more:hover svg {
  transform: translateX(3px);
}

.smyr-search-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.smyr-search-pagination a,
.smyr-search-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 8px;
  color: #334155;
  background: #fff;
}

.smyr-search-pagination a.is-active,
.smyr-search-pagination a:hover {
  color: #fff;
  border-color: #1478ff;
  background: #1478ff;
}

.smyr-search-empty {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 58, 120, .07);
}

.smyr-search-empty > svg {
  width: 58px;
  height: 58px;
  color: #1478ff;
}

.smyr-search-empty .smyr-search-page-form {
  max-width: 520px;
}

@media (max-width: 900px) {
  .smyr-search-top,
  .smyr-search-card {
    grid-template-columns: 1fr;
  }

  .smyr-search-card-img {
    max-height: 260px;
  }
}

@media (max-width: 640px) {
  .smyr-search-page-form {
    grid-template-columns: 1fr;
  }

  .smyr-search-page-form button {
    width: 100%;
  }

  .smyr-search-card {
    padding: 14px;
    gap: 16px;
  }

  .smyr-search-card h3 {
    font-size: 20px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  padding-top: var(--smyr-header-height, 100px);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

img {
  max-width: 100%;
}

.smyr-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .96);
  transition: box-shadow .28s ease, transform .28s ease;
}

.smyr-header-inner {
  position: relative;
  margin-inline: auto;
}

.smyr-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
}

.smyr-header-main {
  position: static;
}

.smyr-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  gap: 18px;
  font-size: 20px;
  font-weight: 650;
}

.smyr-nav-item {
  position: relative;
}

.smyr-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.smyr-nav-link::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--smyr-blue), #47b7ff);
  opacity: 0;
  transform: scaleX(.36);
  transition: opacity .25s ease, transform .25s ease;
}

.smyr-nav-link:hover,
.smyr-nav-link.active {
  color: var(--smyr-blue-dark);
  background: #f2f8ff;
}

.smyr-nav-link:hover::after,
.smyr-nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.smyr-nav-link svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
  transition: transform .25s ease;
}

.smyr-nav-item:hover .smyr-nav-link svg,
.smyr-nav-item:focus-within .smyr-nav-link svg {
  transform: rotate(180deg);
}

.smyr-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 60;
  min-width: 190px;
  padding: 10px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(15, 78, 145, .16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.smyr-dropdown::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
  content: "";
}

.smyr-nav-item:hover .smyr-dropdown,
.smyr-nav-item:focus-within .smyr-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.smyr-dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 12px;
  color: #475569;
  font-size: 16px;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.smyr-dropdown a:hover {
  background: #f2f8ff;
  color: var(--smyr-blue-dark);
  transform: translateX(3px);
}

.smyr-phone,
.smyr-icon-btn,
.smyr-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--smyr-text);
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.smyr-phone {
  gap: 8px;
  min-width: 154px;
  border-radius: 999px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 650;
}

.smyr-icon-btn,
.smyr-mobile-toggle {
  width: 42px;
  border-radius: 999px;
}

.smyr-phone:hover,
.smyr-icon-btn:hover,
.smyr-mobile-toggle:hover {
  transform: translateY(-2px);
  border-color: #b9d8ff;
  background: #f4f9ff;
  color: var(--smyr-blue-dark);
  box-shadow: 0 12px 26px rgba(20, 120, 255, .12);
}

.smyr-search-panel,
.smyr-lang-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.smyr-search-panel.is-open,
.smyr-lang-panel.is-open,
.smyr-lang-wrap:hover .smyr-lang-panel,
.smyr-lang-wrap:focus-within .smyr-lang-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.smyr-search-panel {
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(330px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(15, 78, 145, .16);
  backdrop-filter: blur(16px);
}

.smyr-search-input {
  min-width: 0;
  flex: 1;
  height: 40px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: #f8fbff;
  padding: 0 15px;
  color: var(--smyr-text);
}

.smyr-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--smyr-blue);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.smyr-search-submit:hover {
  transform: translateX(2px);
  background: var(--smyr-blue-dark);
}

.smyr-lang-panel {
  z-index: 70;
  min-width: 132px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(15, 78, 145, .15);
}

.smyr-lang-panel a {
  display: block;
  padding: 12px 16px;
  color: #475569;
  font-size: 16px;
  transition: color .2s ease, background-color .2s ease;
}

.smyr-lang-panel a:hover {
  background: #f2f8ff;
  color: var(--smyr-blue-dark);
}

.smyr-mobile-menu {
  display: none;
  border-top: 1px solid #eef2f7;
  background: rgba(255, 255, 255, .98);
}

.smyr-mobile-menu.is-open {
  display: block;
}

.smyr-mobile-link {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 14px;
  transition: color .2s ease, background-color .2s ease;
}

.smyr-mobile-link:hover {
  background: #f2f8ff;
  color: var(--smyr-blue-dark);
}

.smyr-mobile-group {
  border-radius: 14px;
}

.smyr-mobile-group summary {
  display: flex;
  min-height: 46px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  padding: 0 14px;
  transition: color .2s ease, background-color .2s ease;
}

.smyr-mobile-group summary::-webkit-details-marker {
  display: none;
}

.smyr-mobile-group summary:hover {
  background: #f2f8ff;
  color: var(--smyr-blue-dark);
}

.smyr-mobile-group summary svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.smyr-mobile-group[open] summary svg {
  transform: rotate(180deg);
}

.smyr-mobile-group div {
  display: grid;
  gap: 4px;
  padding: 4px 0 8px 16px;
}

.smyr-mobile-group div a {
  display: flex;
  min-height: 38px;
  align-items: center;
  border-radius: 12px;
  padding: 0 12px;
  color: #64748b;
  font-size: 16px;
  transition: color .2s ease, background-color .2s ease;
}

.smyr-mobile-group div a:hover {
  background: #f8fbff;
  color: var(--smyr-blue-dark);
}

.smyr-banner-swiper {
  width: 100%;
  height: auto;
  background: #f8fbff;
  animation: smyr-rise .72s ease both;
}

.smyr-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.smyr-banner-swiper > .smyr-swiper-btn {
  display: none !important;
}

.smyr-swiper-pagination {
  position: absolute;
  left: 50% !important;
  bottom: 26px !important;
  z-index: 5;
  width: auto !important;
  transform: translateX(-50%);
}

.smyr-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  opacity: 1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .16);
  transition: width .25s ease, background-color .25s ease;
}

.smyr-swiper-pagination .swiper-pagination-bullet-active {
  width: 34px;
  background: var(--smyr-blue);
}

.smyr-swiper-btn {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--smyr-blue-dark);
  opacity: 1;
  transform: translateY(-50%);
  box-shadow: 0 18px 46px rgba(15, 78, 145, .22);
  backdrop-filter: blur(14px);
  transition: color .25s ease, border-color .25s ease, transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.smyr-swiper-btn:hover {
  border-color: #93c5fd;
  background: var(--smyr-blue);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 22px 54px rgba(20, 120, 255, .32);
}

.smyr-swiper-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.smyr-swiper-prev {
  left: clamp(18px, 4vw, 64px);
}

.smyr-swiper-next {
  right: clamp(18px, 4vw, 64px);
}

@keyframes smyr-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.smyr-section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}

.smyr-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(20, 120, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 120, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.smyr-container {
  position: relative;
  z-index: 1;
  width: min(var(--smyr-container-width), calc(100% - var(--smyr-page-gutter)));
  margin: 0 auto;
}

.smyr-section-head {
  max-width: 960px;
  margin: 0 auto 56px;
  text-align: center;
}

.smyr-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  padding: 7px 14px;
  color: var(--smyr-blue-dark);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
}

.smyr-section-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 48px;
  font-weight: 760;
  line-height: 1.18;
}

.smyr-section-head p {
  margin: 20px auto 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.9;
}

.smyr-advantages {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.smyr-advantage-layout {
  display: grid;
  grid-template-columns: minmax(420px, .72fr) minmax(0, 1.38fr);
  gap: 54px;
  align-items: start;
}

.smyr-advantage-lead {
  position: sticky;
  top: 126px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: var(--smyr-advantage-lead-height, auto);
  max-height: var(--smyr-advantage-lead-height, none);
}

.smyr-advantage-lead h2 {
  margin: 0;
  max-width: 560px;
  color: #0f172a;
  font-size: 50px;
  font-weight: 760;
  line-height: 1.18;
}

.smyr-advantage-lead p {
  margin: 20px 0 30px;
  max-width: 560px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.95;
}

.smyr-advantage-photo {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf4ff;
  box-shadow: 0 24px 70px rgba(15, 78, 145, .14);
}

.smyr-advantage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.smyr-advantage-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(7, 31, 61, .78) 100%);
}

.smyr-advantage-photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.smyr-advantage-photo-caption strong,
.smyr-advantage-photo-caption span {
  display: block;
}

.smyr-advantage-photo-caption strong {
  font-size: 26px;
  font-weight: 760;
}

.smyr-advantage-photo-caption span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.65;
}

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

.smyr-advantage-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  min-height: 196px;
  border: 1px solid #e2ecfa;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  padding: 22px 24px;
  box-shadow: 0 14px 44px rgba(15, 78, 145, .07);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}

.smyr-advantage-item:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  background: #fff;
  box-shadow: 0 22px 56px rgba(20, 120, 255, .14);
}

.smyr-advantage-item > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--smyr-blue-dark);
  padding: 9px;
}

.smyr-advantage-item span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--smyr-blue);
  font-size: 15px;
  font-weight: 760;
}

.smyr-advantage-item h3 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 720;
  line-height: 1.35;
}

.smyr-advantage-item p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.smyr-products {
  background: #fff;
}

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

.smyr-product-card {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e2ecfa;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-product-card:hover {
  transform: translateY(-7px);
  border-color: #bfdbfe;
  box-shadow: 0 24px 64px rgba(20, 120, 255, .14);
}

.smyr-product-card-img {
  display: block;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #eef6ff;
}

.smyr-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.smyr-product-card h3 a {
  color: inherit;
}

.smyr-product-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  padding: 36px;
}

.smyr-case-body > span {
  color: var(--smyr-blue);
  font-size: 15px;
  font-weight: 760;
}

.smyr-product-card h3,
.smyr-quality-grid h3,
.smyr-case-body h3 {
  margin: 0;
  color: #0f172a;
  font-size: 26px;
  font-weight: 720;
  line-height: 1.35;
}

.smyr-case-body h3 a {
  color: inherit;
}

.smyr-product-card p,
.smyr-quality-grid p,
.smyr-case-body p,
.smyr-case-info {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.smyr-product-card p {
  margin: 12px 0 0;
}

.smyr-product-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 46px;
  margin-top: 28px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--smyr-blue-dark);
  font-size: 16px;
  font-weight: 760;
  background: #f8fbff;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.smyr-product-more svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.3;
  transition: transform .25s ease;
}

.smyr-product-more:hover {
  transform: translateY(-2px);
  border-color: var(--smyr-blue);
  background: var(--smyr-blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(20, 120, 255, .22);
}

.smyr-product-more:hover svg {
  transform: translateX(3px);
}

.smyr-capability {
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
}

.smyr-capability-layout,
.smyr-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
  gap: 64px;
  align-items: center;
}

.smyr-capability-copy h2,
.smyr-brand-band h2,
.smyr-contact-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: 50px;
  font-weight: 760;
  line-height: 1.22;
}

.smyr-capability-copy p,
.smyr-brand-band p,
.smyr-contact-copy p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.95;
}

.smyr-capability-copy p {
  margin: 18px 0 0;
}

.smyr-capability-text {
  margin: 28px 0 36px;
}

.smyr-capability-text p {
  margin: 10px 0 0 !important;
  line-height: 1.76;
}

.smyr-capability-text p:first-child {
  margin-top: 0 !important;
}

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

.smyr-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  padding: 14px 18px;
  color: var(--smyr-blue-dark);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.35;
  box-shadow: 0 12px 32px rgba(15, 78, 145, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.smyr-tags span:hover {
  transform: translateY(-3px);
  border-color: var(--smyr-blue);
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 120, 255, .13);
}

.smyr-tags i,
.smyr-tags svg {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--smyr-blue);
  padding: 8px;
}

.smyr-tags svg {
  stroke: currentColor;
}

.smyr-capability-panel {
  display: grid;
  gap: 16px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(15, 78, 145, .13);
}

.smyr-capability-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.smyr-capability-metric {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: #f8fbff;
  padding: 18px;
}

.smyr-capability-metric strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 48px;
  border-radius: 8px;
  background: var(--smyr-blue);
  color: #fff;
  font-size: 17px;
}

.smyr-capability-metric span {
  color: #334155;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.smyr-brands {
  position: relative;
  overflow: hidden;
  background: #071f3d;
  background-image: linear-gradient(90deg, rgba(7, 31, 61, .76) 0%, rgba(7, 31, 61, .68) 48%, rgba(7, 31, 61, .8) 100%), var(--smyr-brand-bg);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.smyr-brands::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 31, 61, .12), rgba(7, 31, 61, .2));
  pointer-events: none;
}

.smyr-product-home-brands {
  margin: 0;
  border-radius: 0;
}

.smyr-brand-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: 60px;
  align-items: center;
}

.smyr-brand-band h2,
.smyr-brand-band p {
  color: #fff;
}

.smyr-brand-band p {
  color: rgba(255, 255, 255, .72);
  margin-top: 28px;
  line-height: 1.68;
}

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

.smyr-brand-list span {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 219, 254, .24);
  border-radius: 8px;
  background: #fff;
  color: #fff;
  font-size: 24px;
  font-weight: 720;
  overflow: hidden;
  padding: 20px 26px;
  transition: background-color .25s ease, transform .25s ease, border-color .25s ease;
}

.smyr-brand-list span:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 197, 253, .56);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.smyr-brand-list img {
  display: block;
  width: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.smyr-brand-list span:hover img {
  transform: scale(1.04);
}

.smyr-quality {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.smyr-quality-layout {
  display: grid;
  grid-template-columns: minmax(440px, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 52px;
}

.smyr-quality-visual {
  position: relative;
  min-height: 600px;
  border: 1px solid #e2ecfa;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 70px rgba(15, 78, 145, .12);
}

.smyr-quality-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  transition: opacity .22s ease, transform .36s ease;
}

.smyr-quality-visual img.is-changing {
  opacity: .36;
  transform: scale(1.015);
}

.smyr-quality-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0) 0%, rgba(7, 31, 61, .82) 100%);
}

.smyr-quality-visual div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.smyr-quality-visual strong {
  font-size: 34px;
  font-weight: 780;
  line-height: 1;
}

.smyr-quality-visual span {
  max-width: 280px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
}

.smyr-quality-list {
  display: grid;
  gap: 16px;
}

.smyr-quality-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid #e2ecfa;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  padding: 20px 24px;
  box-shadow: 0 14px 40px rgba(15, 78, 145, .06);
  cursor: default;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.smyr-quality-list article:hover,
.smyr-quality-list article.is-active {
  transform: translateX(6px);
  border-color: #bfdbfe;
  background: #fff;
  box-shadow: 0 22px 54px rgba(20, 120, 255, .12);
}

.smyr-quality-list i,
.smyr-quality-list article > svg {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--smyr-blue);
  padding: 16px;
}

.smyr-quality-list article.is-active i,
.smyr-quality-list article.is-active > svg {
  background: var(--smyr-blue);
  color: #fff;
}

.smyr-quality-list article > div {
  grid-column: 2 / -1;
  min-width: 0;
}

.smyr-quality-list h3 {
  margin: 0;
  font-size: 24px;
}

.smyr-quality-list p {
  margin: 8px 0 0;
  line-height: 1.75;
}

.smyr-cases {
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
}

.smyr-case-slider-wrap {
  position: relative;
  margin-top: 8px;
  padding: 8px 24px 34px;
}

.smyr-case-swiper {
  overflow: visible;
  clip-path: inset(-10px 0 -18px 0);
}

.smyr-case-swiper .swiper-wrapper {
  align-items: stretch;
}

.smyr-case-swiper .swiper-slide {
  height: auto;
}

.smyr-case-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.smyr-case-swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 4) {
  display: none;
}

.smyr-case-card {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 78, 145, .055);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-case-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 30px rgba(20, 120, 255, .105);
}

.smyr-case-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: 290px;
  background: #eef6ff;
}

.smyr-case-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.smyr-case-card:hover .smyr-case-img img {
  transform: scale(1.04);
}

.smyr-case-body {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 14px;
  padding: 32px 34px 36px;
}

.smyr-case-info,
.smyr-case-body p {
  margin: 4px 0 0;
}

.smyr-case-info strong {
  color: #0f172a;
  font-weight: 760;
}

.smyr-case-info br {
  display: block;
  content: "";
  margin: 6px 0;
}

.smyr-case-btn {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 2;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--smyr-blue);
  box-shadow: 0 16px 40px rgba(15, 78, 145, .12);
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.smyr-case-btn:hover {
  transform: translateY(-2px);
  border-color: var(--smyr-blue);
  background: var(--smyr-blue);
  color: #fff;
}

.smyr-case-btn svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.4;
}

.smyr-case-prev {
  left: 0;
}

.smyr-case-next {
  right: 0;
}

.smyr-case-pagination {
  display: none;
  justify-content: center;
  gap: 8px;
}

.smyr-case-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #bfdbfe;
  opacity: 1;
}

.smyr-case-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--smyr-blue);
}

.smyr-page {
  background: #fff;
}

.smyr-page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 86px;
  background:
    linear-gradient(120deg, rgba(7, 31, 61, .94), rgba(10, 79, 181, .78)),
    var(--smyr-page-hero-bg, none) center / cover no-repeat;
  color: #fff;
}

.smyr-page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 82%, transparent 100%);
}

.smyr-case-page-hero::before {
  display: none;
}

.smyr-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.smyr-page-hero .smyr-kicker {
  border-color: rgba(147, 197, 253, .5);
  background: rgba(20, 120, 255, .16);
  color: #dbeafe;
}

.smyr-page-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: 58px;
  font-weight: 780;
  line-height: 1.14;
}

.smyr-page-hero p {
  max-width: 900px;
  margin: 22px 0 0;
  color: rgba(226, 232, 240, .88);
  font-size: 19px;
  line-height: 1.9;
}

.smyr-breadcrumb {
  border-bottom: 1px solid #e2ecfb;
  background: #fff;
}

.smyr-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.smyr-breadcrumb-inner svg {
  width: 22px;
  height: 22px;
  color: var(--smyr-blue);
  filter: drop-shadow(0 6px 12px rgba(20, 120, 255, .24));
}

.smyr-breadcrumb-inner a {
  color: #0f172a;
  transition: color .25s ease;
}

.smyr-breadcrumb-inner a:hover {
  color: var(--smyr-blue-dark);
}

.smyr-breadcrumb-inner span:last-child {
  color: #334155;
}

.smyr-case-intro {
  background: #fff;
}

.smyr-case-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
  border: 1px solid #e2ecfa;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f5f9ff 100%);
  padding: 46px 52px;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .075);
}

.smyr-case-intro-grid h2,
.smyr-case-summary-card h2,
.smyr-case-cta-inner h2 {
  margin: 0;
  color: #0f172a;
  font-size: 44px;
  font-weight: 760;
  line-height: 1.22;
}

.smyr-case-intro-copy {
  display: grid;
  gap: 16px;
}

.smyr-case-intro-copy p,
.smyr-case-summary-card p,
.smyr-case-cta-inner p {
  margin: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.9;
}

.smyr-case-list-section {
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
}

.smyr-album-section {
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
  padding-top: 70px;
}

.smyr-album-page-hero {
  background:
    linear-gradient(120deg, rgba(7, 31, 61, .9), rgba(10, 79, 181, .72)),
    var(--smyr-page-hero-bg, none) center / cover no-repeat;
}

.smyr-album-page-hero::after {
  position: absolute;
  right: max(4vw, 42px);
  bottom: -72px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(219, 234, 254, .3);
  border-radius: 50%;
  content: "";
}

.smyr-about-page-hero {
  background:
    linear-gradient(120deg, rgba(7, 31, 61, .92), rgba(10, 79, 181, .7)),
    var(--smyr-page-hero-bg, none) center / cover no-repeat;
}

.smyr-about-profile {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f6fbff 0%, #fff 72%),
    linear-gradient(90deg, rgba(20, 120, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.smyr-about-profile-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 246, 255, .72)),
    #fff;
  padding: clamp(30px, 4vw, 62px);
  box-shadow: 0 26px 76px rgba(15, 78, 145, .11);
}

.smyr-about-profile-shell::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--smyr-blue), #45c27a);
}

.smyr-about-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .76fr);
  gap: clamp(34px, 4.6vw, 72px);
  align-items: center;
}

.smyr-about-profile-copy h2 {
  max-width: 920px;
  margin: 14px 0 22px;
  color: #0f172a;
  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 820;
  line-height: 1.15;
}

.smyr-about-profile-lead {
  max-width: 1040px;
}

.smyr-about-profile-lead .smyr-about-rich {
  color: #475569;
  font-size: 17px;
  line-height: 1.95;
}

.smyr-about-profile-lead .smyr-about-rich p {
  margin-bottom: 16px;
}

.smyr-about-profile-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.smyr-about-profile-points span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: #0f172a;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 740;
}

.smyr-about-profile-points svg {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--smyr-blue);
  padding: 9px;
}

.smyr-about-profile-copy .smyr-kicker {
  background: #eaf4ff;
}

.smyr-about-profile-media {
  position: relative;
  overflow: visible;
  margin: 0;
  border: 1px solid #dbeafe;
  border-radius: 0;
  background: #eef6ff;
  box-shadow: 0 22px 60px rgba(15, 78, 145, .14);
}

.smyr-about-profile-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 31, 61, .22));
  pointer-events: none;
}

.smyr-about-profile-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.smyr-about-profile-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  background: rgba(7, 31, 61, .76);
  color: #fff;
  padding: 15px 18px;
  backdrop-filter: blur(10px);
}

.smyr-about-profile-media figcaption strong {
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0;
}

.smyr-about-profile-media figcaption span {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.55;
}

.smyr-about-section-head {
  max-width: 920px;
}

.smyr-about-album {
  position: relative;
  overflow: hidden;
  background: #fff;
}

body.smyr-lightbox-open .smyr-about-page .smyr-about-album {
  z-index: 130;
}

.smyr-about-album-wrap {
  position: relative;
  padding: 0 58px 48px;
}

.smyr-about-album-swiper {
  overflow: hidden;
}

.smyr-about-album-card {
  display: grid;
  overflow: hidden;
  width: 100%;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
  padding: 0;
  text-align: left;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-about-album-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 24px 64px rgba(20, 120, 255, .14);
}

.smyr-about-album-card span {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef6ff;
}

.smyr-about-album-card span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 31, 61, 0) 50%, rgba(7, 31, 61, .18) 100%);
}

.smyr-about-album-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.smyr-about-album-card:hover img {
  transform: scale(1.04);
}

.smyr-about-album-card strong {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 18px 16px 20px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
  text-align: center;
}

.smyr-about-album-btn {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 4;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--smyr-blue-dark);
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(15, 78, 145, .14);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.smyr-about-album-btn:hover {
  transform: translateY(-2px);
  background: var(--smyr-blue);
  color: #fff;
}

.smyr-about-album-prev {
  left: 0;
}

.smyr-about-album-next {
  right: 0;
}

.smyr-about-album-btn svg {
  width: 22px;
  height: 22px;
}

.smyr-about-album-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
}

.smyr-about-album-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #bfdbfe;
  opacity: 1;
}

.smyr-about-album-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--smyr-blue);
}

.smyr-about-area {
  background:
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%),
    linear-gradient(90deg, rgba(20, 120, 255, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.smyr-about-area-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #0a4fb5, #1478ff);
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
  box-shadow: 0 28px 78px rgba(15, 78, 145, .2);
}

.smyr-about-area-globe {
  position: absolute;
  top: 5%;
  right: 19%;
  bottom: -10%;
  width: min(860px, 54vw);
  z-index: 0;
  height: auto;
  pointer-events: none;
  opacity: .44;
  mix-blend-mode: screen;
}

.smyr-about-area-copy,
.smyr-about-area-list {
  position: relative;
  z-index: 1;
}

.smyr-about-area-copy .smyr-kicker {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.smyr-about-area-copy h2 {
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 820;
  line-height: 1.15;
}

.smyr-about-area-copy p {
  max-width: 680px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.86;
}

.smyr-about-area-copy .smyr-primary-link {
  background: #fff;
  color: var(--smyr-blue-dark);
}

.smyr-about-area-copy .smyr-primary-link:hover {
  background: #eaf3ff;
  color: var(--smyr-blue-dark);
}

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

.smyr-about-area-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  padding: 18px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.smyr-about-area-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.smyr-about-area-list span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 16px;
  font-weight: 820;
}

.smyr-about-area-list strong {
  color: #fff;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
}

.smyr-about-main {
  background:
    linear-gradient(180deg, #f5f9ff 0%, #fff 42%),
    linear-gradient(90deg, rgba(20, 120, 255, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.smyr-about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.smyr-about-side,
.smyr-about-article,
.smyr-about-capability article,
.smyr-about-flow {
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 54px rgba(15, 78, 145, .08);
}

.smyr-about-side {
  position: sticky;
  top: calc(var(--smyr-header-height, 100px) + 28px);
  display: grid;
  gap: 18px;
  padding: 34px 30px;
}

.smyr-about-side h2 {
  margin: 0;
  color: #0f172a;
  font-size: 32px;
  font-weight: 780;
  line-height: 1.24;
}

.smyr-about-side p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.82;
}

.smyr-about-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 6px;
}

.smyr-about-stat-grid div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: #f5f9ff;
  padding: 16px;
}

.smyr-about-stat-grid strong {
  color: var(--smyr-blue);
  font-size: 28px;
  font-weight: 820;
  line-height: 1;
}

.smyr-about-stat-grid span {
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.smyr-about-article {
  padding: 42px 46px;
}

.smyr-about-article-head {
  margin-bottom: 26px;
}

.smyr-about-article-head span {
  color: var(--smyr-blue);
  font-size: 14px;
  font-weight: 760;
  text-transform: uppercase;
}

.smyr-about-article-head h2 {
  margin: 10px 0 0;
  color: #0f172a;
  font-size: 38px;
  font-weight: 780;
  line-height: 1.22;
}

.smyr-about-rich {
  color: #475569;
  font-size: 17px;
  line-height: 1.95;
}

.smyr-about-rich p {
  margin: 0 0 18px;
}

.smyr-about-rich p:last-child {
  margin-bottom: 0;
}

.smyr-about-rich img {
  max-width: 100%;
  border-radius: 8px;
}

.smyr-about-capability {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.smyr-about-capability article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 28px;
}

.smyr-about-capability svg {
  width: 34px;
  height: 34px;
  color: var(--smyr-blue);
  stroke-width: 1.9;
}

.smyr-about-capability h3 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 760;
}

.smyr-about-capability p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.76;
}

.smyr-about-flow {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
}

.smyr-about-flow h2 {
  margin: 10px 0 0;
  color: #0f172a;
  font-size: 30px;
  font-weight: 780;
  line-height: 1.24;
}

.smyr-about-flow ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smyr-about-flow li {
  display: grid;
  gap: 8px;
  justify-items: center;
  border-radius: 8px;
  background: #f5f9ff;
  padding: 18px 12px;
  text-align: center;
}

.smyr-about-flow li span {
  color: var(--smyr-blue);
  font-size: 15px;
  font-weight: 800;
}

.smyr-about-flow li strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 740;
}

.smyr-album-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.smyr-album-head h2 {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: 42px;
  font-weight: 760;
  line-height: 1.22;
}

.smyr-album-head p {
  max-width: 560px;
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.86;
}

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

.smyr-album-card {
  display: grid;
  overflow: hidden;
  width: 100%;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
  padding: 0;
  text-align: left;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-album-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  color: inherit;
  box-shadow: 0 24px 64px rgba(20, 120, 255, .14);
}

.smyr-album-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef6ff;
}

.smyr-album-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 31, 61, 0) 55%, rgba(7, 31, 61, .14) 100%);
}

.smyr-album-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.smyr-album-card:hover .smyr-album-card-media img {
  transform: scale(1.04);
}

.smyr-album-card-body {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 20px 18px 22px;
  text-align: center;
}

.smyr-album-card-body h2 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 740;
  line-height: 1.35;
}

.smyr-album-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  padding: 56px 24px;
  color: #64748b;
  text-align: center;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
}

.smyr-album-empty svg {
  width: 42px;
  height: 42px;
  color: var(--smyr-blue);
}

.smyr-album-empty strong {
  color: #0f172a;
  font-size: 22px;
}

body.smyr-lightbox-open {
  overflow: hidden;
}

.smyr-album-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.smyr-album-lightbox.is-open {
  display: flex;
}

.smyr-album-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .82);
  cursor: zoom-out;
}

.smyr-album-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  max-height: calc(100vh - 64px);
  width: min(1060px, 100%);
  gap: 16px;
  justify-items: center;
}

.smyr-album-lightbox-panel img {
  display: block;
  max-height: calc(100vh - 150px);
  width: auto;
  max-width: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
}

.smyr-album-lightbox-panel strong {
  color: #fff;
  font-size: 20px;
  font-weight: 740;
  line-height: 1.45;
  text-align: center;
}

.smyr-album-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.smyr-album-lightbox-close svg {
  width: 20px;
  height: 20px;
}

.smyr-album-lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.smyr-album-lightbox-nav:hover {
  background: var(--smyr-blue);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.smyr-album-lightbox-nav svg {
  width: 26px;
  height: 26px;
}

.smyr-album-lightbox-prev {
  left: clamp(18px, 4vw, 72px);
}

.smyr-album-lightbox-next {
  right: clamp(18px, 4vw, 72px);
}

.smyr-album-lightbox.is-single .smyr-album-lightbox-nav {
  display: none;
}

.smyr-product-list-section {
  background:
    linear-gradient(180deg, #f5f9ff 0%, #fff 100%),
    linear-gradient(90deg, rgba(20, 120, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.smyr-product-more-types {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2ecfa;
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 14%, #fff 100%);
  box-shadow: inset 0 18px 34px rgba(15, 78, 145, .035);
}

.smyr-product-more-types::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(20, 120, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 120, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.smyr-product-more-types .smyr-container {
  position: relative;
  z-index: 1;
}

.smyr-product-more-types .smyr-section-head h2 {
  color: #0f172a;
}

.smyr-product-more-types .smyr-kicker {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--smyr-blue-dark);
}

.smyr-product-more-slider-wrap {
  position: relative;
  padding: 8px 58px 42px;
}

.smyr-product-more-swiper {
  overflow: hidden;
}

.smyr-product-more-swiper .swiper-slide {
  height: auto;
}

.smyr-product-more-swiper .smyr-product-list-card {
  height: 100%;
  border-color: rgba(191, 219, 254, .86);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 78, 145, .045);
}

.smyr-product-more-swiper .smyr-product-list-card:hover {
  border-color: rgba(20, 120, 255, .44);
  box-shadow: 0 16px 38px rgba(15, 78, 145, .075);
}

.smyr-product-more-swiper .smyr-product-list-body {
  min-height: 112px;
  align-content: center;
  padding: 24px 28px;
}

.smyr-product-more-btn {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 4;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--smyr-blue-dark);
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(15, 78, 145, .14);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.smyr-product-more-btn:hover {
  transform: translateY(-2px);
  background: var(--smyr-blue);
  color: #fff;
}

.smyr-product-more-prev {
  left: 0;
}

.smyr-product-more-next {
  right: 0;
}

.smyr-product-more-btn svg {
  width: 22px;
  height: 22px;
}

.smyr-product-more-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  justify-content: center;
}

.smyr-product-more-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #bfdbfe;
  opacity: 1;
}

.smyr-product-more-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--smyr-blue);
}

.smyr-product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.smyr-product-list-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-product-list-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 24px 64px rgba(20, 120, 255, .14);
}

.smyr-product-list-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef6ff;
}

.smyr-product-list-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.smyr-product-list-card:hover .smyr-product-list-img img {
  transform: scale(1.04);
}

.smyr-product-list-body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px 28px 30px;
}

.smyr-product-list-top h2 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 740;
  line-height: 1.35;
}

.smyr-product-list .smyr-case-meta {
  gap: 8px;
}

.smyr-product-list .smyr-case-meta > span {
  min-height: 34px;
  padding: 0 12px;
  font-size: 14px;
}

.smyr-product-list .smyr-case-info {
  display: -webkit-box;
  overflow: hidden;
  color: #64748b;
  font-size: 16px;
  line-height: 1.78;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.smyr-product-list-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--smyr-blue);
  font-size: 15px;
  font-weight: 720;
}

.smyr-product-list-more svg {
  width: 16px;
  height: 16px;
}

.smyr-product-hub-hero {
  background:
    linear-gradient(120deg, rgba(7, 31, 61, .94), rgba(10, 79, 181, .72)),
    var(--smyr-page-hero-bg, none) center / cover no-repeat;
}

.smyr-product-hero-note {
  max-width: 880px;
  font-size: 18px !important;
  color: rgba(226, 232, 240, .86) !important;
}

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

.smyr-product-hub .smyr-secondary-link,
.smyr-product-detail-page .smyr-secondary-link {
  border-color: rgba(191, 219, 254, .34);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.smyr-product-hub .smyr-secondary-link:hover,
.smyr-product-detail-page .smyr-secondary-link:hover {
  border-color: rgba(219, 234, 254, .72);
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.smyr-product-quality-section,
.smyr-product-detail-main {
  background:
    linear-gradient(180deg, #f5f9ff 0%, #fff 100%),
    linear-gradient(90deg, rgba(20, 120, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.smyr-product-types {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.smyr-product-types::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(20, 120, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 120, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.smyr-product-types .smyr-container {
  position: relative;
  z-index: 1;
}

.smyr-product-types .smyr-section-head {
  position: relative;
}

.smyr-product-types .smyr-section-head::after {
  content: "";
  display: block;
  width: min(220px, 36vw);
  height: 3px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 120, 255, 0), #1478ff, rgba(20, 120, 255, 0));
}

.smyr-product-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.smyr-product-type-card,
.smyr-product-quality-grid article,
.smyr-product-point-list article,
.smyr-product-material-grid article,
.smyr-product-detail-grid article,
.smyr-product-detail-layout,
.smyr-product-detail-extra,
.smyr-product-flow {
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
}

.smyr-product-type-card {
  display: grid;
  overflow: hidden;
  color: inherit;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-product-type-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  color: inherit;
  box-shadow: 0 24px 64px rgba(20, 120, 255, .14);
}

.smyr-product-type-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef6ff;
}

.smyr-product-type-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.smyr-product-type-card:hover .smyr-product-type-img img {
  transform: scale(1.04);
}

.smyr-product-type-body {
  display: grid;
  gap: 10px;
  min-height: 188px;
  align-content: start;
  padding: 24px;
}

.smyr-product-type-body em {
  color: var(--smyr-blue);
  font-style: normal;
  font-weight: 800;
}

.smyr-product-type-body strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.35;
}

.smyr-product-type-body span {
  color: #64748b;
  font-size: 15px;
  line-height: 1.72;
}

.smyr-product-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.smyr-product-capability {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2ecfa;
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 14%, #fff 100%);
  box-shadow: inset 0 18px 34px rgba(15, 78, 145, .035);
}

.smyr-product-capability::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 120, 255, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.smyr-product-capability .smyr-container {
  position: relative;
  z-index: 1;
}

.smyr-product-capability-shell {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, .86);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  box-shadow: 0 28px 82px rgba(15, 78, 145, .13);
}

.smyr-product-capability-top {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 38px;
  align-items: start;
}

.smyr-product-capability-intro h2,
.smyr-product-copy-panel h2 {
  margin: 12px 0 0;
  color: #0f172a;
  font-size: 40px;
  font-weight: 780;
  line-height: 1.22;
}

.smyr-product-capability-intro p,
.smyr-product-copy-panel p {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.86;
}

.smyr-product-capability-bottom {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
}

.smyr-product-split h2,
.smyr-product-brand-band h2,
.smyr-product-flow h2,
.smyr-product-detail-copy h2,
.smyr-product-detail-extra h2 {
  margin: 12px 0 0;
  color: #0f172a;
  font-size: 40px;
  font-weight: 780;
  line-height: 1.22;
}

.smyr-product-split p,
.smyr-product-brand-band p,
.smyr-product-flow p {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.86;
}

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

.smyr-product-copy-panel .smyr-product-point-list {
  margin-top: 26px;
}

.smyr-product-point-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px;
}

.smyr-product-capability .smyr-product-point-list article:last-child {
  grid-column: 1 / -1;
}

.smyr-product-point-list svg,
.smyr-product-quality-grid svg,
.smyr-product-detail-grid svg {
  width: 28px;
  height: 28px;
  color: var(--smyr-blue);
}

.smyr-product-point-list span {
  color: #0f172a;
  font-size: 16px;
  font-weight: 720;
}

.smyr-product-material-section,
.smyr-product-coop-section {
  background: #fff;
}

.smyr-product-image-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 0;
  background: #eef6ff;
  box-shadow: none;
}

.smyr-product-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 61, .18), rgba(7, 31, 61, 0));
}

.smyr-product-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.smyr-product-capability .smyr-product-image-panel img {
  min-height: 520px;
}

.smyr-product-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--smyr-blue);
  padding: clamp(34px, 4vw, 64px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(240, 247, 255, .92));
}

.smyr-product-copy-panel .smyr-kicker {
  align-self: flex-start;
  max-width: 100%;
}

.smyr-product-qc-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%),
    linear-gradient(90deg, rgba(20, 120, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.smyr-product-qc-section .smyr-section-head {
  max-width: 980px;
  margin-bottom: 56px;
}

.smyr-product-qc-section .smyr-section-head h2 {
  font-size: 50px;
}

.smyr-product-qc-section .smyr-section-head p {
  max-width: 960px;
  margin-top: 18px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.9;
}

.smyr-product-qc-layout {
  display: grid;
  grid-template-columns: minmax(440px, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 52px;
}

.smyr-product-qc-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #eef6ff;
  box-shadow: 0 22px 70px rgba(15, 78, 145, .12);
}

.smyr-product-qc-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  transition: opacity .22s ease, transform .36s ease;
}

.smyr-product-qc-visual img.is-changing {
  opacity: .36;
  transform: scale(1.015);
}

.smyr-product-qc-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0) 0%, rgba(7, 31, 61, .82) 100%);
}

.smyr-product-qc-visual div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.smyr-product-qc-visual strong {
  font-size: 34px;
  font-weight: 780;
  line-height: 1;
}

.smyr-product-qc-visual span {
  max-width: 280px;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
}

.smyr-product-qc-list {
  display: grid;
  gap: 16px;
}

.smyr-product-qc-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid #e2ecfa;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  padding: 20px 24px;
  box-shadow: 0 14px 40px rgba(15, 78, 145, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.smyr-product-qc-list article:hover,
.smyr-product-qc-list article.is-active {
  transform: translateX(6px);
  border-color: #bfdbfe;
  background: #fff;
  box-shadow: 0 22px 54px rgba(20, 120, 255, .12);
}

.smyr-product-qc-list i,
.smyr-product-qc-list article > svg {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--smyr-blue);
  padding: 16px;
}

.smyr-product-qc-list article.is-active i,
.smyr-product-qc-list article.is-active > svg {
  background: var(--smyr-blue);
  color: #fff;
}

.smyr-product-qc-list article > div {
  grid-column: 2 / -1;
  min-width: 0;
}

.smyr-product-qc-list h3 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.36;
}

.smyr-product-qc-list p {
  margin: 8px 0 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
}

.smyr-product-brand-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  border-radius: 8px;
  background: #071f3d;
  padding: 44px;
  color: #fff;
}

.smyr-product-brand-band h2,
.smyr-product-brand-band p {
  color: #fff;
}

.smyr-product-brand-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.smyr-product-brand-list span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 219, 254, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #dbeafe;
  font-weight: 760;
}

.smyr-product-quality-grid,
.smyr-product-material-grid,
.smyr-product-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.smyr-product-quality-grid article,
.smyr-product-detail-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
}

.smyr-product-quality-grid h3,
.smyr-product-detail-grid h3 {
  margin: 0;
  color: #0f172a;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.35;
}

.smyr-product-quality-grid p,
.smyr-product-material-grid span,
.smyr-product-detail-grid p,
.smyr-product-detail-grid div {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.76;
}

.smyr-product-material-grid article {
  display: grid;
  gap: 9px;
  padding: 22px;
}

.smyr-product-material-grid strong {
  color: #0f172a;
  font-size: 21px;
  font-weight: 760;
}

.smyr-product-planning-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbff 0%, #fff 48%, #eef6ff 100%),
    linear-gradient(90deg, rgba(20, 120, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 120, 255, .045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.smyr-product-planning-shell {
  display: grid;
  gap: clamp(30px, 4vw, 58px);
}

.smyr-product-planning-top {
  display: grid;
  grid-template-columns: minmax(360px, .76fr) minmax(0, 1.24fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: center;
}

.smyr-product-planning-copy {
  position: relative;
  max-width: 680px;
  padding: clamp(10px, 2vw, 24px) 0 clamp(10px, 2vw, 24px) clamp(22px, 2.2vw, 34px);
}

.smyr-product-planning-copy::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1478ff, #74b9ff);
}

.smyr-product-planning-copy h2 {
  max-width: 620px;
  margin: 12px 0 0;
  color: #0f172a;
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 820;
  line-height: 1.12;
}

.smyr-product-planning-copy p,
.smyr-product-planning-flow-head p {
  margin: 20px 0 0;
  color: #52647b;
  font-size: 17px;
  line-height: 1.9;
}

.smyr-product-planning-materials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.smyr-product-planning-materials article {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 12px;
  min-height: 172px;
  align-content: end;
  border: 1px solid rgba(191, 219, 254, .86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(248, 251, 255, .95) 100%),
    linear-gradient(90deg, rgba(20, 120, 255, .05) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 46px rgba(15, 78, 145, .08);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.smyr-product-planning-materials article::before {
  content: "AL";
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #0a4fb5;
  font-size: 15px;
  font-weight: 840;
  background: #eef8ff;
}

.smyr-product-planning-materials article:nth-child(2)::before {
  content: "CS";
}

.smyr-product-planning-materials article:nth-child(3)::before {
  content: "AS";
}

.smyr-product-planning-materials article:nth-child(4)::before {
  content: "SS";
}

.smyr-product-planning-materials article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1478ff, rgba(20, 120, 255, 0));
}

.smyr-product-planning-materials article:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 120, 255, .46);
  box-shadow: 0 26px 68px rgba(15, 78, 145, .13);
}

.smyr-product-planning-materials strong {
  color: #0f172a;
  font-size: 25px;
  font-weight: 820;
  line-height: 1.25;
}

.smyr-product-planning-materials span {
  max-width: 88%;
  color: #52647b;
  font-size: 16px;
  line-height: 1.78;
}

.smyr-product-planning-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 31, 61, .98) 0%, rgba(10, 79, 181, .94) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: auto, 34px 34px;
  padding: clamp(30px, 3vw, 46px);
  box-shadow: 0 24px 70px rgba(7, 31, 61, .18);
}

.smyr-product-planning-flow .smyr-kicker {
  border-color: rgba(191, 219, 254, .32);
  background: rgba(255, 255, 255, .1);
  color: #dbeafe;
}

.smyr-product-planning-flow-head h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 820;
  line-height: 1.14;
}

.smyr-product-planning-flow-head p {
  color: rgba(226, 232, 240, .82);
}

.smyr-product-planning-flow ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smyr-product-planning-flow li {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: start;
  min-height: 152px;
  border-radius: 8px;
  background: #fff;
  padding: 24px 22px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(2, 8, 23, .14);
  transition: transform .24s ease, box-shadow .24s ease;
}

.smyr-product-planning-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -14px;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, .42);
}

.smyr-product-planning-flow li:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(2, 8, 23, .2);
}

.smyr-product-planning-flow li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #0a4fb5;
  font-size: 18px;
  font-weight: 840;
  background: #eef8ff;
}

.smyr-product-planning-flow li strong {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.45;
}

.smyr-product-flow {
  display: grid;
  grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.smyr-product-flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smyr-product-flow li {
  display: grid;
  gap: 8px;
  justify-items: center;
  border-radius: 8px;
  background: #f5f9ff;
  padding: 18px 12px;
  text-align: center;
}

.smyr-product-flow li span {
  color: var(--smyr-blue);
  font-weight: 800;
}

.smyr-product-flow li strong {
  color: #0f172a;
  font-size: 15px;
}

.smyr-product-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.smyr-product-detail-media {
  position: relative;
  overflow: hidden;
  background: #eef6ff;
}

.smyr-product-detail-swiper,
.smyr-product-detail-swiper .swiper-wrapper,
.smyr-product-detail-swiper .swiper-slide {
  height: 100%;
}

.smyr-product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.smyr-product-detail-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(219, 234, 254, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--smyr-blue);
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(15, 78, 145, .16);
  transform: translateY(-50%);
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.smyr-product-detail-btn:hover {
  background: var(--smyr-blue);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.smyr-product-detail-btn svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.smyr-product-detail-prev {
  left: 18px;
}

.smyr-product-detail-next {
  right: 18px;
}

.smyr-product-detail-pagination {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 18px !important;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.smyr-product-detail-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(255, 255, 255, .72);
  opacity: 1;
}

.smyr-product-detail-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}

.smyr-product-detail-swiper.is-single .smyr-product-detail-btn,
.smyr-product-detail-swiper.is-single .smyr-product-detail-pagination {
  display: none;
}

.smyr-product-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 46px 50px;
}

.smyr-product-detail-copy h2 {
  margin-top: 14px;
}

.smyr-product-detail-rich {
  color: #64748b;
  font-size: 17px;
  line-height: 1.88;
}

.smyr-product-detail-rich p {
  margin: 0 0 14px;
}

.smyr-product-detail-wechat {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  border-top: 1px solid #dbeafe;
  padding-top: 24px;
}

.smyr-product-detail-wechat img {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: 4px;
  background: #fff;
  object-fit: cover;
}

.smyr-product-detail-wechat div {
  display: grid;
  gap: 7px;
  min-width: 0;
  flex: 1;
}

.smyr-product-detail-wechat strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
}

.smyr-product-detail-wechat span {
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.smyr-product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.smyr-product-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef6ff;
  padding: 9px 14px;
  color: #475569;
}

.smyr-product-detail-meta strong {
  color: #0f172a;
}

.smyr-product-detail-feature-divider {
  width: 100%;
  height: 1px;
  margin: 8px 0 6px;
  background: #dbeafe;
}

.smyr-product-detail-feature {
  display: grid;
  width: 100%;
}

.smyr-product-detail-feature div {
  color: #64748b;
  font-size: 17px;
  line-height: 2.18;
  font-weight: 400;
}

.smyr-product-detail-feature strong,
.smyr-product-detail-feature b {
  color: #0f172a;
  font-size: inherit;
  font-weight: 760;
}

.smyr-product-detail-feature p {
  margin: 0 0 10px;
}

.smyr-product-detail-feature p:last-child {
  margin-bottom: 0;
}

.smyr-product-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.smyr-product-detail-extra {
  margin-top: 28px;
  padding: 34px;
}

.smyr-product-detail-extra h2 {
  margin-top: 0;
}

.smyr-product-detail-extra .smyr-product-detail-rich {
  margin-top: 22px;
}

.smyr-case-list {
  display: grid;
  gap: 30px;
}

.smyr-case-list-card {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-case-list-card:hover {
  color: inherit;
}

.smyr-case-list-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 24px 64px rgba(20, 120, 255, .14);
}

.smyr-case-list-img {
  display: block;
  overflow: hidden;
  min-height: 360px;
  background: #eef6ff;
}

.smyr-case-list-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .4s ease;
}

.smyr-case-list-card:hover .smyr-case-list-img img {
  transform: scale(1.04);
}

.smyr-case-list-body {
  position: relative;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 44px 50px;
  overflow: hidden;
}

.smyr-case-list-body::before {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 28px;
  width: 360px;
  height: 230px;
  opacity: .085;
  background-color: var(--smyr-blue);
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 320'%3E%3Cg fill='none' stroke='%23000' stroke-width='11' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M78 96 212 44h230v166L306 276H78z'/%3E%3Cpath d='M212 44v168L78 276M442 44 306 96H78M306 96v180'/%3E%3Ccircle cx='150' cy='138' r='22'/%3E%3Ccircle cx='248' cy='134' r='18'/%3E%3Ccircle cx='372' cy='112' r='23'/%3E%3Ccircle cx='152' cy='224' r='18'/%3E%3Ccircle cx='246' cy='222' r='24'/%3E%3Ccircle cx='378' cy='198' r='18'/%3E%3Cpath d='M150 138h98v-4h72M246 222v-48h96v24h36M152 224h54M372 112v44h-72M78 160H38M442 124h42M306 246h80M118 96V58M210 276v28M410 210v54'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 320'%3E%3Cg fill='none' stroke='%23000' stroke-width='11' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M78 96 212 44h230v166L306 276H78z'/%3E%3Cpath d='M212 44v168L78 276M442 44 306 96H78M306 96v180'/%3E%3Ccircle cx='150' cy='138' r='22'/%3E%3Ccircle cx='248' cy='134' r='18'/%3E%3Ccircle cx='372' cy='112' r='23'/%3E%3Ccircle cx='152' cy='224' r='18'/%3E%3Ccircle cx='246' cy='222' r='24'/%3E%3Ccircle cx='378' cy='198' r='18'/%3E%3Cpath d='M150 138h98v-4h72M246 222v-48h96v24h36M152 224h54M372 112v44h-72M78 160H38M442 124h42M306 246h80M118 96V58M210 276v28M410 210v54'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.smyr-case-list-body > * {
  position: relative;
  z-index: 1;
}

.smyr-case-list-top span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--smyr-blue);
  font-size: 15px;
  font-weight: 760;
}

.smyr-case-list-top h2 {
  margin: 0;
  color: #0f172a;
  font-size: 32px;
  font-weight: 740;
  line-height: 1.3;
}

.smyr-case-list-top h2 a {
  color: inherit;
}

.smyr-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.smyr-case-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fbff;
  padding: 0 15px;
  color: #475569;
  font-size: 15px;
  line-height: 1.4;
}

.smyr-case-meta strong {
  color: #0a4fb5;
  font-weight: 760;
}

.smyr-case-list-body p,
.smyr-case-list-body .smyr-case-info {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.86;
}

.smyr-case-feature {
  max-width: 780px;
}

.smyr-case-feature p {
  margin: 0 0 10px;
}

.smyr-case-feature p:last-child {
  margin-bottom: 0;
}

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

.smyr-case-detail-block {
  border: 1px solid #e2ecfa;
  border-radius: 8px;
  background: #f8fbff;
  padding: 18px;
}

.smyr-case-detail-block strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 760;
}

.smyr-case-detail-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

.smyr-case-detail-block .smyr-case-info {
  font-size: 15px;
  line-height: 1.72;
}

.smyr-case-detail-block .smyr-case-info p {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 8px 8px 0;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  padding: 0 11px;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
}

.smyr-case-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smyr-case-points li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  padding: 0 11px;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
}

.smyr-case-more,
.smyr-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: start;
  min-height: 48px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #fff;
  padding: 0 22px;
  color: var(--smyr-blue-dark);
  font-size: 16px;
  font-weight: 760;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-case-more:hover,
.smyr-secondary-link:hover {
  transform: translateY(-2px);
  border-color: var(--smyr-blue);
  background: #f2f8ff;
  box-shadow: 0 16px 38px rgba(20, 120, 255, .12);
}

.smyr-case-more svg,
.smyr-secondary-link svg {
  width: 17px;
  height: 17px;
}

.smyr-case-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 38px;
}

.smyr-case-pages a,
.smyr-case-pages span {
  display: inline-flex;
  min-width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  padding: 0 13px;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(15, 78, 145, .06);
  transition: border-color .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.smyr-case-pages a:hover,
.smyr-case-pages .current {
  border-color: var(--smyr-blue);
  background: var(--smyr-blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(20, 120, 255, .18);
}

.smyr-case-detail-page {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.smyr-case-detail-shell {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(15, 78, 145, .09);
}

.smyr-case-detail-media {
  min-height: 430px;
  background: #eef6ff;
}

.smyr-case-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smyr-case-detail-content {
  display: grid;
  gap: 24px;
  align-content: center;
  padding: 48px 54px;
}

.smyr-case-rich {
  color: #64748b;
  font-size: 17px;
  line-height: 1.9;
}

.smyr-case-rich p {
  margin: 0 0 14px;
}

.smyr-case-summary {
  background: #fff;
}

.smyr-case-summary-card {
  max-width: 1120px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
  padding: 52px;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .07);
}

.smyr-case-summary-card p {
  max-width: 960px;
  margin-top: 18px;
}

.smyr-case-cta {
  position: relative;
  overflow: hidden;
  background: #071f3d;
  color: #fff;
}

.smyr-case-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.smyr-case-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 46px;
  align-items: center;
}

.smyr-case-cta-inner .smyr-kicker {
  border-color: rgba(147, 197, 253, .5);
  background: rgba(20, 120, 255, .16);
  color: #dbeafe;
}

.smyr-case-cta-inner h2 {
  max-width: 760px;
  color: #fff;
}

.smyr-case-cta-inner p {
  max-width: 860px;
  margin-top: 16px;
  color: rgba(226, 232, 240, .82);
}

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

.smyr-case-cta .smyr-secondary-link {
  border-color: rgba(191, 219, 254, .36);
  background: rgba(255, 255, 255, .08);
  color: #dbeafe;
}

.smyr-case-cta .smyr-secondary-link:hover {
  border-color: rgba(219, 234, 254, .72);
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.smyr-section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.smyr-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  border-radius: 999px;
  background: var(--smyr-blue);
  padding: 0 26px;
  color: #fff;
  font-size: 16px;
  font-weight: 720;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.smyr-primary-link:hover {
  transform: translateY(-2px);
  background: var(--smyr-blue-dark);
  box-shadow: 0 18px 44px rgba(20, 120, 255, .24);
}

.smyr-primary-link svg {
  width: 17px;
  height: 17px;
}

.smyr-contact {
  position: relative;
  overflow: hidden;
  background: #071f3d;
  background-image: linear-gradient(90deg, rgba(7, 31, 61, .9) 0%, rgba(7, 31, 61, .8) 48%, rgba(7, 31, 61, .93) 100%), var(--smyr-contact-bg);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.smyr-contact::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 31, 61, .12), rgba(7, 31, 61, .26));
  pointer-events: none;
}

.smyr-contact .smyr-container {
  position: relative;
  z-index: 1;
}

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

.smyr-contact-copy p {
  color: rgba(255, 255, 255, .74);
  margin-top: 22px;
}

.smyr-contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.smyr-contact-info a,
.smyr-contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
}

.smyr-contact-info svg {
  width: 18px;
  height: 18px;
  color: #93c5fd;
}

.smyr-contact-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .82);
}

.smyr-contact-qr img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}

.smyr-contact-qr strong,
.smyr-contact-qr span {
  display: block;
}

.smyr-contact-qr strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
}

.smyr-contact-qr span {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.7;
}

.smyr-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  border: 1px solid rgba(191, 219, 254, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  padding: 28px 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.smyr-contact-form .full {
  grid-column: 1 / -1;
}

.smyr-contact-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.smyr-contact-form input,
.smyr-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 219, 254, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  padding: 10px 16px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.45;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.smyr-contact-form input {
  min-height: 46px;
}

.smyr-contact-form textarea {
  min-height: 120px;
}

.smyr-contact-form input::placeholder,
.smyr-contact-form textarea::placeholder {
  color: #94a3b8;
}

.smyr-contact-form input:focus,
.smyr-contact-form textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, .22);
}

.smyr-file-field > label,
.smyr-vcode-field > label {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
}

.smyr-file-picker {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  min-height: 54px;
  border: 1px dashed rgba(147, 197, 253, .42);
  border-radius: 8px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.6;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.smyr-file-picker:hover {
  border-color: rgba(147, 197, 253, .74);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .12);
}

.smyr-file-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.smyr-file-picker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(147, 197, 253, .18);
  padding: 0 20px;
  color: #dbeafe;
  font-weight: 700;
  white-space: nowrap;
}

.smyr-file-picker strong {
  display: inline-flex;
  min-height: 42px;
  min-width: 0;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smyr-file-help {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  line-height: 1.45;
}

.smyr-file-picker svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.smyr-vcode-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 12px;
  align-items: center;
}

.smyr-vcode-control img {
  display: block;
  width: 112px;
  height: 46px;
  justify-self: center;
  align-self: center;
  border: 1px solid rgba(191, 219, 254, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  cursor: pointer;
  object-fit: contain;
  object-position: center center;
}

.smyr-contact-form button {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--smyr-blue);
  color: #fff;
  font-size: 17px;
  font-weight: 760;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.smyr-contact-form button:hover {
  transform: translateY(-2px);
  background: #0c63df;
  box-shadow: 0 18px 46px rgba(20, 120, 255, .28);
}

.smyr-contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.smyr-form-status {
  display: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.6;
}

.smyr-form-status.is-visible {
  display: block;
}

.smyr-form-status.is-success {
  border: 1px solid rgba(125, 211, 252, .34);
  background: rgba(14, 165, 233, .12);
  color: #dbeafe;
}

.smyr-form-status.is-error {
  border: 1px solid rgba(252, 165, 165, .42);
  background: rgba(239, 68, 68, .12);
  color: #fee2e2;
}

.smyr-news {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.smyr-news-board {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 78, 145, .08);
}

.smyr-news-row {
  display: grid;
  grid-template-columns: 64px 138px minmax(0, 1fr) 112px 42px;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid #e8f1ff;
  padding: 22px 30px;
  color: #0f172a;
  transition: background-color .25s ease, color .25s ease;
}

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

.smyr-news-row:hover {
  background: #f6fbff;
  color: var(--smyr-blue-dark);
}

.smyr-news-index {
  display: grid;
  align-content: center;
  justify-self: center;
  justify-items: center;
  color: #64748b;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.smyr-news-index strong {
  color: #94a3b8;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.smyr-news-index strong::after {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: #dbeafe;
  content: "";
}

.smyr-news-index em {
  color: #94a3b8;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.smyr-news-cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  background: #f1f7ff;
  padding: 0 13px;
  color: #64748b;
  font-size: 14px;
  white-space: nowrap;
}

.smyr-news-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.smyr-news-thumb {
  display: block;
  overflow: hidden;
  width: 138px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #eef6ff;
}

.smyr-news-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.smyr-news-row:hover .smyr-news-thumb img {
  transform: scale(1.04);
}

.smyr-news-cate {
  color: var(--smyr-blue-dark);
}

.smyr-area-list-section {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.smyr-area-cates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.smyr-area-cates a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #475569;
  font-size: 16px;
  font-weight: 680;
  padding: 0 20px;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.smyr-area-cates a:hover,
.smyr-area-cates a.active {
  border-color: var(--smyr-blue);
  background: var(--smyr-blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(20, 120, 255, .22);
}

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

.smyr-area-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-area-card:hover {
  color: inherit;
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 24px 64px rgba(20, 120, 255, .14);
}

.smyr-area-card-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef6ff;
}

.smyr-area-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.smyr-area-card:hover .smyr-area-card-img img {
  transform: scale(1.04);
}

.smyr-area-card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.smyr-area-card-body em {
  width: fit-content;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--smyr-blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 760;
  padding: 6px 12px;
}

.smyr-area-card-body strong {
  color: #0f172a;
  font-size: 26px;
  font-weight: 780;
  line-height: 1.32;
}

.smyr-area-card-body span {
  color: #64748b;
  font-size: 16px;
  line-height: 1.76;
}

.smyr-area-empty {
  grid-column: 1 / -1;
  border: 1px dashed #bfdbfe;
  border-radius: 8px;
  color: #64748b;
  padding: 48px;
  text-align: center;
}

.smyr-area-detail-section {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.smyr-area-detail-shell {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
}

.smyr-area-detail-head {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid #dbeafe;
  padding: 36px 42px;
}

.smyr-area-detail-head span {
  width: fit-content;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--smyr-blue);
  font-size: 15px;
  font-weight: 760;
  padding: 7px 14px;
}

.smyr-area-detail-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 42px;
  font-weight: 780;
  line-height: 1.22;
}

.smyr-area-detail-head p {
  max-width: 860px;
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.86;
}

.smyr-area-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}

.smyr-area-detail-media {
  min-height: 420px;
  background: #eef6ff;
}

.smyr-area-detail-media .swiper,
.smyr-area-detail-media .swiper-wrapper,
.smyr-area-detail-media .swiper-slide {
  height: 100%;
}

.smyr-area-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.smyr-area-detail-content {
  padding: 38px 42px;
}

.smyr-area-home-intro {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f6faff 100%);
}

.smyr-area-home-intro-head {
  text-align: center;
  margin-bottom: 44px;
}

.smyr-area-home-intro-head .smyr-kicker {
  margin-inline: auto;
}

.smyr-area-home-intro-head h2 {
  max-width: 980px;
  margin-inline: auto;
}

.smyr-area-home-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  position: relative;
}

.smyr-area-story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr);
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 42px 46px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #eef7ff 0%, rgba(255, 255, 255, .92) 52%, #f8fbff 100%),
    radial-gradient(circle at 92% 14%, rgba(20, 120, 255, .16), transparent 34%);
  box-shadow: inset 0 0 0 1px rgba(191, 219, 254, .78);
}

.smyr-area-story-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: linear-gradient(180deg, #1478ff, #22c55e);
}

.smyr-area-story-copy {
  position: relative;
  z-index: 1;
}

.smyr-area-story-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 120, 255, .09);
  color: #0c63df;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.smyr-area-story-copy h2,
.smyr-area-story-rich h1,
.smyr-area-story-rich h2,
.smyr-area-story-rich h3 {
  margin: 18px 0 18px;
  max-width: none;
  color: #0f172a;
  font-size: 34px;
  font-weight: 840;
  line-height: 1.22;
}

.smyr-area-story-copy p,
.smyr-area-story-rich p {
  margin: 0 0 16px;
  color: #475569;
  font-size: 16px;
  line-height: 1.9;
}

.smyr-area-story-copy p:last-child,
.smyr-area-story-rich p:last-child {
  margin-bottom: 0;
}

.smyr-area-story-media {
  overflow: hidden;
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 8px;
  background: #eaf2fb;
  box-shadow: 0 24px 64px rgba(15, 78, 145, .15);
}

.smyr-area-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 120, 255, .12), transparent 44%);
  pointer-events: none;
}

.smyr-area-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.smyr-area-story-media figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .72);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.smyr-area-feature-band {
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #195ab1 0%, #1d63be 58%, #0d4fa8 100%);
  padding: 44px 48px 48px;
  color: #fff;
  box-shadow: 0 28px 72px rgba(13, 79, 168, .18);
}

.smyr-area-feature-head {
  max-width: none;
  margin-bottom: 30px;
}

.smyr-area-feature-head span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
}

.smyr-area-feature-head h2 {
  margin: 22px 0 12px;
  max-width: 1180px;
  color: #fff;
  font-size: 38px;
  font-weight: 840;
  line-height: 1.2;
}

.smyr-area-feature-head p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.75;
}

.smyr-area-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.smyr-area-feature-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
}

.smyr-area-feature-item em {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 840;
}

.smyr-area-feature-rich h1,
.smyr-area-feature-rich h2,
.smyr-area-feature-rich h3,
.smyr-area-feature-rich strong,
.smyr-area-feature-rich b {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 820;
  line-height: 1.34;
}

.smyr-area-feature-rich p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  line-height: 1.78;
}

.smyr-area-feature-rich p:last-child {
  margin-bottom: 0;
}

.smyr-news-copy strong {
  overflow: hidden;
  color: inherit;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.38;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smyr-news-copy em {
  overflow: hidden;
  color: #64748b;
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smyr-news-row > svg {
  justify-self: end;
  width: 24px;
  height: 24px;
  color: var(--smyr-blue);
  transition: transform .25s ease;
}

.smyr-news-row:hover > svg {
  transform: translate(3px, -3px);
}

.smyr-news-list-section,
.smyr-news-detail-section {
  background: #f6faff;
}

.smyr-news-list {
  display: grid;
  gap: 22px;
}

.smyr-news-list-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 18px 50px rgba(15, 78, 145, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-news-list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 120, 255, .28);
  box-shadow: 0 24px 64px rgba(15, 78, 145, .13);
}

.smyr-news-list-img {
  display: block;
  overflow: hidden;
  min-height: 220px;
  background: #eef6ff;
}

.smyr-news-list-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.smyr-news-list-card:hover .smyr-news-list-img img {
  transform: scale(1.04);
}

.smyr-news-list-body {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  padding: 34px 38px;
}

.smyr-news-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #64748b;
  font-size: 14px;
}

.smyr-news-list-meta em,
.smyr-news-list-meta strong,
.smyr-news-list-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: #f1f7ff;
  padding: 0 12px;
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

.smyr-news-list-meta strong {
  color: var(--smyr-blue-dark);
}

.smyr-news-list-body h2 {
  color: #0f172a;
  font-size: 26px;
  font-weight: 760;
  line-height: 1.38;
}

.smyr-news-list-body p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.78;
}

.smyr-news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--smyr-blue);
  font-size: 15px;
  font-weight: 720;
}

.smyr-news-more svg {
  width: 16px;
  height: 16px;
}

.smyr-news-detail {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 78, 145, .08);
}

.smyr-news-detail-head {
  padding: 48px 54px 32px;
}

.smyr-news-detail-head h1 {
  margin-top: 18px;
  color: #0f172a;
  font-size: 38px;
  font-weight: 780;
  line-height: 1.28;
}

.smyr-news-detail-head p {
  margin-top: 18px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.86;
}

.smyr-news-detail-cover {
  overflow: hidden;
  margin: 0 54px 34px;
  border-radius: 8px;
  background: #eef6ff;
}

.smyr-news-detail-cover img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.smyr-news-rich {
  border-top: 1px solid #e2ecfb;
  margin: 0 54px;
  padding: 32px 0 48px;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.smyr-news-rich p {
  margin: 0 0 18px;
}

.smyr-news-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.smyr-news-prevnext {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid #e2ecfb;
  padding: 24px 54px 34px;
}

.smyr-news-prevnext a,
.smyr-news-prevnext > span {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #f8fbff;
  padding: 18px 20px;
}

.smyr-news-prevnext span span,
.smyr-news-prevnext a span {
  color: var(--smyr-blue);
  font-size: 14px;
  font-weight: 720;
}

.smyr-news-prevnext strong {
  overflow: hidden;
  color: #0f172a;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smyr-friends {
  background: #f5f9ff;
  padding: 0 0 18px;
}

.smyr-friends-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #dbeafe;
  padding-top: 20px;
}

.smyr-friends-inner h2 {
  margin-right: 6px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.smyr-friends-inner h2 em {
  color: #94a3b8;
  font-style: normal;
  font-weight: 500;
}

.smyr-friends-inner a {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  transition: color .25s ease;
}

.smyr-friends-inner a:hover {
  color: var(--smyr-blue-dark);
}

.smyr-contact-main {
  padding-top: 78px;
}

.smyr-contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 28px;
  align-items: stretch;
}

.smyr-contact-panel,
.smyr-contact-card,
.smyr-contact-qrcode-card,
.smyr-contact-map {
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(15, 78, 145, .08);
}

.smyr-contact-panel-primary {
  position: relative;
  overflow: hidden;
  padding: 46px 50px;
}

.smyr-contact-panel-primary::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 280px;
  height: 190px;
  opacity: .07;
  background-color: var(--smyr-blue);
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 320'%3E%3Cg fill='none' stroke='%23000' stroke-width='11' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M78 96 212 44h230v166L306 276H78z'/%3E%3Cpath d='M212 44v168L78 276M442 44 306 96H78M306 96v180'/%3E%3Ccircle cx='150' cy='138' r='22'/%3E%3Ccircle cx='248' cy='134' r='18'/%3E%3Ccircle cx='372' cy='112' r='23'/%3E%3Ccircle cx='152' cy='224' r='18'/%3E%3Ccircle cx='246' cy='222' r='24'/%3E%3Ccircle cx='378' cy='198' r='18'/%3E%3Cpath d='M150 138h98v-4h72M246 222v-48h96v24h36M152 224h54M372 112v44h-72M78 160H38M442 124h42M306 246h80M118 96V58M210 276v28M410 210v54'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 320'%3E%3Cg fill='none' stroke='%23000' stroke-width='11' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M78 96 212 44h230v166L306 276H78z'/%3E%3Cpath d='M212 44v168L78 276M442 44 306 96H78M306 96v180'/%3E%3Ccircle cx='150' cy='138' r='22'/%3E%3Ccircle cx='248' cy='134' r='18'/%3E%3Ccircle cx='372' cy='112' r='23'/%3E%3Ccircle cx='152' cy='224' r='18'/%3E%3Ccircle cx='246' cy='222' r='24'/%3E%3Ccircle cx='378' cy='198' r='18'/%3E%3Cpath d='M150 138h98v-4h72M246 222v-48h96v24h36M152 224h54M372 112v44h-72M78 160H38M442 124h42M306 246h80M118 96V58M210 276v28M410 210v54'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.smyr-contact-panel-primary > * {
  position: relative;
  z-index: 1;
}

.smyr-contact-panel-primary h2 {
  max-width: 680px;
  margin: 18px 0 18px;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 780;
  line-height: 1.18;
}

.smyr-contact-panel-primary p {
  max-width: 720px;
  margin: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.9;
}

.smyr-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.smyr-contact-actions .smyr-primary-link,
.smyr-contact-actions .smyr-secondary-link {
  min-height: 48px;
}

.smyr-contact-card-list {
  display: grid;
  gap: 16px;
}

.smyr-contact-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.smyr-contact-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  color: inherit;
  box-shadow: 0 22px 56px rgba(20, 120, 255, .13);
}

.smyr-contact-card i,
.smyr-contact-card > svg {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: #eef6ff;
  padding: 13px;
  color: var(--smyr-blue);
}

.smyr-contact-card span,
.smyr-contact-qrcode-card span {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.smyr-contact-card strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.55;
}

.smyr-contact-map-row {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.smyr-contact-qrcode-card {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 30px;
}

.smyr-contact-qrcode-card img {
  width: 156px;
  height: 156px;
  object-fit: contain;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.smyr-contact-qrcode-card div {
  margin-top: 20px;
}

.smyr-contact-qrcode-card strong {
  display: block;
  color: #0f172a;
  font-size: 24px;
  font-weight: 780;
}

.smyr-contact-qrcode-card p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}

.smyr-contact-map {
  overflow: hidden;
  min-height: 420px;
}

.smyr-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.smyr-contact-guide {
  margin-top: 28px;
  border: 1px solid rgba(10, 79, 181, .18);
  border-radius: 8px;
  background: var(--smyr-blue-dark);
  padding: 42px;
  box-shadow: 0 18px 52px rgba(10, 79, 181, .18);
}

.smyr-contact-guide-head {
  max-width: 820px;
}

.smyr-contact-guide-head h2 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 780;
  line-height: 1.24;
}

.smyr-contact-guide-head p,
.smyr-contact-guide-note {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.85;
}

.smyr-contact-guide .smyr-kicker {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.smyr-contact-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.smyr-contact-guide-content {
  margin-top: 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  line-height: 1.85;
}

.smyr-contact-guide-content h1,
.smyr-contact-guide-content h2,
.smyr-contact-guide-content h3,
.smyr-contact-guide-content h4 {
  margin: 0 0 12px;
  color: #fff;
  font-weight: 760;
  line-height: 1.35;
}

.smyr-contact-guide-content h3,
.smyr-contact-guide-content h4 {
  font-size: 20px;
}

.smyr-contact-guide-content p {
  margin: 0 0 12px;
}

.smyr-contact-guide-content ul,
.smyr-contact-guide-content ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smyr-contact-guide-content li {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  padding: 22px;
}

.smyr-contact-guide-grid article {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(7, 31, 61, .08);
}

.smyr-contact-guide-grid article > span {
  color: #fff;
}

.smyr-contact-guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.smyr-contact-guide-icon svg,
.smyr-contact-guide-icon i svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.smyr-contact-guide-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.smyr-contact-guide-grid h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.35;
}

.smyr-contact-guide-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.75;
}

.smyr-contact-guide-note {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 22px;
  color: rgba(255, 255, 255, .82);
}

.smyr-footer {
  background: #071f3d;
  color: #d1d5db;
}

.smyr-footer-links {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(7, 31, 61, .9), rgba(7, 31, 61, .96));
  color: #dbeafe;
}

.smyr-footer-links-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: 16px;
}

.smyr-footer-links-inner span {
  font-weight: 600;
}

.smyr-footer-links-inner em {
  margin-left: 4px;
  color: #8aa2bd;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.smyr-footer-links-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.smyr-footer-links-inner a {
  color: #93a4b7;
  transition: color .25s ease;
}

.smyr-footer-links-inner a:hover {
  color: #dbeafe;
}

.smyr-footer-main {
  background: linear-gradient(180deg, #071f3d 0%, #0a1726 100%);
}

.smyr-footer-service {
  display: grid;
  grid-template-columns: minmax(300px, .34fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 56px 0 50px;
}

.smyr-footer-service h2 {
  margin: 8px 0 0;
  color: #f8fafc;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 800;
}

.smyr-footer-service-logo {
  width: min(230px, 100%);
  margin: 0 0 18px;
}

.smyr-footer-service-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.smyr-footer-service-title span {
  display: inline-flex;
  color: #5f9cff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.smyr-footer-quick {
  margin-top: 48px;
  max-width: 520px;
}

.smyr-footer-quick strong {
  display: block;
  margin-bottom: 14px;
  color: #f1f5f9;
  font-size: 18px;
  font-weight: 700;
}

.smyr-footer-quick div {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, max-content));
  gap: 12px 38px;
  align-items: start;
}

.smyr-footer-quick a {
  color: #aeb6c2;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  transition: color .25s ease, transform .25s ease;
}

.smyr-footer-quick a:hover {
  color: #dbeafe;
  transform: translateY(-1px);
}

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

.smyr-footer-service-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 6px 18px;
  min-height: 132px;
  align-content: center;
  border: 1px solid rgba(147, 197, 253, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  padding: 22px 24px;
  color: #aeb6c2;
  font-size: 16px;
  line-height: 1.75;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.smyr-footer-service-item:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, .32);
  background: rgba(255, 255, 255, .06);
}

.smyr-footer-service-item i,
.smyr-footer-service-item > svg {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(20, 120, 255, .16);
  color: #93c5fd;
  padding: 12px;
}

.smyr-footer-service-item strong {
  color: #f1f5f9;
  font-weight: 700;
}

.smyr-footer-service-item span {
  min-width: 0;
}

.smyr-footer-qr-item {
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 142px;
  align-items: center;
}

.smyr-footer-service-qr {
  grid-row: 1 / span 2;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  padding: 8px;
  box-shadow: 0 18px 36px rgba(2, 6, 23, .24);
}

.smyr-footer-service a {
  color: #aeb6c2;
  transition: color .25s ease;
}

.smyr-footer-service a:hover {
  color: #dbeafe;
}

.smyr-footer-bottom {
  background: #0a1726;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.smyr-footer-bottom-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8f98a3;
  font-size: 16px;
}

.smyr-footer-bottom a {
  color: #8f98a3;
  transition: color .25s ease;
}

.smyr-footer-bottom a:hover {
  color: #dbeafe;
}

.smyr-float-contact {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 90;
  display: grid;
  overflow: visible;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(15, 78, 145, .18);
  backdrop-filter: blur(14px);
}

.smyr-float-contact-item {
  position: relative;
  display: grid;
  gap: 5px;
  justify-items: center;
  align-content: center;
  width: 76px;
  min-height: 76px;
  border: 0;
  border-bottom: 1px solid #e2ecfb;
  background: transparent;
  color: #334155;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: background-color .25s ease, color .25s ease;
}

.smyr-float-contact-item:last-child {
  border-bottom: 0;
}

.smyr-float-back-top {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  border-bottom: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: max-height .25s ease, min-height .25s ease, opacity .22s ease, transform .22s ease;
}

.smyr-float-back-top.is-visible {
  max-height: 76px;
  min-height: 76px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.smyr-float-contact-item:hover,
.smyr-float-contact-item:focus-visible {
  background: #f1f7ff;
  color: var(--smyr-blue-dark);
}

.smyr-float-contact-item svg {
  width: 25px;
  height: 25px;
  color: var(--smyr-blue);
}

.smyr-float-contact-item span {
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
}

.smyr-float-contact-item em {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  opacity: 0;
  visibility: hidden;
  transform: translate(8px, -50%);
  border-radius: 8px;
  background: #071f3d;
  padding: 10px 13px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(2, 6, 23, .22);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.smyr-float-contact-item:hover em,
.smyr-float-contact-item:focus-visible em {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.smyr-float-qrcode {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  width: 154px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  color: #334155;
  box-shadow: 0 18px 48px rgba(15, 78, 145, .18);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.smyr-float-wechat:hover .smyr-float-qrcode,
.smyr-float-wechat:focus-within .smyr-float-qrcode,
.smyr-float-wechat:focus .smyr-float-qrcode {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.smyr-float-qrcode img {
  display: block;
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.smyr-float-qrcode strong,
.smyr-float-qrcode small {
  display: block;
}

.smyr-float-qrcode strong {
  margin-top: 8px;
  color: #0f172a;
  font-size: 14px;
}

.smyr-float-qrcode small {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
}

@media (max-width: 1180px) {
  :root {
    --smyr-container-width: 1120px;
    --smyr-page-gutter: clamp(22px, 5vw, 56px);
  }

  .smyr-nav {
    gap: 12px;
    font-size: 18px;
  }

  .smyr-nav-link {
    padding-inline: 20px;
  }

  .smyr-header-tools .smyr-phone {
    display: none;
  }

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

  .smyr-advantage-lead {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    max-height: none;
  }

  .smyr-advantage-list {
    grid-template-rows: none;
  }

  .smyr-advantage-photo {
    height: auto;
  }

  .smyr-advantage-photo img {
    height: auto;
    object-fit: initial;
  }

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

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

  .smyr-product-type-grid,
  .smyr-product-quality-grid,
  .smyr-product-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smyr-product-split,
  .smyr-product-capability-top,
  .smyr-product-capability-bottom,
  .smyr-product-qc-layout,
  .smyr-product-planning-top,
  .smyr-product-planning-flow,
  .smyr-product-brand-band,
  .smyr-product-flow,
  .smyr-product-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .smyr-product-qc-visual,
  .smyr-product-qc-visual img {
    min-height: 440px;
  }

  .smyr-product-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .smyr-product-planning-materials,
  .smyr-product-planning-flow ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smyr-product-planning-flow li:not(:last-child)::after {
    display: none;
  }

  .smyr-product-copy-panel {
    border-left: 0;
    border-top: 4px solid var(--smyr-blue);
    padding: 34px;
  }

  .smyr-product-capability .smyr-product-image-panel img {
    min-height: 380px;
  }

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

  .smyr-product-card {
    grid-template-columns: 1fr;
  }

  .smyr-product-card div {
    min-height: 0;
  }

  .smyr-case-swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smyr-news-row {
    grid-template-columns: 56px 126px minmax(0, 1fr) 42px;
    gap: 18px;
  }

  .smyr-news-cate {
    display: none;
  }

  .smyr-news-thumb {
    width: 126px;
  }

  .smyr-case-intro-grid,
  .smyr-case-list-card,
  .smyr-news-list-card,
  .smyr-case-detail-shell,
  .smyr-case-cta-inner {
    grid-template-columns: 1fr;
  }

  .smyr-news-list-img {
    min-height: 260px;
  }

  .smyr-news-list-body,
  .smyr-news-detail-head,
  .smyr-news-rich {
    padding-left: 32px;
    padding-right: 32px;
  }

  .smyr-news-rich {
    margin-left: 32px;
    margin-right: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .smyr-news-detail-cover {
    margin-left: 32px;
    margin-right: 32px;
  }

  .smyr-news-prevnext {
    padding-left: 32px;
    padding-right: 32px;
  }

  .smyr-case-detail-media {
    min-height: 320px;
  }

  .smyr-case-detail-content {
    padding: 34px 28px;
  }

  .smyr-about-profile-layout,
  .smyr-about-area-panel,
  .smyr-about-layout,
  .smyr-about-flow {
    grid-template-columns: 1fr;
  }

  .smyr-about-profile-media {
    max-width: 680px;
  }

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

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

  .smyr-about-side {
    position: relative;
    top: auto;
  }

  .smyr-about-capability {
    grid-template-columns: 1fr;
  }

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

  .smyr-case-cta-actions {
    justify-content: flex-start;
  }

  .smyr-album-head {
    display: grid;
    align-items: start;
  }

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

  .smyr-about-album-wrap {
    padding-left: 52px;
    padding-right: 52px;
  }

  .smyr-contact-main-grid,
  .smyr-contact-map-row,
  .smyr-area-home-intro-layout,
  .smyr-area-detail-layout {
    grid-template-columns: 1fr;
  }

  .smyr-area-home-intro-layout::before {
    display: none;
  }

  .smyr-area-story-hero,
  .smyr-area-story-main {
    grid-template-columns: 1fr;
  }

  .smyr-area-story-hero {
    gap: 28px;
    padding: 32px 28px;
  }

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

  .smyr-area-feature-band {
    padding: 34px 28px 36px;
  }

  .smyr-area-feature-head h2 {
    font-size: 30px;
  }

  .smyr-area-story-media {
    aspect-ratio: 16 / 10;
    max-width: 520px;
    width: 100%;
  }

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

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

  .smyr-contact-guide-content ul,
  .smyr-contact-guide-content ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smyr-contact-map {
    min-height: 360px;
  }

  .smyr-contact-map iframe {
    min-height: 360px;
  }

  .smyr-capability-layout,
  .smyr-brand-band,
  .smyr-quality-layout,
  .smyr-contact-layout {
    grid-template-columns: 1fr;
  }

  .smyr-quality-visual,
  .smyr-quality-visual img {
    min-height: 440px;
  }

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

  .smyr-footer-service {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .smyr-footer-service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .smyr-footer-service-item {
    min-height: 0;
  }

  .smyr-footer-qr-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --smyr-container-width: 100%;
    --smyr-page-gutter: 32px;
  }

  body {
    padding-top: var(--smyr-header-height, 84px);
    font-size: 16px;
    line-height: 1.72;
  }

  .smyr-section {
    padding: 68px 0;
  }

  .smyr-section-head {
    margin-bottom: 36px;
  }

  .smyr-section-head h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .smyr-page-hero {
    padding: 70px 0 64px;
  }

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

  .smyr-page-hero p {
    font-size: 16px;
    line-height: 1.78;
  }

  .smyr-case-intro-grid,
  .smyr-case-summary-card {
    padding: 24px;
  }

  .smyr-case-intro-grid h2,
  .smyr-case-summary-card h2,
  .smyr-case-cta-inner h2 {
    font-size: 32px;
    line-height: 1.24;
  }

  .smyr-case-list {
    gap: 22px;
  }

  .smyr-case-list-img,
  .smyr-case-list-img img {
    min-height: 230px;
  }

  .smyr-case-list-body {
    padding: 24px;
  }

  .smyr-about-side,
  .smyr-about-article,
  .smyr-about-flow {
    padding: 24px;
  }

  .smyr-about-profile-copy h2 {
    font-size: 34px;
  }

  .smyr-about-profile-shell {
    padding: 26px 20px;
  }

  .smyr-about-profile-layout {
    gap: 28px;
  }

  .smyr-about-profile-lead .smyr-about-rich {
    font-size: 16px;
    line-height: 1.86;
  }

  .smyr-about-profile-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .smyr-about-profile-points span {
    min-height: 56px;
    font-size: 15px;
  }

  .smyr-about-profile-media figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .smyr-about-album-wrap {
    padding: 0 0 44px;
  }

  .smyr-about-album-btn {
    display: none;
  }

  .smyr-product-more-slider-wrap {
    padding: 0 0 44px;
  }

  .smyr-product-more-btn {
    display: none;
  }

  .smyr-about-album-card strong {
    min-height: 68px;
    font-size: 16px;
  }

  .smyr-about-area-panel {
    padding: 28px 22px;
  }

  .smyr-about-area-copy h2 {
    font-size: 30px;
  }

  .smyr-about-area-copy p {
    font-size: 16px;
    line-height: 1.78;
  }

  .smyr-about-area-list {
    grid-template-columns: 1fr;
  }

  .smyr-about-area-list a {
    min-height: 72px;
    padding: 16px;
  }

  .smyr-about-side h2,
  .smyr-about-article-head h2,
  .smyr-about-flow h2 {
    font-size: 30px;
  }

  .smyr-about-stat-grid div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .smyr-about-flow ol {
    grid-template-columns: 1fr;
  }

  .smyr-album-head h2 {
    font-size: 32px;
  }

  .smyr-album-grid {
    grid-template-columns: 1fr;
  }

  .smyr-album-card-body {
    padding: 22px;
  }

  .smyr-album-lightbox {
    padding: 20px;
  }

  .smyr-album-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .smyr-album-lightbox-prev {
    left: 10px;
  }

  .smyr-album-lightbox-next {
    right: 10px;
  }

  .smyr-album-lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .smyr-album-lightbox-panel img {
    max-height: calc(100vh - 132px);
  }

  .smyr-case-detail-media {
    min-height: 260px;
  }

  .smyr-case-detail-content {
    padding: 28px 22px;
  }

  .smyr-contact-main {
    padding-top: 58px;
  }

  .smyr-contact-panel-primary {
    padding: 28px 24px;
  }

  .smyr-area-detail-head,
  .smyr-area-detail-content {
    padding: 24px;
  }

  .smyr-area-detail-head h2 {
    font-size: 30px;
  }

  .smyr-area-detail-media,
  .smyr-area-detail-media img,
  .smyr-area-home-intro-media,
  .smyr-area-home-intro-media img {
    min-height: 0;
  }

  .smyr-area-home-intro-head {
    margin-bottom: 30px;
  }

  .smyr-area-home-intro-layout {
    gap: 26px;
  }

  .smyr-area-story-hero {
    padding: 24px 20px;
  }

  .smyr-area-story-copy h2 {
    font-size: 28px;
  }

  .smyr-area-story-copy p,
  .smyr-area-story-rich p,
  .smyr-area-feature-rich p {
    font-size: 15px;
    line-height: 1.82;
  }

  .smyr-area-story-rich h1,
  .smyr-area-story-rich h2,
  .smyr-area-story-rich h3 {
    font-size: 26px;
  }

  .smyr-area-feature-grid {
    grid-template-columns: 1fr;
  }

  .smyr-area-feature-band {
    padding: 26px 20px 28px;
  }

  .smyr-area-feature-head {
    margin-bottom: 22px;
  }

  .smyr-area-feature-head h2 {
    font-size: 25px;
  }

  .smyr-area-feature-item {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 20px;
  }

  .smyr-area-feature-rich h1,
  .smyr-area-feature-rich h2,
  .smyr-area-feature-rich h3,
  .smyr-area-feature-rich strong,
  .smyr-area-feature-rich b {
    font-size: 19px;
  }

  .smyr-area-home-intro-rich h2 {
    font-size: 24px;
  }

  .smyr-area-home-intro-rich h3 {
    font-size: 18px;
  }

  .smyr-area-home-intro-card {
    padding: 0;
  }

  .smyr-area-home-intro-card .smyr-area-home-intro-rich h2 {
    font-size: 26px;
  }

  .smyr-area-home-intro-card p,
  .smyr-area-home-intro-card .smyr-area-home-intro-rich {
    font-size: 16px;
    line-height: 1.85;
  }

  .smyr-area-grid {
    grid-template-columns: 1fr;
  }

  .smyr-area-cates a {
    min-height: 40px;
    font-size: 15px;
    padding: 0 16px;
  }

  .smyr-contact-panel-primary h2 {
    font-size: 30px;
  }

  .smyr-contact-panel-primary p,
  .smyr-contact-qrcode-card p {
    font-size: 16px;
    line-height: 1.78;
  }

  .smyr-contact-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .smyr-contact-card i,
  .smyr-contact-card > svg {
    width: 44px;
    height: 44px;
    padding: 11px;
  }

  .smyr-contact-card strong {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .smyr-contact-map-row {
    gap: 20px;
  }

  .smyr-contact-qrcode-card {
    padding: 24px;
  }

  .smyr-contact-qrcode-card img {
    width: 138px;
    height: 138px;
  }

  .smyr-contact-guide {
    padding: 26px 22px;
  }

  .smyr-contact-guide-grid {
    grid-template-columns: 1fr;
  }

  .smyr-contact-guide-content ul,
  .smyr-contact-guide-content ol {
    grid-template-columns: 1fr;
  }

  .smyr-contact-guide-head h2 {
    font-size: 28px;
  }

  .smyr-case-list-top h2 {
    font-size: 25px;
  }

  .smyr-case-meta {
    gap: 8px;
  }

  .smyr-case-meta > span {
    width: 100%;
    justify-content: flex-start;
    min-height: 36px;
  }

  .smyr-case-detail-grid {
    grid-template-columns: 1fr;
  }

  .smyr-case-list-body p,
  .smyr-case-list-body .smyr-case-info,
  .smyr-case-intro-copy p,
  .smyr-case-summary-card p,
  .smyr-case-cta-inner p {
    font-size: 16px;
    line-height: 1.78;
  }

  .smyr-news-list-img {
    min-height: 210px;
  }

  .smyr-news-list-body {
    padding: 24px;
  }

  .smyr-news-list-body h2,
  .smyr-news-detail-head h1 {
    font-size: 25px;
  }

  .smyr-news-detail-head,
  .smyr-news-rich {
    padding-left: 24px;
    padding-right: 24px;
  }

  .smyr-news-rich {
    margin-left: 24px;
    margin-right: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .smyr-news-detail-cover {
    margin-left: 24px;
    margin-right: 24px;
  }

  .smyr-news-prevnext {
    grid-template-columns: 1fr;
    padding: 20px 24px 28px;
  }

  .smyr-case-more,
  .smyr-secondary-link,
  .smyr-case-cta .smyr-primary-link {
    width: 100%;
  }

  .smyr-case-cta-actions {
    width: 100%;
  }

  .smyr-section-head p,
  .smyr-advantage-lead p,
  .smyr-capability-copy p,
  .smyr-brand-band p,
  .smyr-contact-copy p {
    font-size: 16px;
    line-height: 1.78;
  }

  .smyr-advantage-list {
    grid-template-columns: 1fr;
  }

  .smyr-advantage-lead h2 {
    font-size: 36px;
  }

  .smyr-advantage-item {
    min-height: 0;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
    padding: 18px;
  }

  .smyr-advantage-item > i {
    width: 36px;
    height: 36px;
  }

  .smyr-product-card div {
    min-height: 0;
    padding: 24px;
  }

  .smyr-product-list {
    grid-template-columns: 1fr;
  }

  .smyr-product-list-body {
    padding: 24px;
  }

  .smyr-product-list-top h2 {
    font-size: 22px;
  }

  .smyr-product-type-grid,
  .smyr-product-quality-grid,
  .smyr-product-material-grid,
  .smyr-product-planning-materials,
  .smyr-product-point-list,
  .smyr-product-brand-list {
    grid-template-columns: 1fr;
  }

  .smyr-product-capability .smyr-product-point-list article:last-child {
    grid-column: auto;
  }

  .smyr-product-split h2,
  .smyr-product-capability-intro h2,
  .smyr-product-copy-panel h2,
  .smyr-product-planning-copy h2,
  .smyr-product-brand-band h2,
  .smyr-product-flow h2,
  .smyr-product-detail-copy h2,
  .smyr-product-detail-extra h2 {
    font-size: 30px;
  }

  .smyr-product-planning-flow-head h3 {
    font-size: 28px;
  }

  .smyr-product-planning-shell {
    gap: 28px;
  }

  .smyr-product-planning-copy {
    padding-left: 22px;
  }

  .smyr-product-planning-materials article {
    min-height: 154px;
    padding: 24px;
  }

  .smyr-product-planning-materials span {
    max-width: none;
  }

  .smyr-product-planning-flow {
    padding: 24px;
  }

  .smyr-product-planning-flow ol {
    grid-template-columns: 1fr;
  }

  .smyr-product-planning-flow li {
    min-height: 0;
  }

  .smyr-product-capability-shell {
    gap: 28px;
    padding: 0;
  }

  .smyr-product-copy-panel {
    padding: 24px;
  }

  .smyr-product-brand-band,
  .smyr-product-flow,
  .smyr-product-detail-copy,
  .smyr-product-detail-extra {
    padding: 24px;
  }

  .smyr-product-detail-wechat {
    align-items: flex-start;
    margin-top: 16px;
    padding-top: 18px;
  }

  .smyr-product-detail-wechat img {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .smyr-product-detail-wechat strong {
    font-size: 16px;
  }

  .smyr-product-detail-wechat span {
    font-size: 14px;
  }

  .smyr-product-flow ol {
    grid-template-columns: 1fr;
  }

  .smyr-product-planning-flow ol {
    grid-template-columns: 1fr;
  }

  .smyr-product-image-panel img,
  .smyr-product-detail-media img {
    min-height: 260px;
  }

  .smyr-product-capability .smyr-product-image-panel img {
    min-height: 260px;
  }

  .smyr-product-qc-layout {
    margin-top: 30px;
  }

  .smyr-product-qc-visual,
  .smyr-product-qc-visual img {
    min-height: 340px;
  }

  .smyr-product-qc-visual div {
    display: block;
  }

  .smyr-product-qc-visual span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .smyr-product-qc-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .smyr-product-qc-list {
    grid-template-columns: 1fr;
  }

  .smyr-product-qc-list article:first-child {
    grid-column: auto;
  }

  .smyr-product-qc-list i,
  .smyr-product-qc-list article > svg {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .smyr-product-qc-list h3 {
    font-size: 21px;
  }

  .smyr-product-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .smyr-news-board {
    border-radius: 8px;
  }

  .smyr-news-row {
    min-height: 0;
    grid-template-columns: 96px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 20px;
  }

  .smyr-news-index {
    display: none;
  }

  .smyr-news-thumb {
    width: 96px;
    align-self: stretch;
    aspect-ratio: 4 / 3;
  }

  .smyr-news-copy strong {
    font-size: 19px;
    line-height: 1.45;
    white-space: normal;
  }

  .smyr-news-copy em {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: initial;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .smyr-product-grid,
  .smyr-quality-note,
  .smyr-case-swiper:not(.swiper-initialized) .swiper-wrapper,
  .smyr-tags,
  .smyr-brand-list,
  .smyr-contact-form {
    grid-template-columns: 1fr;
  }

  .smyr-quality-layout {
    margin-top: 30px;
  }

  .smyr-quality-visual,
  .smyr-quality-visual img {
    min-height: 340px;
  }

  .smyr-quality-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .smyr-quality-visual div {
    display: block;
  }

  .smyr-quality-visual span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .smyr-quality-list i,
  .smyr-quality-list article > svg {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .smyr-capability-copy h2,
  .smyr-brand-band h2,
  .smyr-contact-copy h2 {
    font-size: 36px;
  }

  .smyr-contact-form {
    padding: 22px;
  }

  .smyr-contact-qr {
    align-items: flex-start;
  }

  .smyr-vcode-control {
    grid-template-columns: minmax(0, 1fr) 132px;
  }

  .smyr-vcode-control img {
    width: 104px;
  }

  .smyr-brand-list span {
    min-height: 72px;
    font-size: 20px;
  }

  .smyr-brand-band {
    gap: 18px;
  }

  .smyr-brand-band p {
    margin-top: 12px;
  }

  .smyr-swiper-btn {
    width: 42px;
    height: 42px;
  }

  .smyr-swiper-btn svg {
    width: 20px;
    height: 20px;
  }

  .smyr-swiper-pagination {
    bottom: 16px !important;
  }

  .smyr-footer-links-inner,
  .smyr-footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .smyr-footer-links-inner {
    gap: 12px;
    padding: 18px 0;
  }

  .smyr-footer-links-inner div {
    justify-content: flex-start;
  }

  .smyr-footer-service {
    padding: 40px 0 34px;
  }

  .smyr-footer-service > *,
  .smyr-footer-quick,
  .smyr-footer-service-grid,
  .smyr-footer-service-item {
    min-width: 0;
    max-width: 100%;
  }

  .smyr-footer-service h2 {
    font-size: 26px;
  }

  .smyr-footer-service-logo {
    width: min(190px, 70vw);
    margin-bottom: 14px;
  }

  .smyr-footer-service-logo img {
    max-height: 64px;
  }

  .smyr-footer-service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .smyr-footer-quick {
    margin-top: 30px;
  }

  .smyr-footer-quick div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .smyr-footer-quick a {
    white-space: normal;
  }

  .smyr-footer-service-item i,
  .smyr-footer-service-item > svg {
    grid-row: auto;
  }

  .smyr-float-contact {
    right: 8px;
    bottom: 14px;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(15, 78, 145, .16);
  }

  .smyr-float-contact-item {
    width: 44px;
    min-height: 44px;
    padding: 0;
    gap: 0;
  }

  .smyr-float-contact-item span {
    display: none;
  }

  .smyr-float-contact-item svg {
    width: 21px;
    height: 21px;
  }

  .smyr-float-back-top {
    display: none;
    max-height: none;
    min-height: 44px;
    transform: none;
    transition: opacity .2s ease, background-color .2s ease, color .2s ease;
  }

  .smyr-float-back-top.is-visible {
    display: grid;
    max-height: none;
    min-height: 44px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .smyr-float-contact-item em,
  .smyr-float-qrcode {
    display: none;
  }

  .smyr-footer-qr-item {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .smyr-footer-service-qr {
    grid-row: 1 / span 2;
    width: 90px;
    height: 90px;
  }

  .smyr-kicker,
  .smyr-page-hero .smyr-kicker,
  .smyr-about-profile-copy .smyr-kicker,
  .smyr-about-area-copy .smyr-kicker,
  .smyr-area-home-intro-head .smyr-kicker,
  .smyr-product-copy-panel .smyr-kicker,
  .smyr-product-planning-flow .smyr-kicker,
  .smyr-contact-guide .smyr-kicker,
  .smyr-case-cta-inner .smyr-kicker {
    font-size: 12px;
  }

  .smyr-kicker + h1,
  .smyr-kicker + h2,
  .smyr-section-head h2,
  .smyr-page-hero h1,
  .smyr-advantage-lead h2,
  .smyr-capability-copy h2,
  .smyr-brand-band h2,
  .smyr-contact-copy h2,
  .smyr-about-profile-copy h2,
  .smyr-about-area-copy h2,
  .smyr-area-home-intro-head h2,
  .smyr-area-feature-head h2,
  .smyr-contact-guide-head h2,
  .smyr-case-cta-inner h2,
  .smyr-product-qc-section .smyr-section-head h2 {
    font-size: 22px !important;
    line-height: 1.28;
  }

  .smyr-section:not(.smyr-advantages) {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .smyr-advantages {
    padding-top: 34px;
  }

  .smyr-advantages .smyr-kicker {
    display: none;
  }

  .smyr-advantage-lead {
    align-items: center;
  }

  .smyr-advantage-lead > h2,
  .smyr-advantage-lead > p {
    text-align: center;
  }

  .smyr-section-head p,
  .smyr-advantage-lead p,
  .smyr-capability-copy p,
  .smyr-brand-band p,
  .smyr-contact-copy p,
  .smyr-page-hero p,
  .smyr-about-area-copy p,
  .smyr-area-home-intro-head p,
  .smyr-area-feature-head p,
  .smyr-contact-guide-head p,
  .smyr-product-qc-section .smyr-section-head p {
    font-size: 12px !important;
    line-height: 1.65;
  }

  .smyr-section-head p {
    margin-top: 8px;
  }

  .smyr-advantage-lead p {
    margin: 10px 0 18px;
  }

  .smyr-page-hero p,
  .smyr-area-home-intro-head p,
  .smyr-area-feature-head p,
  .smyr-contact-guide-head p {
    margin-top: 8px;
  }

  .smyr-advantage-photo-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: left;
  }

  .smyr-advantage-photo-caption strong {
    font-size: 16px;
    line-height: 1.35;
  }

  .smyr-advantage-photo-caption span {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.65;
  }

  .smyr-advantage-item h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .smyr-advantage-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  .smyr-product-card h3,
  .smyr-product-card h3 a {
    font-size: 16px;
    line-height: 1.38;
  }

  .smyr-product-card p {
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .smyr-product-more {
    min-height: 34px;
    margin-top: 14px;
    padding: 0 16px;
    gap: 6px;
    font-size: 12px;
    line-height: 1.25;
  }

  .smyr-product-more svg {
    width: 13px;
    height: 13px;
  }

  .smyr-capability-layout {
    gap: 18px !important;
  }

  .smyr-capability-text {
    margin: 14px 0 12px;
  }

  .smyr-capability-copy p {
    margin-top: 10px;
  }

  .smyr-capability-text p {
    margin-top: 8px !important;
  }

  .smyr-capability-panel {
    gap: 10px;
    padding: 14px;
  }

  .smyr-capability-metric {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .smyr-capability-metric strong {
    width: 56px;
    height: 44px;
    font-size: 16px;
  }

  .smyr-capability-metric span {
    font-size: 14px;
    line-height: 1.45;
  }

  .smyr-tags {
    gap: 10px;
    margin-top: 10px;
  }

  .smyr-tags span {
    min-height: 52px;
    gap: 8px;
    padding: 9px 14px;
    font-size: 15px;
    line-height: 1.28;
  }

  .smyr-tags i,
  .smyr-tags svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    padding: 6px;
  }

  .smyr-brand-band {
    gap: 14px !important;
  }

  .smyr-brand-band p {
    margin-top: 8px;
  }

  .smyr-brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .smyr-quality-list {
    grid-template-columns: 1fr !important;
  }

  .smyr-brand-list span {
    min-height: 62px;
    padding: 10px;
  }

  .smyr-quality-visual strong {
    font-size: 22px;
  }

  .smyr-quality-visual span {
    font-size: 14px;
  }

  .smyr-case-body {
    gap: 6px;
    padding: 10px !important;
  }

  .smyr-case-body > span {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.3;
  }

  .smyr-case-body h3 {
    font-size: 16px !important;
    line-height: 1.38 !important;
  }

  .smyr-case-info,
  .smyr-case-body p {
    margin-top: 0;
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .smyr-cases .smyr-section-action {
    margin-top: 0;
  }

  .smyr-cases .smyr-primary-link {
    min-height: 42px;
    padding: 0 20px;
    font-size: 14px;
  }

  .smyr-cases .smyr-primary-link svg {
    width: 15px;
    height: 15px;
  }

  .smyr-contact-info a,
  .smyr-contact-info span,
  .smyr-contact-qr span {
    font-size: 14px !important;
    line-height: 1.55;
  }

  .smyr-contact-qr strong {
    font-size: 16px !important;
    line-height: 1.35;
  }

  .smyr-contact-form {
    gap: 12px !important;
    padding: 14px !important;
  }

  .smyr-contact-form input,
  .smyr-contact-form textarea,
  .smyr-file-field > label,
  .smyr-vcode-field > label,
  .smyr-file-picker,
  .smyr-file-picker span,
  .smyr-file-picker strong,
  .smyr-file-help,
  .smyr-contact-form button {
    font-size: 14px !important;
  }

  .smyr-contact-form input {
    min-height: 38px;
    padding: 7px 12px;
  }

  .smyr-contact-form textarea {
    min-height: 86px;
    padding: 9px 12px;
  }

  .smyr-file-field > label,
  .smyr-vcode-field > label {
    margin-bottom: 5px;
  }

  .smyr-file-picker {
    min-height: 44px;
    gap: 8px;
    padding: 5px 10px;
    line-height: 1.35;
  }

  .smyr-file-picker span,
  .smyr-file-picker strong {
    min-height: 34px;
  }

  .smyr-file-picker span {
    padding: 0 12px;
  }

  .smyr-file-help {
    margin-top: 5px;
  }

  .smyr-vcode-control {
    gap: 8px;
  }

  .smyr-vcode-control img {
    height: 38px;
  }

  .smyr-contact-form button {
    min-height: 42px;
  }

  .smyr-news-copy strong {
    display: block;
    overflow: hidden;
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .smyr-news-copy em {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .smyr-news .smyr-primary-link {
    min-height: 42px;
    padding: 0 20px;
    font-size: 14px;
  }

  .smyr-news .smyr-primary-link svg {
    width: 15px;
    height: 15px;
  }

  .smyr-footer-quick strong {
    font-size: 16px;
  }

  .smyr-footer-quick div {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .smyr-footer-quick a {
    font-size: 14px;
    line-height: 1.45;
  }

  .smyr-footer-service-title > span {
    font-size: 12px;
  }

  .smyr-footer-service h2 {
    margin-top: 4px;
    font-size: 22px;
    line-height: 1.28;
  }

  .smyr-footer-service-item {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 6px 12px;
    align-content: center;
    padding: 16px;
  }

  .smyr-footer-service-item i,
  .smyr-footer-service-item > svg {
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .smyr-footer-service-item strong {
    font-size: 16px;
    line-height: 1.35;
  }

  .smyr-footer-service-item span {
    font-size: 14px;
    line-height: 1.6;
  }

  .smyr-footer-qr-item {
    grid-template-columns: 82px minmax(0, 1fr) !important;
  }

  .smyr-footer-service-qr {
    grid-row: 1 / span 2;
    width: 82px;
    height: 82px;
  }

  .smyr-footer-bottom-inner,
  .smyr-footer-bottom a {
    font-size: 12px;
    line-height: 1.6;
  }

  .smyr-page-hero .smyr-kicker {
    display: none;
  }

  .smyr-page-hero {
    padding: 40px 0;
  }

  .smyr-breadcrumb-inner {
    gap: 6px;
    min-height: 40px;
    font-size: 12px;
    line-height: 1.35;
  }

  .smyr-breadcrumb-inner svg {
    width: 16px;
    height: 16px;
  }

  .smyr-product-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .smyr-product-hero-actions .smyr-primary-link,
  .smyr-product-hero-actions .smyr-secondary-link {
    width: 100%;
    min-height: 40px;
    justify-self: stretch;
    justify-content: center;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  .smyr-product-hero-actions .smyr-primary-link svg,
  .smyr-product-hero-actions .smyr-secondary-link svg {
    width: 15px;
    height: 15px;
  }

  .smyr-product-type-body em {
    display: none;
  }

  .smyr-product-type-body {
    min-height: 0;
    gap: 8px;
  }

  .smyr-product-more-slider-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .smyr-product-more-swiper .smyr-product-list-body {
    min-height: 0;
    padding: 10px !important;
  }

  .smyr-product-more-swiper .smyr-product-list-top h2 {
    font-size: 14px !important;
    line-height: 1.35 !important;
    text-align: center;
  }

  .smyr-product-more-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .smyr-product-more-pagination .swiper-pagination-bullet-active {
    width: 20px;
  }

  .smyr-product-copy-panel p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .smyr-product-copy-panel .smyr-product-point-list {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 14px;
  }

  .smyr-product-point-list article {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 10px !important;
  }

  .smyr-product-point-list svg {
    width: 24px;
    height: 24px;
  }

  .smyr-product-point-list span {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .smyr-case-list {
    grid-template-columns: 1fr !important;
  }

  .smyr-case-list-top span {
    display: none;
  }

  .smyr-case-list-body::before {
    display: none;
  }

  .smyr-case-more {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
    line-height: 1.2;
  }

  .smyr-case-more svg {
    width: 13px;
    height: 13px;
  }

  .smyr-advantage-list,
  .smyr-product-grid,
  .smyr-product-list,
  .smyr-product-type-grid,
  .smyr-product-quality-grid,
  .smyr-product-material-grid,
  .smyr-product-planning-materials,
  .smyr-product-brand-list,
  .smyr-product-qc-list,
  .smyr-quality-note,
  .smyr-news-list,
  .smyr-area-grid,
  .smyr-album-grid,
  .smyr-about-album-swiper:not(.swiper-initialized) .swiper-wrapper,
  .smyr-case-swiper:not(.swiper-initialized) .swiper-wrapper,
  .smyr-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .smyr-advantage-list {
    grid-template-columns: 1fr !important;
  }

  .smyr-section,
  .smyr-section:not(.smyr-advantages) {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .smyr-advantages {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .smyr-section-head,
  .smyr-about-section-head,
  .smyr-area-home-intro-head,
  .smyr-area-feature-head,
  .smyr-contact-guide-head,
  .smyr-search-top {
    margin-bottom: 14px;
  }

  .smyr-section-head p,
  .smyr-page-hero p,
  .smyr-advantage-lead p,
  .smyr-capability-copy p,
  .smyr-brand-band p,
  .smyr-contact-copy p,
  .smyr-about-area-copy p,
  .smyr-area-home-intro-head p,
  .smyr-area-feature-head p,
  .smyr-contact-guide-head p,
  .smyr-product-qc-section .smyr-section-head p,
  .smyr-product-card p,
  .smyr-product-list-body p,
  .smyr-product-type-body span,
  .smyr-case-list-body p,
  .smyr-case-list-body .smyr-case-info,
  .smyr-news-list-body p,
  .smyr-area-card-body span,
  .smyr-search-card-body p,
  .smyr-quality-list p,
  .smyr-product-qc-list p,
  .smyr-product-point-list span,
  .smyr-product-planning-materials p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .smyr-page-hero h1,
  .smyr-section-head h2,
  .smyr-kicker + h1,
  .smyr-kicker + h2,
  .smyr-advantage-lead h2,
  .smyr-capability-copy h2,
  .smyr-brand-band h2,
  .smyr-contact-copy h2,
  .smyr-about-profile-copy h2,
  .smyr-about-area-copy h2,
  .smyr-area-home-intro-head h2,
  .smyr-area-feature-head h2,
  .smyr-contact-guide-head h2,
  .smyr-case-cta-inner h2,
  .smyr-product-split h2,
  .smyr-product-capability-intro h2,
  .smyr-product-copy-panel h2,
  .smyr-product-planning-copy h2,
  .smyr-product-brand-band h2,
  .smyr-product-flow h2,
  .smyr-product-detail-copy h2,
  .smyr-product-detail-extra h2,
  .smyr-news-detail-head h1,
  .smyr-contact-panel-primary h2 {
    font-size: 22px !important;
    line-height: 1.28 !important;
  }

  .smyr-product-card div,
  .smyr-product-list-body,
  .smyr-product-type-body,
  .smyr-product-quality-card,
  .smyr-product-material-card,
  .smyr-product-planning-materials article,
  .smyr-product-qc-list article,
  .smyr-quality-list article,
  .smyr-case-list-body,
  .smyr-news-list-body,
  .smyr-area-card-body,
  .smyr-search-card-body,
  .smyr-contact-card,
  .smyr-album-card-body {
    padding: 12px !important;
  }

  .smyr-product-card h3,
  .smyr-product-card h3 a,
  .smyr-product-list-top h2,
  .smyr-product-type-body strong,
  .smyr-case-list-top h2,
  .smyr-news-list-body h2,
  .smyr-area-card-body strong,
  .smyr-search-card-body h3,
  .smyr-quality-list h3,
  .smyr-product-qc-list h3 {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .smyr-product-detail-copy {
    gap: 10px;
  }

  .smyr-product-detail-copy h2 {
    margin-top: 0;
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .smyr-product-detail-rich {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .smyr-product-detail-rich p {
    margin-bottom: 8px;
  }

  .smyr-case-detail-page .smyr-product-detail-feature div {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .smyr-case-detail-page .smyr-product-detail-feature strong,
  .smyr-case-detail-page .smyr-product-detail-feature b {
    font-size: 14px !important;
  }

  .smyr-product-detail-wechat {
    gap: 12px;
    margin-top: 10px;
    padding-top: 12px;
  }

  .smyr-product-detail-wechat span {
    font-size: 12px !important;
    line-height: 1.5;
  }

  .smyr-product-detail-grid article {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px 10px;
  }

  .smyr-product-detail-grid article > svg,
  .smyr-product-detail-grid article > i {
    align-self: center;
    width: 24px;
    height: 24px;
  }

  .smyr-product-detail-grid h3 {
    align-self: center;
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .smyr-product-detail-grid p,
  .smyr-product-detail-grid div {
    grid-column: 1 / -1;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .smyr-product-detail-extra h2 {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .smyr-product-detail-extra .smyr-product-detail-rich {
    margin-top: 10px;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .smyr-about-area {
    padding-top: 12px !important;
  }

  .smyr-about-area-panel {
    gap: 16px !important;
    padding: 22px 16px !important;
  }

  .smyr-about-area-copy h2 {
    margin: 8px 0 10px;
  }

  .smyr-about-area-copy .smyr-primary-link {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
  }

  .smyr-about-area-copy .smyr-primary-link svg {
    width: 15px;
    height: 15px;
  }

  .smyr-about-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .smyr-about-area-list a {
    min-height: 52px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 10px;
  }

  .smyr-about-area-list span {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .smyr-about-area-list strong {
    font-size: 14px;
    line-height: 1.3;
  }

  .smyr-album-card-body h2,
  .smyr-about-album-card strong {
    overflow: hidden;
    width: 100%;
    font-size: 14px !important;
    line-height: 1.35 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .smyr-album-page .smyr-album-card-body {
    min-height: 48px !important;
    padding: 10px 12px !important;
  }

  .smyr-album-page .smyr-album-card-body h2 {
    display: block;
    max-width: 100%;
  }

  .smyr-about-page .smyr-about-album-card strong {
    min-height: 48px !important;
    padding: 10px 12px !important;
  }

  .smyr-product-card,
  .smyr-product-list-card,
  .smyr-product-type-card,
  .smyr-case-list-card,
  .smyr-news-list-card,
  .smyr-area-card,
  .smyr-search-card,
  .smyr-album-card {
    min-width: 0;
  }

  .smyr-product-card-img,
  .smyr-product-card img,
  .smyr-product-list-img,
  .smyr-product-list-img img,
  .smyr-product-type-img,
  .smyr-product-type-img img,
  .smyr-case-list-img,
  .smyr-case-list-img img,
  .smyr-news-list-img,
  .smyr-news-list-img img,
  .smyr-area-card-img,
  .smyr-area-card-img img,
  .smyr-search-card-img,
  .smyr-search-card-img img,
  .smyr-album-card-media,
  .smyr-album-card-media img {
    min-height: 0 !important;
  }

  .smyr-about-profile-copy h2 {
    margin: 8px 0 12px !important;
  }

  .smyr-about-profile-lead .smyr-about-rich,
  .smyr-about-profile-lead .smyr-about-rich p {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .smyr-about-profile-lead .smyr-about-rich p {
    margin-bottom: 12px !important;
  }

  .smyr-area-page .smyr-area-cates {
    gap: 10px !important;
  }

  .smyr-area-page .smyr-area-cates a {
    min-height: 38px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .smyr-area-page .smyr-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .smyr-area-page .smyr-area-card-body {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
  }

  .smyr-area-page .smyr-area-card-body em {
    justify-self: start;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .smyr-area-page .smyr-area-card-body strong {
    justify-self: end;
    font-size: 14px !important;
    line-height: 1.2 !important;
    text-align: right;
  }

  .smyr-area-page .smyr-area-card-body > span {
    display: -webkit-box;
    overflow: hidden;
    grid-column: 1 / -1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .smyr-area-home-intro .smyr-area-story-rich h1,
  .smyr-area-home-intro .smyr-area-story-rich h2,
  .smyr-area-home-intro .smyr-area-story-rich h3 {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .smyr-area-home-intro .smyr-area-story-copy p,
  .smyr-area-home-intro .smyr-area-story-rich p {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .smyr-area-home-intro .smyr-area-feature-item {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    align-items: start;
    gap: 12px;
  }

  .smyr-area-home-intro .smyr-area-feature-item em {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .smyr-area-home-intro .smyr-area-feature-rich h1,
  .smyr-area-home-intro .smyr-area-feature-rich h2,
  .smyr-area-home-intro .smyr-area-feature-rich h3,
  .smyr-area-home-intro .smyr-area-feature-rich strong,
  .smyr-area-home-intro .smyr-area-feature-rich b {
    font-size: 18px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  .smyr-area-home-intro .smyr-area-feature-rich p {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  .smyr-contact-page .smyr-contact-panel-primary h2 {
    margin: 10px 0 12px !important;
  }

  .smyr-contact-page .smyr-contact-panel-primary p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .smyr-contact-page .smyr-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px !important;
  }

  .smyr-contact-page .smyr-contact-actions .smyr-primary-link,
  .smyr-contact-page .smyr-contact-actions .smyr-secondary-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .smyr-contact-page .smyr-contact-qrcode-card {
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 14px;
  }

  .smyr-contact-page .smyr-contact-qrcode-card img {
    width: 116px;
    height: 116px;
  }

  .smyr-contact-page .smyr-contact-qrcode-card div {
    margin-top: 0;
  }

  .smyr-contact-page .smyr-contact-qrcode-card strong {
    font-size: 16px !important;
    line-height: 1.35;
  }

  .smyr-contact-page .smyr-contact-qrcode-card p {
    margin-top: 6px;
    font-size: 14px !important;
    line-height: 1.55;
  }

  .smyr-contact-page .smyr-contact-guide-head h2 {
    margin: 4px 0 10px !important;
  }

  .smyr-contact-page .smyr-contact-guide-grid article {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px 10px;
  }

  .smyr-contact-page .smyr-contact-guide-grid article > span {
    font-size: 16px !important;
    line-height: 1.35;
  }

  .smyr-contact-page .smyr-contact-guide-grid h3 {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .smyr-contact-page .smyr-contact-guide-grid p {
    grid-column: 1 / -1;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .smyr-section-head {
    gap: 6px;
  }

  .smyr-quality-layout,
  .smyr-product-qc-layout,
  .smyr-product-planning-shell,
  .smyr-product-capability-shell,
  .smyr-contact-map-row,
  .smyr-area-home-intro-layout,
  .smyr-about-profile-layout {
    gap: 14px !important;
    margin-top: 14px !important;
  }
}
