/*
Theme Name: 好洋气科技企业官网
Theme URI: http://haoyangqikeji.cn:88/
Author: 陕西好洋气网络科技有限公司
Description: 面向科技服务、软件开发、系统集成与数字化产品展示的轻量企业主题。
Version: 1.0.0
Requires at least: 6.6
Requires PHP: 8.0
Text Domain: haoyangqi
*/

:root {
  --hyq-canvas: #f5f3ec;
  --hyq-surface: #ffffff;
  --hyq-ink: #102e38;
  --hyq-text: #253b42;
  --hyq-muted: #65757a;
  --hyq-brand: #16755b;
  --hyq-brand-dark: #0f5946;
  --hyq-accent: #c69b4a;
  --hyq-line: #d9ded9;
  --hyq-radius-sm: 4px;
  --hyq-radius-md: 10px;
  --hyq-radius-lg: 18px;
  --hyq-radius-pill: 999px;
  --hyq-shadow: 0 24px 70px rgba(16, 46, 56, 0.14), 0 2px 8px rgba(16, 46, 56, 0.08);
  --hyq-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hyq-canvas);
  color: var(--hyq-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
a {
  touch-action: manipulation;
}

.hyq-container {
  width: min(calc(100% - 48px), var(--hyq-max));
  margin: 0 auto;
}

.hyq-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--hyq-surface);
  color: var(--hyq-ink);
  transform: translateY(-180%);
}

.hyq-skip-link:focus {
  transform: translateY(0);
}

.hyq-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 243, 236, 0.96);
  border-bottom: 1px solid rgba(16, 46, 56, 0.1);
}

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

.hyq-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hyq-ink);
}

.hyq-brand-mark {
  width: 38px;
  height: 44px;
  flex: 0 0 auto;
}

.hyq-brand-copy {
  display: grid;
  line-height: 1.1;
}

.hyq-brand-copy strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hyq-brand-copy small {
  margin-top: 5px;
  color: var(--hyq-muted);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.hyq-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hyq-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--hyq-text);
  font-size: 14px;
  font-weight: 600;
}

.hyq-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--hyq-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hyq-nav a:hover::after,
.hyq-nav a:focus-visible::after,
.hyq-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hyq-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--hyq-ink);
  cursor: pointer;
}

.hyq-menu-toggle span,
.hyq-menu-toggle::before,
.hyq-menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hyq-menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.hyq-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.hyq-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hyq-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
}

.hyq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 590px);
  width: 1px;
  height: 100%;
  background: rgba(16, 46, 56, 0.08);
}

.hyq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 74px;
}

.hyq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--hyq-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hyq-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--hyq-accent);
}

.hyq-hero h1,
.hyq-page-hero h1 {
  margin: 0;
  color: var(--hyq-ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Noto Sans SC", sans-serif;
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 760;
  line-height: 1.12;
  text-wrap: balance;
}

.hyq-hero-lead {
  max-width: 620px;
  margin: 28px 0 34px;
  color: var(--hyq-muted);
  font-size: 18px;
  line-height: 1.9;
  text-wrap: pretty;
}

.hyq-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hyq-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--hyq-brand);
  border-radius: var(--hyq-radius-md);
  color: #f5fbf8;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(22, 117, 91, 0.18);
  transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.hyq-button:hover,
.hyq-button:focus-visible {
  background: var(--hyq-brand-dark);
  box-shadow: 0 12px 30px rgba(22, 117, 91, 0.24);
  transform: translateY(-2px);
}

.hyq-button:active {
  transform: scale(0.96);
}

.hyq-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--hyq-ink);
  font-weight: 700;
}

.hyq-text-link span {
  transition: transform 150ms ease;
}

.hyq-text-link:hover span,
.hyq-text-link:focus-visible span {
  transform: translateX(4px);
}

.hyq-tech-console {
  position: relative;
  min-height: 438px;
  padding: 18px;
  background: var(--hyq-ink);
  border-radius: var(--hyq-radius-lg);
  box-shadow: var(--hyq-shadow);
  transform: rotate(1.5deg);
}

.hyq-tech-console::before {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -18px;
  width: 110px;
  height: 38px;
  background: var(--hyq-accent);
  border-radius: var(--hyq-radius-pill);
  opacity: 0.85;
  z-index: -1;
}

.hyq-console-top {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  color: rgba(245, 251, 248, 0.62);
  font-size: 11px;
  letter-spacing: 0.09em;
}

