:root {
  --ly-blue: #003d82;
  --ly-blue-deep: #002958;
  --ly-blue-mid: #0a56b0;
  --ly-orange: #f58220;
  --ly-orange-dark: #d96c12;
  --ly-steel: #5a6a7a;
  --ly-ink: #1a2430;
  --ly-muted: #6b7785;
  --ly-line: #d9e1ea;
  --ly-bg: #f3f6f9;
  --ly-bg-alt: #e8eef5;
  --ly-white: #ffffff;
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Rajdhani", "Noto Sans SC", sans-serif;
  --wrap: min(1180px, calc(100% - clamp(24px, 4vw, 48px)));
  --ly-pad: clamp(12px, 3.2vw, 24px);
}

html { overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--ly-ink);
  background: var(--ly-white);
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.ly-rich table,
.ly-table-scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

a { color: var(--ly-blue-mid); }
a:hover { color: var(--ly-orange); }

.ly-wrap {
  width: var(--wrap);
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Header */
.ly-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--ly-line);
  backdrop-filter: blur(8px);
}
.ly-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}
.ly-logo img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}
.ly-nav-drawer { display: none; }
.ly-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.ly-nav--m { display: none; }
.ly-nav > li { position: relative; }
.ly-nav__head,
.ly-nav__actions { display: none; }
.ly-nav > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--ly-ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
}
.ly-nav > li:hover > a,
.ly-nav > li.current > a { color: var(--ly-blue); }
.ly-nav .drop-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--ly-line);
  box-shadow: 0 12px 28px rgba(0,45,100,.12);
  padding: 8px 0;
  list-style: none;
  margin: 0;
}
.ly-nav > li:hover .drop-menu { display: block; }
.ly-nav .drop-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--ly-steel);
  text-decoration: none;
  font-size: 14px;
}
.ly-nav .drop-menu a:hover { background: var(--ly-bg); color: var(--ly-blue); }
.ly-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ly-orange);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
}
.ly-header__cta:hover { background: var(--ly-orange-dark); color: #fff !important; }
.ly-header__tools { display: none; }
.ly-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ly-line);
  background: #fff;
  cursor: pointer;
}
.ly-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ly-ink);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}
.ly-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ly-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.ly-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.ly-hero { position: relative; background: var(--ly-blue-deep); color: #fff; }
.ly-hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ly-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-color: var(--ly-blue-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity .7s ease, visibility .7s ease;
  pointer-events: none;
}
.ly-hero:not(.is-ready) .ly-hero__slide:first-child,
.ly-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.ly-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,33,70,.78) 0%, rgba(0,45,100,.42) 48%, rgba(0,33,70,.18) 100%);
}
.ly-hero__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(340px, 52vh, 560px);
  display: flex;
  align-items: center;
  padding: clamp(36px, 5vh, 56px) 0;
}
.ly-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 36px);
  letter-spacing: .08em;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.25;
}
.ly-hero__brand::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 12px;
  background: var(--ly-orange);
}
[data-ly-copy] { display: none; }
.ly-hero:not(.is-ready) [data-ly-copy]:first-of-type,
[data-ly-copy].is-active { display: block; }
.ly-hero__title {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 700;
  max-width: 18em;
  color: rgba(255, 255, 255, .96);
}
.ly-hero__lead {
  margin: 0 0 24px;
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,.86);
  max-width: 28em;
  line-height: 1.7;
}
.ly-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ly-hero__pages {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.ly-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.ly-hero__dot.is-active { background: var(--ly-orange); }

.ly-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 2px;
  border: 1px solid transparent;
}
.ly-btn--primary { background: var(--ly-orange); color: #fff !important; }
.ly-btn--primary:hover { background: var(--ly-orange-dark); color: #fff !important; }
.ly-btn--ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.55); }
.ly-btn--ghost:hover { border-color: #fff; }
.ly-btn--blue { background: var(--ly-blue); color: #fff !important; }
.ly-btn--blue:hover { background: var(--ly-blue-mid); color: #fff !important; }
.ly-btn--line { background: #fff; color: var(--ly-blue) !important; border-color: var(--ly-line); }
.ly-btn--line:hover { border-color: var(--ly-blue); }

/* Sections */
.ly-section { padding: clamp(40px, 6vw, 72px) 0; }
.ly-section--muted { background: var(--ly-bg); }
.ly-section--blue {
  background: linear-gradient(135deg, var(--ly-blue-deep), var(--ly-blue-mid));
  color: #fff;
}
.ly-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ly-orange);
}
.ly-section--blue .ly-kicker { color: #ffc089; }
.ly-section__head { margin-bottom: 28px; }
.ly-section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--ly-ink);
}
.ly-section--blue .ly-section__head h2 { color: #fff; }
.ly-section__head p {
  margin: 0;
  color: var(--ly-muted);
  max-width: 40em;
  line-height: 1.7;
}
.ly-section--blue .ly-section__head p { color: rgba(255,255,255,.8); }

.ly-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ly-cat {
  display: block;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--ly-line);
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color .2s, transform .2s;
}
.ly-cat:hover { border-color: var(--ly-blue); transform: translateY(-2px); }
.ly-cat strong { display: block; font-size: 17px; margin-bottom: 6px; color: var(--ly-blue); }
.ly-cat span { font-size: 13px; color: var(--ly-muted); line-height: 1.6; }

.ly-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ly-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ly-line);
  text-decoration: none !important;
  color: inherit !important;
  overflow: hidden;
  min-height: 100%;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ly-card:hover {
  border-color: rgba(10, 86, 176, .45);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 45, 100, .08);
}
.ly-card__media {
  aspect-ratio: 4/3;
  background: var(--ly-bg-alt);
  overflow: hidden;
}
.ly-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.ly-card:hover .ly-card__media img {
  transform: scale(1.04);
}
.ly-card__body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.ly-card__body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ly-ink);
}
.ly-card__body p {
  margin: 0;
  font-size: 13px;
  color: var(--ly-muted);
  line-height: 1.7;
  flex: 1;
}
.ly-card__meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ly-steel);
}