.hyq-console-dots {
  display: flex;
  gap: 6px;
}

.hyq-console-dots i {
  width: 7px;
  height: 7px;
  background: rgba(245, 251, 248, 0.26);
  border-radius: 50%;
}

.hyq-console-body {
  min-height: 352px;
  display: grid;
  grid-template-columns: 120px 1fr;
  overflow: hidden;
  background: #f8f9f5;
  border-radius: 12px;
}

.hyq-console-side {
  padding: 24px 16px;
  background: #edf0ea;
}

.hyq-console-brand {
  margin-bottom: 28px;
  color: var(--hyq-ink);
  font-size: 12px;
  font-weight: 800;
}

.hyq-console-side span {
  display: block;
  margin: 0 0 16px;
  color: #7e8d8e;
  font-size: 10px;
}

.hyq-console-side span.is-active {
  color: var(--hyq-brand);
  font-weight: 700;
}

.hyq-console-main {
  padding: 24px;
}

.hyq-console-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.hyq-console-heading strong {
  color: var(--hyq-ink);
  font-size: 15px;
}

.hyq-console-heading small {
  display: block;
  color: #839092;
  font-size: 9px;
}

.hyq-console-status {
  padding: 4px 9px;
  background: #dcece5;
  border-radius: var(--hyq-radius-pill);
  color: var(--hyq-brand);
  font-size: 9px;
  font-weight: 700;
}

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

.hyq-console-cell {
  min-height: 92px;
  padding: 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(16, 46, 56, 0.1);
}

.hyq-console-cell b {
  display: block;
  color: var(--hyq-ink);
  font-size: 12px;
}

.hyq-console-cell small {
  color: #849092;
  font-size: 9px;
}

.hyq-console-bars {
  height: 30px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 9px;
}

.hyq-console-bars i {
  width: 12%;
  background: var(--hyq-brand);
  border-radius: 2px 2px 0 0;
  opacity: 0.72;
}

.hyq-console-bars i:nth-child(1) { height: 42%; }
.hyq-console-bars i:nth-child(2) { height: 68%; }
.hyq-console-bars i:nth-child(3) { height: 54%; }
.hyq-console-bars i:nth-child(4) { height: 84%; }
.hyq-console-bars i:nth-child(5) { height: 72%; }

.hyq-signal-line {
  height: 2px;
  margin-top: 27px;
  background: linear-gradient(90deg, var(--hyq-brand) 0 12%, transparent 12% 18%, var(--hyq-accent) 18% 45%, transparent 45% 52%, var(--hyq-brand) 52% 100%);
}

.hyq-capability-strip {
  border-top: 1px solid var(--hyq-line);
  border-bottom: 1px solid var(--hyq-line);
}

.hyq-capability-strip .hyq-container {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.hyq-capability-strip span {
  padding: 0 24px;
  border-right: 1px solid var(--hyq-line);
  color: var(--hyq-muted);
  font-size: 13px;
  text-align: center;
}

.hyq-capability-strip span:first-child {
  padding-left: 0;
}

.hyq-capability-strip span:last-child {
  padding-right: 0;
  border-right: 0;
}

.hyq-section {
  padding: 118px 0 136px;
}

.hyq-section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.hyq-section-heading h2,
.hyq-feature-copy h2,
.hyq-about-copy h2,
.hyq-contact-card h2 {
  margin: 0;
  color: var(--hyq-ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.25;
  text-wrap: balance;
}

.hyq-section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--hyq-muted);
  font-size: 17px;
  text-wrap: pretty;
}

.hyq-service-list {
  border-top: 1px solid var(--hyq-line);
}

.hyq-service-row {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.8fr) minmax(0, 1.4fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hyq-line);
}

.hyq-service-row > span {
  color: var(--hyq-accent);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.hyq-service-row h3 {
  margin: 0;
  color: var(--hyq-ink);
  font-size: 23px;
}

.hyq-service-row p {
  margin: 0;
  color: var(--hyq-muted);
  text-wrap: pretty;
}

.hyq-product-feature {
  overflow: hidden;
  background: var(--hyq-ink);
  color: rgba(245, 251, 248, 0.8);
}

.hyq-feature-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 80px;
  padding: 112px 0;
}

.hyq-feature-copy .hyq-eyebrow {
  color: #80c3a9;
}

.hyq-feature-copy h2 {
  color: #f4f6ef;
}

.hyq-feature-copy > p {
  margin: 28px 0 30px;
  color: rgba(245, 251, 248, 0.68);
  font-size: 17px;
}