.ly-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.ly-split__media img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--ly-line);
}
.ly-split__copy h2 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 32px); }
.ly-split__copy .ly-rich { color: var(--ly-muted); line-height: 1.8; margin-bottom: 20px; }
.ly-split__copy .ly-rich--excerpt {
  font-weight: 400;
  letter-spacing: .01em;
}

.ly-service-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.ly-service-panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 24px;
}
.ly-service-panel h3 { margin: 0 0 10px; font-size: 20px; }
.ly-service-panel p { margin: 0 0 16px; color: rgba(255,255,255,.82); line-height: 1.7; }
.ly-case-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}
.ly-case-mini__list { display: grid; gap: 12px; flex: 1; }
.ly-case-mini__list a {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none !important;
  color: #fff !important;
  overflow: hidden;
  transition: background .2s ease, border-color .2s ease;
}
.ly-case-mini__list a:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
}
.ly-case-mini img { width: 96px; height: 72px; object-fit: cover; display: block; }
.ly-case-mini strong { display: block; font-size: 14px; margin: 10px 10px 4px; }
.ly-case-mini__list span { display: block; font-size: 12px; color: rgba(255,255,255,.72); margin: 0 10px 10px; line-height: 1.5; }
.ly-case-mini__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ly-case-mini__more i {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.ly-case-mini__more:hover {
  background: var(--ly-orange);
  border-color: var(--ly-orange);
  color: #fff !important;
}
.ly-case-mini__more:hover i { transform: rotate(45deg) translate(1px, -1px); }

.ly-section--cta {
  padding: 0;
  background:
    linear-gradient(105deg, rgba(0, 61, 130, .06) 0%, rgba(243, 246, 249, .95) 42%, rgba(245, 130, 32, .07) 100%),
    var(--ly-bg);
  border-top: 1px solid rgba(0, 61, 130, .08);
  border-bottom: 1px solid rgba(0, 61, 130, .06);
}
.ly-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 22px 0;
}
.ly-cta-bar__copy {
  min-width: min(100%, 280px);
  flex: 1 1 320px;
}
.ly-cta-bar__kicker {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--ly-blue-mid);
  line-height: 1;
}
.ly-cta-bar__copy strong {
  display: block;
  margin: 0 0 6px;
  color: var(--ly-ink);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.25;
}
.ly-cta-bar__meta {
  display: block;
  color: var(--ly-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
.ly-cta-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}
.ly-section--cta .ly-btn {
  min-width: 7.5em;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}
.ly-section--cta .ly-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 41, 88, .12);
}
.ly-cta-bar .phone-text {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-right: 4px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--ly-blue);
  text-decoration: none;
  white-space: nowrap;
}
.ly-cta-bar .phone-text:hover { color: var(--ly-orange); }