.hyq-feature-points {
  display: grid;
  gap: 14px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.hyq-feature-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hyq-feature-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 11px;
  background: var(--hyq-accent);
  border-radius: 50%;
}

.hyq-product-map {
  position: relative;
  min-height: 520px;
  padding: 42px;
  background: #f6f7f3;
  border-radius: var(--hyq-radius-lg);
  color: var(--hyq-text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.hyq-product-map-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hyq-line);
}

.hyq-product-map-top strong {
  color: var(--hyq-ink);
  font-size: 18px;
}

.hyq-product-map-top span {
  color: var(--hyq-muted);
  font-size: 12px;
}

.hyq-map-rows {
  margin-top: 22px;
}

.hyq-map-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hyq-line);
}

.hyq-map-row > strong {
  color: var(--hyq-ink);
  font-size: 14px;
}

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

.hyq-map-tags span {
  padding: 5px 10px;
  background: #e8ede8;
  border-radius: var(--hyq-radius-pill);
  color: #4f6266;
  font-size: 11px;
}

.hyq-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.hyq-about-copy > p {
  margin: 28px 0 0;
  color: var(--hyq-muted);
  font-size: 17px;
}

.hyq-about-facts {
  border-top: 1px solid var(--hyq-line);
}

.hyq-fact {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hyq-line);
}

.hyq-fact span {
  color: var(--hyq-muted);
  font-size: 13px;
}

.hyq-fact strong {
  color: var(--hyq-ink);
  font-size: 17px;
  font-weight: 650;
}

.hyq-contact-band {
  padding: 0 0 120px;
}

.hyq-contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 52px;
  align-items: center;
  padding: 58px 64px;
  background: var(--hyq-surface);
  border-radius: var(--hyq-radius-lg);
  box-shadow: 0 1px 3px rgba(16, 46, 56, 0.1);
}

.hyq-contact-card p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--hyq-muted);
}

.hyq-page-hero {
  padding: 96px 0 82px;
  border-bottom: 1px solid var(--hyq-line);
}

.hyq-page-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--hyq-muted);
  font-size: 18px;
}

.hyq-page-content {
  padding: 92px 0 124px;
}

.hyq-prose {
  max-width: 820px;
}

.hyq-prose h2 {
  margin: 70px 0 20px;
  color: var(--hyq-ink);
  font-size: 30px;
  line-height: 1.35;
}

.hyq-prose h2:first-child {
  margin-top: 0;
}

.hyq-prose h3 {
  margin: 36px 0 12px;
  color: var(--hyq-ink);
  font-size: 20px;
}

.hyq-prose p,
.hyq-prose li {
  color: #53666a;
}

.hyq-prose ul {
  padding-left: 1.2em;
}

.hyq-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--hyq-line);
  border: 1px solid var(--hyq-line);
}

.hyq-solution-item {
  min-height: 260px;
  padding: 42px;
  background: var(--hyq-surface);
}

.hyq-solution-item span {
  color: var(--hyq-accent);
  font-size: 12px;
  font-weight: 700;
}

.hyq-solution-item h2 {
  margin: 38px 0 14px;
  color: var(--hyq-ink);
  font-size: 26px;
}

.hyq-solution-item p {
  margin: 0;
  color: var(--hyq-muted);
}

.hyq-contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 90px;
  align-items: start;
}

.hyq-contact-qr {
  padding: 28px;
  background: var(--hyq-surface);
  border-radius: var(--hyq-radius-lg);
  box-shadow: 0 1px 3px rgba(16, 46, 56, 0.1);
}

.hyq-contact-qr img {
  width: 100%;
  aspect-ratio: 1;
  outline: 1px solid rgba(16, 46, 56, 0.08);
  outline-offset: -1px;
}

.hyq-contact-qr p {
  margin: 18px 0 0;
  color: var(--hyq-muted);
  font-size: 13px;
  text-align: center;
}

.hyq-site-footer {
  padding: 64px 0 30px;
  background: #0d2932;
  color: rgba(245, 251, 248, 0.68);
}

.hyq-footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 52px;
}

.hyq-site-footer .hyq-brand {
  color: #f4f6ef;
}

.hyq-site-footer .hyq-brand-copy small {
  color: rgba(245, 251, 248, 0.5);
}

.hyq-footer-intro {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(245, 251, 248, 0.56);
}

.hyq-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 26px;
}

.hyq-footer-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.hyq-footer-nav a:hover,
.hyq-footer-nav a:focus-visible {
  color: #fff;
}