/* Inner pages — category / column pagehead */
.ly-pagehead {
  background-color: var(--ly-blue-deep);
  background-image: url("/static/images/nopic.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  min-height: clamp(280px, 36vh, 380px);
  display: flex;
  align-items: center;
}
.ly-pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,33,70,.88) 0%, rgba(0,45,100,.55) 40%, rgba(0,41,88,.22) 68%, rgba(0,41,88,.12) 100%),
    linear-gradient(0deg, rgba(0,28,58,.28), transparent 58%);
}
.ly-pagehead__inner {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 5.5vh, 64px) 0;
  width: var(--wrap);
  margin: 0 auto;
}
.ly-pagehead h1 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.25;
}
.ly-pagehead h1::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 14px;
  background: var(--ly-orange);
}
.ly-pagehead p {
  margin: 0;
  max-width: 36em;
  color: rgba(255,255,255,.88);
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.75;
}
.ly-crumb { font-size: 13px; color: rgba(255,255,255,.7); }
.ly-crumb a { color: #fff; text-decoration: none; }

.ly-subnav {
  background: #fff;
  border-bottom: 1px solid var(--ly-line);
}
.ly-subnav__list {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 10px 0;
}
.ly-subnav a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--ly-steel);
  font-size: 14px;
  font-weight: 600;
}
.ly-subnav a:hover,
.ly-subnav .current a { color: var(--ly-blue); background: var(--ly-bg); }

.ly-main { padding: 36px 0 56px; }
.ly-main__grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.ly-rich {
  line-height: 1.85;
  color: var(--ly-ink);
  overflow-x: auto;
}
.ly-rich img { max-width: 100%; height: auto; }
.ly-rich table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.ly-rich th, .ly-rich td {
  border: 1px solid var(--ly-line);
  padding: 10px 12px;
  text-align: left;
}
.ly-rich th { background: var(--ly-bg); width: 7em; }

.ly-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--ly-line);
  font-size: 14px;
}
.ly-detail-nav a { color: var(--ly-blue); text-decoration: none; }

/* Footer */
.ly-footer {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  color: rgba(255,255,255,.78);
  padding: clamp(22px, 2.8vw, 32px) var(--ly-pad) clamp(12px, 1.6vw, 18px);
  overflow-x: clip;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(10, 86, 176, .28), transparent 58%),
    radial-gradient(ellipse 45% 50% at 0% 100%, rgba(245, 130, 32, .1), transparent 55%),
    linear-gradient(165deg, #0f1a28 0%, #152232 48%, #0c1520 100%);
}
.ly-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0a56b0 0%, #f58220 42%, rgba(245, 130, 32, 0) 78%);
}
.ly-footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
}
.ly-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.ly-footer a:hover { color: var(--ly-orange); }
.ly-footer__grid {
  width: 100%;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 28px;
}
.ly-footer__brand {
  flex: 0 1 260px;
  min-width: 0;
}
.ly-footer__eyebrow {
  display: block;
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: rgba(255, 192, 137, .9);
  line-height: 1;
}
.ly-footer__brand strong {
  display: block;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
  margin: 0 0 2px;
  letter-spacing: .02em;
}
.ly-footer__tagline {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.58);
}
.ly-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 3px;
}
.ly-footer__contact li {
  display: grid;
  grid-template-columns: 3.2em minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.ly-footer__contact em {
  font-style: normal;
  color: rgba(255,255,255,.42);
  font-size: 12px;
}
.ly-footer__contact span,
.ly-footer__contact a {
  color: rgba(255,255,255,.86);
  word-break: break-word;
}
.ly-footer__contact a:hover { color: var(--ly-orange); }
.ly-footer__navs {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 28px;
  min-width: 0;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 2px;
}
.ly-footer__col {
  flex: 0 0 auto;
  min-width: 0;
}
.ly-footer__col h4 {
  position: relative;
  margin: 0 0 8px;
  padding-bottom: 6px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
}
.ly-footer__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--ly-orange), transparent);
}
.ly-footer__col ul { list-style: none; margin: 0; padding: 0; }
.ly-footer__col li { margin: 0 0 6px; font-size: 13px; line-height: 1.4; }
.ly-footer__col a {
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,.72);
  transition: color .22s ease, transform .22s ease;
}
.ly-footer__col a:hover {
  color: #fff;
  transform: translateX(2px);
}
.ly-footer__wechat {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-align: left;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}
.ly-footer__qr {
  display: block;
  flex: 0 0 auto;
  width: 78px;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  padding: 4px;
  background: #fff;
  object-fit: contain;
  box-sizing: border-box;
}
.ly-footer__wechat-copy {
  min-width: 0;
}
.ly-footer__wechat h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .06em;
  text-align: left;
}
.ly-footer__wechat p {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,.58);
  line-height: 1.4;
  white-space: normal;
}
.ly-footer__bottom {
  width: 100%;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 14px;
  font-size: 12px;
}
.ly-footer__copy {
  text-align: left;
  flex: 0 1 auto;
  min-width: 0;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.ly-footer__meta {
  text-align: right;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px 12px;
  color: rgba(255,255,255,.55);
  min-width: 0;
  max-width: 100%;
  line-height: 1.5;
}
.ly-footer__meta a,
.ly-footer__meta span {
  white-space: nowrap;
  word-break: normal;
}

/* Message form */
.ly-form {
  max-width: 720px;
  display: grid;
  gap: 14px;
}
.ly-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.ly-form__lab {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1.4;
}
.ly-form label em {
  color: var(--ly-orange);
  font-style: normal;
  font-weight: 700;
  margin-left: 1px;
}
.ly-form input, .ly-form textarea {
  width: 100%;
  border: 1px solid var(--ly-line);
  padding: 10px 12px;
  font: inherit;
  border-radius: 2px;
  box-sizing: border-box;
}
.ly-form textarea { min-height: 140px; resize: vertical; }
.ly-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Back to top */
.ly-gotop {
  --ly-gotop-size: 56px;
  position: fixed;
  right: 22px;
  bottom: 30px;
  z-index: 1200;
  width: var(--ly-gotop-size);
  height: var(--ly-gotop-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(.86);
  transition:
    opacity .35s cubic-bezier(.22, 1, .36, 1),
    visibility .35s,
    transform .45s cubic-bezier(.22, 1, .36, 1),
    bottom .25s ease;
}
.ly-gotop::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow:
    0 10px 28px rgba(0, 20, 48, .22),
    0 0 0 1px rgba(0, 61, 130, .08);
  z-index: -1;
}
.ly-gotop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}
.ly-gotop__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ly-gotop__track,
.ly-gotop__progress {
  fill: none;
  stroke-width: 2.5;
}
.ly-gotop__track { stroke: rgba(0, 61, 130, .16); }
.ly-gotop__progress {
  stroke: var(--ly-orange);
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset .12s linear;
}
.ly-gotop__core {
  position: absolute;
  inset: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-radius: 50%;
  background:
    linear-gradient(160deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #0a56b0 0%, #003d82 48%, #002958 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 -10px 18px rgba(0, 20, 48, .35);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, background .35s ease;
}
.ly-gotop__chev {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-left: 2px solid rgba(255,255,255,.95);
  border-top: 2px solid rgba(255,255,255,.95);
  transform: rotate(45deg);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.ly-gotop__text {
  margin: 2px 0 0;
  font-family: "Rajdhani", "Noto Sans SC", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  color: rgba(255,255,255,.88);
}
.ly-gotop:hover .ly-gotop__core,
.ly-gotop:focus-visible .ly-gotop__core {
  transform: translateY(-2px) scale(1.03);
  background:
    linear-gradient(160deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #ff9a3d 0%, #f58220 46%, #d96c12 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -10px 18px rgba(120, 48, 0, .28),
    0 14px 28px rgba(245, 130, 32, .32);
}
.ly-gotop:hover .ly-gotop__chev,
.ly-gotop:focus-visible .ly-gotop__chev {
  transform: rotate(45deg) translate(1px, -1px);
}
.ly-gotop:active .ly-gotop__core {
  transform: translateY(0) scale(.96);
}
.ly-gotop:focus-visible {
  outline: none;
}
.ly-gotop.is-rising .ly-gotop__chev {
  animation: ly-gotop-rise .7s cubic-bezier(.22, 1, .36, 1);
}
@keyframes ly-gotop-rise {
  0% { transform: rotate(45deg) translateY(0); opacity: 1; }
  45% { transform: rotate(45deg) translate(2px, -10px); opacity: .2; }
  46% { transform: rotate(45deg) translate(-2px, 8px); opacity: 0; }
  100% { transform: rotate(45deg) translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .ly-gotop,
  .ly-gotop__core,
  .ly-gotop__chev,
  .ly-gotop__progress { transition: none; }
  .ly-gotop.is-rising .ly-gotop__chev { animation: none; }
}

/* Mobile bar */
.ly-mbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: #fff;
  border-top: 1px solid var(--ly-line);
  grid-template-columns: repeat(3, 1fr);
}
.ly-mbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  text-decoration: none;
  color: var(--ly-ink);
  font-size: 12px;
  font-weight: 600;
}
.ly-mbar a span { font-size: 11px; color: var(--ly-muted); font-weight: 500; }

@media (max-width: 1199px) {
  .ly-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .ly-footer__grid { gap: 18px 28px; }
  .ly-footer__navs { gap: 16px 28px; }
  .ly-footer__qr { width: 72px; }
  .ly-hero__inner { min-height: clamp(300px, 44vh, 480px); }
}
@media (max-width: 991px) {
  .ly-card-grid { grid-template-columns: repeat(2, 1fr); }
  .ly-split,
  .ly-service-grid { grid-template-columns: 1fr; }
  .ly-header__cta { display: none; }
  .ly-cta-bar {
    gap: 12px 16px;
    padding: 18px 0;
  }
  .ly-cta-bar__kicker { margin-bottom: 4px; font-size: 11px; letter-spacing: .18em; }
  .ly-cta-bar__copy strong { margin-bottom: 4px; font-size: 20px; }
  .ly-cta-bar__meta { font-size: 12px; line-height: 1.4; }
  .ly-footer {
    padding: 16px 16px 10px;
  }
  .ly-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr)) auto;
    gap: 8px 12px;
    margin-bottom: 8px;
    align-items: start;
  }
  .ly-footer__brand {
    flex: none;
    min-width: 0;
  }
  .ly-footer__tagline { margin-bottom: 6px; font-size: 11px; }
  .ly-footer__contact { gap: 2px; }
  .ly-footer__contact li {
    grid-template-columns: 2.8em minmax(0, 1fr);
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
  }
  .ly-footer__navs {
    display: contents;
  }
  .ly-footer__wechat {
    flex: none;
    margin-left: 0;
    gap: 8px;
    padding: 6px 8px;
    align-self: start;
  }
  .ly-footer__qr { width: 56px; }
  .ly-footer__wechat h4 { font-size: 12px; margin-bottom: 2px; }
  .ly-footer__wechat p { font-size: 10px; line-height: 1.3; }
  .ly-footer__col h4 {
    margin-bottom: 6px;
    padding-bottom: 4px;
    font-size: 12px;
  }
  .ly-footer__col li { margin-bottom: 3px; font-size: 12px; }
  .ly-footer__bottom {
    padding-top: 8px;
    gap: 4px 10px;
  }
  .ly-case-mini__list a { grid-template-columns: 88px 1fr; }
  .ly-pagehead { min-height: clamp(240px, 30vh, 320px); }
  .ly-pagehead__inner { padding: 36px 0; }
  .ly-section { padding: clamp(32px, 5vw, 56px) 0; }
  .ly-detail-nav { flex-direction: column; }
}
@media (max-width: 767px) {
  .ly-header {
    position: sticky;
    background:
      linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
    border-bottom: 0;
    box-shadow:
      0 1px 0 rgba(0, 61, 130, .06),
      0 10px 28px rgba(0, 41, 88, .08);
  }
  .ly-header::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--ly-blue-deep) 0%, var(--ly-blue-mid) 35%, var(--ly-orange) 72%, rgba(245, 130, 32, 0) 100%);
  }
  .ly-header.is-nav-open {
    background: #fff;
    z-index: 1300;
    box-shadow: 0 1px 0 rgba(0, 61, 130, .08);
  }
  .ly-header__bar {
    min-height: 0;
    padding: 8px 0;
    gap: 10px;
  }
  .ly-logo {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
  }
  .ly-logo img {
    height: 68px;
    max-width: min(260px, 62vw);
    filter: drop-shadow(0 2px 6px rgba(0, 41, 88, .08));
  }
  .ly-header__tools {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex: 0 0 auto;
    z-index: 1301;
  }
  .ly-nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 2px;
    background: linear-gradient(165deg, #0a56b0 0%, #003d82 55%, #002958 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.22),
      0 8px 16px rgba(0, 41, 88, .22);
    z-index: 1301;
    flex: 0 0 auto;
    transition: background .22s ease, transform .2s ease, box-shadow .22s ease;
  }
  .ly-nav-toggle span { background: #fff; width: 16px; }
  .ly-nav-toggle.is-open {
    background: linear-gradient(165deg, #ff9a3d 0%, #f58220 50%, #d96c12 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.28),
      0 8px 16px rgba(245, 130, 32, .28);
  }
  .ly-nav-toggle.is-open span { background: #fff; }
  .ly-nav-toggle:active { transform: scale(.96); }
  .ly-nav--pc { display: none !important; }
  .ly-nav-drawer {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--ly-nav-top, 60px);
    bottom: 0;
    z-index: 1290;
    width: 100%;
    height: auto;
    background:
      radial-gradient(120% 80% at 100% 0%, rgba(245, 130, 32, .12), transparent 46%),
      linear-gradient(180deg, #f4f7fb 0%, #e8eef5 100%);
  }
  .ly-nav-drawer.is-open {
    display: flex !important;
    flex-direction: column;
  }
  .ly-nav-drawer__panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    flex: 1 1 auto;
  }
  .ly-nav-drawer__scroll {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px 14px 8px;
    box-sizing: border-box;
  }
  .ly-nav--m {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
    flex: none;
  }
  .ly-nav > li:hover .drop-menu { display: none; }
  .ly-nav__head {
    display: block;
    padding: 2px 2px 6px;
  }
  .ly-nav__kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--ly-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
  }
  .ly-nav__head strong {
    display: block;
    color: var(--ly-blue-deep);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .02em;
  }
  .ly-nav > li {
    background: #fff;
    border: 1px solid rgba(0, 61, 130, .1);
    box-shadow: 0 8px 18px rgba(0, 41, 88, .05);
    overflow: hidden;
  }
  .ly-nav > li > a {
    position: relative;
    padding: 14px 44px 14px 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ly-blue-deep);
  }
  .ly-nav > li.has-sub > a::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(0, 61, 130, .4);
    border-bottom: 1.5px solid rgba(0, 61, 130, .4);
    transform: translateY(-60%) rotate(45deg);
    transition: transform .2s ease;
  }
  .ly-nav > li.has-sub.is-expanded > a::after,
  .ly-nav > li.has-sub.current.is-expanded > a::after {
    transform: translateY(-30%) rotate(225deg);
  }
  .ly-nav > li:not(.has-sub) > a::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgba(0, 61, 130, .35);
    border-top: 1.5px solid rgba(0, 61, 130, .35);
    transform: translateY(-50%) rotate(45deg);
  }
  .ly-nav > li.current > a {
    color: var(--ly-blue);
    background: linear-gradient(90deg, rgba(245, 130, 32, .1), transparent 70%);
    box-shadow: inset 3px 0 0 var(--ly-orange);
  }
  .ly-nav .drop-menu {
    position: static;
    display: none;
    gap: 6px;
    border: 0;
    box-shadow: none;
    padding: 0 10px 12px;
    background: linear-gradient(180deg, #f8fafc, #f3f6f9);
  }
  .ly-nav > li.is-expanded > .drop-menu {
    display: grid;
  }
  .ly-nav .drop-menu a {
    padding: 11px 12px;
    border: 1px solid rgba(0, 61, 130, .08);
    background: #fff;
    color: var(--ly-muted);
    font-size: 13px;
    font-weight: 600;
  }
  .ly-nav .drop-menu a:hover,
  .ly-nav .drop-menu li.current a {
    color: var(--ly-blue);
    border-color: rgba(245, 130, 32, .45);
    background: rgba(245, 130, 32, .06);
  }
  .ly-nav__actions {
    display: grid;
    flex: 0 0 auto;
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(244, 247, 251, .92), #e8eef5);
    border-top: 1px solid rgba(0, 61, 130, .08);
    box-shadow: 0 -8px 20px rgba(0, 41, 88, .06);
  }
  .ly-nav__phone {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--ly-blue-deep), var(--ly-blue-mid));
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(0, 41, 88, .2);
  }
  .ly-nav__phone span {
    font-size: 12px;
    color: rgba(255,255,255,.72);
    font-weight: 600;
  }
  .ly-nav__phone strong {
    font-family: "Rajdhani", "Noto Sans SC", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
  }
  .ly-nav__quote {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    background: var(--ly-orange);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 10px 22px rgba(245, 130, 32, .28);
  }
  body.ly-nav-lock {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }
  body.ly-nav-lock .ly-mbar,
  body.ly-nav-lock .ly-gotop {
    visibility: hidden;
    pointer-events: none;
  }
  .ly-cat-grid,
  .ly-card-grid,
  .ly-form__row { grid-template-columns: 1fr; }
  .ly-footer {
    padding: 18px 14px 12px;
  }
  .ly-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-bottom: 10px;
    align-items: start;
  }
  .ly-footer__navs { display: none; }
  .ly-footer__brand {
    flex: none;
    grid-column: 1;
    grid-row: 1;
  }
  .ly-footer__eyebrow { margin-bottom: 4px; font-size: 10px; letter-spacing: .2em; }
  .ly-footer__brand strong { margin-bottom: 2px; font-size: 16px; }
  .ly-footer__tagline { margin-bottom: 8px; font-size: 11px; }
  .ly-footer__contact { gap: 4px; }
  .ly-footer__contact li {
    grid-template-columns: 2.8em minmax(0, 1fr);
    gap: 6px;
    font-size: 12px;
    line-height: 1.4;
  }
  .ly-footer__wechat {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: 120px;
    padding: 8px;
    text-align: center;
  }
  .ly-footer__qr { width: 68px; }
  .ly-footer__wechat-copy { text-align: center; }
  .ly-footer__wechat h4 {
    margin: 0 0 2px;
    text-align: center;
    font-size: 12px;
  }
  .ly-footer__wechat p {
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
  }
  .ly-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding-top: 10px;
    padding-right: 58px;
  }
  .ly-footer__copy,
  .ly-footer__meta {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .ly-footer__meta a,
  .ly-footer__meta span {
    white-space: normal;
  }
  .ly-mbar {
    display: grid;
    box-shadow: 0 -6px 18px rgba(0, 41, 88, .08);
  }
  .ly-mbar a { min-height: 50px; font-size: 13px; }
  body { padding-bottom: 58px; }
  .ly-gotop {
    --ly-gotop-size: 50px;
    right: 12px;
    bottom: 78px;
  }
  .ly-gotop__text { font-size: 9px; letter-spacing: .12em; }
  .ly-hero__title { max-width: none; font-size: clamp(24px, 7vw, 34px); }
  .ly-hero__lead { font-size: 14px; }
  .ly-hero__actions { width: 100%; }
  .ly-hero__actions .ly-btn { flex: 1 1 auto; text-align: center; }
  .ly-cta-bar {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 0;
  }
  .ly-cta-bar__copy {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
  }
  .ly-cta-bar__kicker { margin-bottom: 4px; }
  .ly-cta-bar__copy strong { margin-bottom: 4px; font-size: 20px; }
  .ly-cta-bar__meta { font-size: 12px; }
  .ly-cta-bar .phone-text { font-size: 28px; }
  .ly-cta-bar__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ly-cta-bar__actions .ly-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 11px 12px;
  }
  .ly-section-more .ly-btn {
    min-width: min(220px, 100%);
    padding: 12px 22px;
  }
  .ly-subnav__list { gap: 0; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .ly-subnav a { white-space: nowrap; }
  .ly-card__body h3 { font-size: 16px; }
  .ly-rich { font-size: 14px; line-height: 1.8; }
  .ly-rich th { width: auto; white-space: nowrap; }
  .ly-pager {
    gap: 6px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .ly-pager a,
  .ly-pager .page-numbar > .page-num:not(a) {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
  .ly-pager .page-index,
  .ly-pager .page-last {
    display: none;
  }
}
@media (max-width: 480px) {
  .ly-header__bar { padding: 6px 0; }
  .ly-logo img { height: 70px; max-width: min(250px, 58vw); }
  .ly-nav-toggle { width: 42px; height: 42px; }
  .ly-pagehead { min-height: 200px; }
  .ly-pagehead h1 { font-size: clamp(24px, 7vw, 30px); }
  .ly-pagehead p { font-size: 14px; }
  .ly-section__head h2 { font-size: 22px; }
  .ly-btn { padding: 11px 16px; }
  .ly-form { gap: 12px; }
}

/* ---- audit polish ---- */
.ly-card-grid--mt { margin-top: 28px; }
.ly-section-more { margin-top: 28px; text-align: center; }
.ly-subnav.is-empty { display: none; }

.ly-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}
.ly-detail__media {
  background: var(--ly-bg-alt);
  border: 1px solid var(--ly-line);
  overflow: hidden;
}
.ly-detail__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.ly-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.ly-specs {
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--ly-line);
  background: #fff;
}
.ly-specs:empty,
.ly-specs:not(:has(div)) { display: none; }
.ly-specs > div {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 12px;
  padding: 10px 14px;
  border-top: 1px solid var(--ly-line);
  font-size: 14px;
  line-height: 1.55;
}
.ly-specs > div:first-child { border-top: 0; }
.ly-specs dt {
  margin: 0;
  color: var(--ly-muted);
  font-weight: 600;
}
.ly-specs dd { margin: 0; color: var(--ly-ink); }
.ly-article {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.ly-about {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.ly-about__media {
  position: sticky;
  top: 96px;
  overflow: hidden;
  background: var(--ly-bg-alt);
  border: 1px solid var(--ly-line);
}
.ly-about__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.ly-about__body {
  max-width: none;
  min-width: 0;
}
.ly-about__body h2 {
  margin: 28px 0 12px;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
  color: var(--ly-ink);
}
.ly-about__body h2:first-child { margin-top: 0; }
.ly-about__body p {
  margin: 0 0 14px;
  color: var(--ly-muted);
  font-size: 15px;
  line-height: 1.85;
}
.ly-about__body ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.ly-about__body li {
  position: relative;
  margin: 0 0 10px;
  padding: 12px 14px 12px 36px;
  background: var(--ly-bg);
  border-left: 3px solid var(--ly-orange);
  color: var(--ly-ink);
  font-size: 14px;
  line-height: 1.7;
}
.ly-about__body li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.15em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ly-orange);
}
@media (max-width: 991px) {
  .ly-about { grid-template-columns: 1fr; }
  .ly-about__media {
    position: static;
    max-width: 520px;
  }
  .ly-about__media img { aspect-ratio: 16 / 10; }
}
.ly-msg { max-width: 760px; }
.ly-msg__intro { margin-bottom: 22px; }
.ly-contact {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.ly-contact__media {
  position: relative;
  overflow: hidden;
  background: var(--ly-blue-deep);
  min-height: 320px;
}
.ly-contact__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.ly-contact__main h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--ly-ink);
}
.ly-contact__rich {
  margin: 0 0 22px;
  color: var(--ly-muted);
  font-size: 15px;
  line-height: 1.85;
}
.ly-contact__rich p { margin: 0 0 12px; }
.ly-contact__rich p:last-child { margin-bottom: 0; }
.ly-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 24px;
  border: 1px solid var(--ly-line);
  background: #fff;
}
.ly-contact__item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: #fff;
  border-right: 1px solid var(--ly-line);
  border-bottom: 1px solid var(--ly-line);
}
.ly-contact__item:nth-child(2n) { border-right: 0; }
.ly-contact__item:nth-last-child(-n+2) { border-bottom: 0; }
.ly-contact__item span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ly-muted);
}
.ly-contact__item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ly-ink);
  line-height: 1.5;
}
.ly-contact__item a {
  color: var(--ly-blue);
  text-decoration: none;
}
.ly-contact__item a:hover { color: var(--ly-orange); }
.ly-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 991px) {
  .ly-contact { grid-template-columns: 1fr; }
  .ly-contact__media img { min-height: 240px; }
}
@media (max-width: 480px) {
  .ly-contact__grid { grid-template-columns: 1fr; }
  .ly-contact__item { border-right: 0; }
  .ly-contact__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--ly-line); }
  .ly-contact__item:last-child { border-bottom: 0; }
}
.ly-form__code-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ly-form__code-row input { flex: 1; }
.ly-form__captcha {
  border: 1px solid var(--ly-line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  flex: 0 0 auto;
}
.ly-form__captcha img { display: block; height: 40px; width: auto; }
.ly-form .ly-btn { justify-self: start; min-width: 140px; }

.ly-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--ly-line);
  font-size: 13px;
  line-height: 1;
}
.ly-pager > span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  min-width: 0;
  height: auto;
}
.ly-pager .page-status {
  flex: 1 0 100%;
  justify-content: center;
  margin: 0 0 4px;
  color: var(--ly-muted);
  font-size: 12px;
  letter-spacing: .02em;
}
.ly-pager .page-numbar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 2px;
}
.ly-pager a,
.ly-pager .page-numbar > .page-num:not(a) {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--ly-line);
  background: #fff;
  color: var(--ly-ink);
  text-decoration: none;
  font-weight: 600;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.ly-pager a:hover {
  border-color: var(--ly-blue);
  color: var(--ly-blue);
}
.ly-pager .page-num-current,
.ly-pager a.page-num-current {
  background: var(--ly-blue);
  border-color: var(--ly-blue);
  color: #fff !important;
}
.ly-pager .page-numbar > .page-num:not(a) {
  border-color: transparent;
  background: transparent;
  color: var(--ly-muted);
  min-width: 24px;
  padding: 0 4px;
  font-weight: 500;
  pointer-events: none;
}
.ly-pager a[href="javascript:;"] {
  opacity: .38;
  color: var(--ly-muted);
  background: var(--ly-bg-alt, #f4f7fb);
  pointer-events: none;
}

.ly-cat {
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ly-cat:hover {
  box-shadow: 0 10px 22px rgba(0,45,100,.08);
}

.ly-mbar a { min-height: 52px; }

@media (max-width: 991px) {
  .ly-detail { grid-template-columns: 1fr; }
}