.hyq-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(245, 251, 248, 0.12);
  font-size: 12px;
}

.hyq-404 {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.hyq-404 strong {
  display: block;
  color: var(--hyq-accent);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.hyq-404 h1 {
  margin: 10px 0 18px;
  color: var(--hyq-ink);
  font-size: clamp(44px, 7vw, 82px);
}

.hyq-404 p {
  margin: 0 0 28px;
  color: var(--hyq-muted);
}

:focus-visible {
  outline: 3px solid rgba(198, 155, 74, 0.65);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hyq-hero-grid,
  .hyq-feature-grid {
    grid-template-columns: 1fr;
  }

  .hyq-hero-grid {
    gap: 58px;
  }

  .hyq-feature-grid {
    gap: 58px;
  }

  .hyq-tech-console {
    max-width: 620px;
    margin: 0 auto;
  }

  .hyq-section-heading,
  .hyq-about-grid,
  .hyq-contact-layout {
    grid-template-columns: 1fr;
  }

  .hyq-contact-layout {
    gap: 52px;
  }

  .hyq-contact-qr {
    max-width: 360px;
  }
}

@media (max-width: 820px) {
  .hyq-container {
    width: min(calc(100% - 36px), var(--hyq-max));
  }

  .hyq-header-inner {
    min-height: 70px;
  }

  .hyq-menu-toggle {
    display: block;
  }

  .hyq-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    padding: 14px 18px 24px;
    background: var(--hyq-canvas);
    border-bottom: 1px solid var(--hyq-line);
  }

  .hyq-nav.is-open {
    display: grid;
  }

  .hyq-nav a {
    min-height: 48px;
    padding: 0 10px;
  }

  .hyq-nav a::after {
    right: auto;
    left: 10px;
    width: 32px;
  }

  .hyq-hero {
    padding: 72px 0 82px;
  }

  .hyq-hero::before {
    left: 18px;
  }

  .hyq-capability-strip .hyq-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hyq-capability-strip span {
    min-height: 56px;
    display: grid;
    place-items: center;
    padding: 0 12px;
  }

  .hyq-capability-strip span:nth-child(2) {
    border-right: 0;
  }

  .hyq-capability-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hyq-line);
  }

  .hyq-section {
    padding: 86px 0 96px;
  }

  .hyq-section-heading {
    gap: 22px;
    margin-bottom: 44px;
  }

  .hyq-service-row {
    grid-template-columns: 54px 1fr;
    gap: 12px 18px;
  }

  .hyq-service-row p {
    grid-column: 2;
  }

  .hyq-feature-grid {
    padding: 86px 0;
  }

  .hyq-product-map {
    min-height: auto;
    padding: 28px;
  }

  .hyq-contact-card {
    grid-template-columns: 1fr;
    padding: 42px;
  }

  .hyq-footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hyq-brand-copy small {
    display: none;
  }

  .hyq-hero h1,
  .hyq-page-hero h1 {
    font-size: 42px;
  }

  .hyq-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hyq-tech-console {
    min-height: auto;
    padding: 11px;
    transform: none;
  }

  .hyq-console-top {
    height: 38px;
  }

  .hyq-console-body {
    min-height: 325px;
    grid-template-columns: 82px 1fr;
  }

  .hyq-console-side {
    padding: 18px 10px;
  }

  .hyq-console-main {
    padding: 18px 14px;
  }

  .hyq-console-grid {
    grid-template-columns: 1fr;
  }

  .hyq-console-cell:nth-child(n + 3) {
    display: none;
  }

  .hyq-section-heading h2,
  .hyq-feature-copy h2,
  .hyq-about-copy h2,
  .hyq-contact-card h2 {
    font-size: 34px;
  }

  .hyq-service-row {
    grid-template-columns: 38px 1fr;
  }

  .hyq-service-row h3 {
    font-size: 20px;
  }

  .hyq-product-map {
    padding: 22px;
  }

  .hyq-map-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hyq-about-grid {
    gap: 50px;
  }

  .hyq-fact {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hyq-contact-card {
    padding: 34px 26px;
  }

  .hyq-page-hero {
    padding: 72px 0 60px;
  }

  .hyq-page-content {
    padding: 68px 0 90px;
  }

  .hyq-solution-grid {
    grid-template-columns: 1fr;
  }

  .hyq-solution-item {
    min-height: 230px;
    padding: 32px 26px;
  }

  .hyq-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

