:root {
  --blue: #0566f4;
  --deep: #082f8f;
  --navy: #041d5b;
  --text: #101828;
  --muted: #5d6b85;
  --line: #e8eef9;
  --bg: #f5f9ff;
  --shadow: 0 18px 50px rgba(20, 88, 180, .16);
  --container: min(1400px, calc(100% - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f3f8ff 0, #fff 680px);
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(247, 251, 255, .82);
  border-bottom: 1px solid rgba(205, 221, 248, .55);
  backdrop-filter: blur(16px);
  transition: box-shadow .28s ease, background .28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 32px rgba(20, 55, 120, .08);
}

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

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 35deg, #0a51dc, #53a8ff, #0d63ee, #0a51dc);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .8);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 7px;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: #fff;
  transform: rotate(28deg);
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #5c6f91;
  font-size: 10px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn,
.ghost-btn,
.primary-btn,
.outline-btn,
.outline-light {
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.icon-btn {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(25, 89, 170, .1);
}

.icon-btn span {
  width: 15px;
  height: 15px;
  border: 2px solid #263a5b;
  border-radius: 50%;
  position: relative;
}

.icon-btn span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #263a5b;
  transform: rotate(45deg);
}

.ghost-btn {
  padding: 10px 18px;
  border-radius: 22px;
  background: #fff;
  color: #193b75;
}

.primary-btn {
  min-width: 132px;
  padding: 14px 26px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0474ff, #034cd7);
  box-shadow: 0 12px 30px rgba(0, 94, 226, .28);
}

.primary-btn.small {
  min-width: auto;
  padding: 10px 18px;
  border-radius: 22px;
}

.outline-btn,
.outline-light {
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid rgba(7, 78, 185, .35);
  background: rgba(255, 255, 255, .58);
  color: #075edb;
}

.outline-light {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

button:hover,
.category-grid article:hover,
.case-grid article:hover,
.solution-grid article:hover {
  transform: translateY(-3px);
}

.hero {
  position: relative;
  overflow: hidden;
  display: block;
  height: clamp(640px, 42vw, 780px);
  background: #eef6ff;
}

.hero-bg {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: fill;
  object-position: center top;
}

.hero-actions {
  position: absolute;
  left: clamp(76px, 4.6vw, 96px);
  bottom: clamp(26px, 4.5vw, 76px);
  display: flex;
  gap: 18px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .15), transparent 56%);
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: var(--container);
  margin: 28px auto 42px;
  padding: 28px 22px;
  border: 1px solid #e1ebfb;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.feature-strip article {
  padding: 12px 18px;
  text-align: center;
  border-right: 1px solid #e8eef9;
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip img {
  width: 96px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 10px;
}

h2,
h3,
p {
  margin: 0;
}

.feature-strip h3 {
  font-size: 16px;
  margin-bottom: 7px;
}

.feature-strip p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0 66px;
}

.section-head,
.news-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2,
.section-title h2,
.news-tabs h2 {
  position: relative;
  font-size: clamp(24px, 2.5vw, 32px);
  text-align: center;
}

.section-head h2::after,
.section-title h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: var(--blue);
}

.section-head a,
.news-tabs a {
  color: #49627f;
  font-size: 14px;
}

.section-title {
  margin-bottom: 28px;
  text-align: center;
}

.section-title p {
  margin-top: 14px;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.category-grid article {
  overflow: hidden;
  min-height: 188px;
  padding: 22px 22px 0;
  border: 1px solid #e8eef9;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5f9ff, #fff);
  transition: transform .24s ease, box-shadow .24s ease;
}

.category-grid h3 {
  font-size: 17px;
  margin-bottom: 7px;
}

.category-grid p {
  color: var(--muted);
  font-size: 12px;
}

.category-grid img {
  height: 124px;
  margin: 4px auto 0;
  object-fit: contain;
}

.rent-card {
  background: radial-gradient(circle at 70% 72%, rgba(6, 112, 246, .28), transparent 30%), linear-gradient(180deg, #eef6ff, #fff);
}

.solutions {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 42px max(36px, calc((100% - 1400px) / 2)) 66px;
  background: linear-gradient(180deg, #052d8b, #021d63);
}

.section-head.light {
  color: #fff;
}

.section-head.light a {
  color: rgba(255, 255, 255, .82);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.solution-grid article {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(0, 65, 178, .2));
  transition: transform .24s ease, border-color .24s ease;
}

.solution-grid img {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 140px;
  opacity: .92;
}

.solution-grid h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  margin-bottom: 12px;
}

.solution-grid p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.6;
}

.solution-grid button {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.capability-layout {
  display: grid;
  grid-template-columns: .8fr 1.35fr;
  gap: 34px;
  align-items: stretch;
}

.capability-list,
.dashboard {
  border: 1px solid #e7effb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(18, 66, 140, .08);
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 26px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 66px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 14px 10px;
}

.capability-list img {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.capability-list span {
  font-weight: 700;
}

.capability-list p {
  color: var(--muted);
  font-size: 12px;
}

.dashboard {
  padding: 26px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.metrics strong {
  padding: 15px 12px;
  border-radius: 10px;
  background: #f6f9ff;
  color: #112b55;
  text-align: center;
}

.dashboard img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding: 12px 18px;
  border: 1px solid #e7effb;
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 42px rgba(20, 88, 180, .12);
}

.promise-row article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 68px;
  padding: 8px 18px;
  border-right: 1px solid #edf2fb;
}

.promise-row article:last-child {
  border-right: 0;
}

.promise-row img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.promise-row strong {
  display: block;
  color: #083d9f;
  font-size: 17px;
  line-height: 1.2;
}

.promise-row p {
  margin-top: 6px;
  color: #71809b;
  font-size: 12px;
  white-space: nowrap;
}

.case-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.case-grid article,
.news-grid article {
  overflow: hidden;
  border: 1px solid #e6edf8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 68, 130, .07);
  transition: transform .24s ease, box-shadow .24s ease;
}

.case-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.case-grid div {
  padding: 18px;
}

.case-grid h3,
.news-grid h3 {
  font-size: 16px;
  line-height: 1.45;
}

.case-grid p {
  margin: 9px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.case-grid strong {
  color: var(--blue);
  font-size: 30px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 16px;
}

.brand-grid span {
  display: grid;
  min-height: 84px;
  place-items: center;
  border: 1px solid #e4edf9;
  border-radius: 10px;
  background: #fff;
}

.brand-grid img {
  max-width: 82%;
  max-height: 38px;
  object-fit: contain;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42%;
  align-items: center;
  width: var(--container);
  min-height: 236px;
  margin: 10px auto 52px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: #0866ef;
  box-shadow: var(--shadow);
}

.cta-content {
  z-index: 1;
  padding: 44px 0 44px clamp(42px, 5vw, 78px);
}

.cta-content h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 2.9vw, 44px);
  line-height: 1.2;
  white-space: nowrap;
}

.cta-content p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.cta-visual {
  align-self: stretch;
  min-height: 236px;
  background: url("assets/1.48.avif") right center / auto 122% no-repeat;
}

.cta-visual::before {
  content: none;
}

.news-tabs {
  justify-content: flex-start;
}

.news-tabs h2 {
  margin-right: 22px;
}

.news-tabs button {
  padding: 8px 4px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.news-tabs button.active {
  color: var(--blue);
  border-color: var(--blue);
}

.news-tabs a {
  margin-left: auto;
}

.news-grid img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.news-grid article {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 18px;
  min-height: 160px;
  padding: 16px;
}

.news-grid img {
  grid-row: span 2;
  border-radius: 8px;
}

.news-grid time {
  color: #7a8799;
  font-size: 12px;
}

.news-grid h3 {
  font-size: 18px;
}

.about-contact {
  padding: 50px 0 62px;
  background:
    radial-gradient(circle at 26% 6%, rgba(5, 102, 244, .12), transparent 26%),
    linear-gradient(180deg, #f6fbff 0%, #eef7ff 100%);
}

.about-wrap,
.contact-panel {
  width: var(--container);
  margin: 0 auto;
}

.about-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-copy h2 {
  position: relative;
  margin-bottom: 18px;
  font-size: clamp(26px, 2.7vw, 36px);
}

.about-copy h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 12px;
  border-radius: 4px;
  background: var(--blue);
}

.about-copy p {
  max-width: 520px;
  color: #40526d;
  font-size: 15px;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.about-stats strong {
  display: block;
  color: var(--blue);
  font-size: 27px;
  line-height: 1.1;
}

.about-stats small {
  display: block;
  margin-top: 8px;
  color: #697992;
  font-size: 12px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-cards article {
  min-height: 170px;
  padding: 26px;
  border: 1px solid #dce9fb;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(24, 80, 156, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.about-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 102, 244, .28);
  box-shadow: 0 20px 44px rgba(24, 80, 156, .14);
}

.about-cards img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  object-fit: contain;
  transform: scale(var(--icon-scale, 1));
  transform-origin: center;
}

.about-cards article:nth-child(1) {
  --icon-scale: 1.18;
}

.about-cards article:nth-child(2) {
  --icon-scale: .92;
}

.about-cards article:nth-child(3) {
  --icon-scale: 1.38;
}

.about-cards article:nth-child(4) {
  --icon-scale: 1.34;
}

.about-cards article:nth-child(5) {
  --icon-scale: 1.42;
}

.about-cards article:nth-child(6) {
  --icon-scale: .98;
}

.about-cards h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.about-cards p {
  color: #5f6f88;
  font-size: 13px;
  line-height: 1.55;
}

.contact-title {
  margin: 76px 0 26px;
}

.contact-panel {
  display: grid;
  grid-template-columns: .64fr 1fr;
  gap: 34px;
  padding: 42px;
  border: 1px solid #dbe8fa;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(20, 88, 180, .12);
}

.contact-info {
  padding-right: 34px;
  border-right: 1px solid #e2ebf7;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #233a5c;
  font-size: 14px;
}

.contact-info span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--blue);
  font-size: 15px;
}

.contact-qr {
  margin-top: 28px;
  color: #233a5c;
}

.mini-qr {
  width: 88px;
  height: 88px;
  margin-bottom: 10px;
  border: 8px solid #eaf3ff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #075edb 50%, transparent 0) 0 0 / 18px 18px,
    linear-gradient(#075edb 50%, transparent 0) 0 0 / 18px 18px,
    #fff;
  box-shadow: 0 8px 18px rgba(5, 102, 244, .12);
}

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

.contact-qr small {
  margin-top: 6px;
  color: #71809b;
  font-size: 12px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #1b355d;
  font-size: 13px;
  font-weight: 700;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdded;
  border-radius: 4px;
  padding: 12px 14px;
  color: #142a4d;
  background: #fbfdff;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 102, 244, .12);
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form button {
  margin-top: 4px;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #0474ff, #034cd7);
  box-shadow: 0 12px 26px rgba(0, 94, 226, .22);
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 20px clamp(24px, 6vw, 78px);
  color: #dce8ff;
  background: #061f66;
}

.brand.inverted small,
.footer-brand p {
  color: rgba(220, 232, 255, .72);
}

.footer-brand p {
  margin-top: 10px;
  font-size: 13px;
}

.footer-brand .brand > span:not(.brand-mark),
.footer-brand p {
  display: none;
}

.footer-brand .brand-mark {
  display: none;
}

.footer-cols {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-cols nav {
  display: grid;
  gap: 6px;
  color: rgba(220, 232, 255, .7);
  font-size: 13px;
}

.footer-cols strong {
  color: #fff;
  margin-bottom: 4px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 18px;
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
}

.footer-contact strong {
  font-size: 18px;
  color: #fff;
}

.footer-contact div {
  display: contents;
}

.footer-contact h3,
.footer-contact p {
  margin: 0;
}

.footer-contact span {
  color: rgba(220, 232, 255, .72);
  font-size: 13px;
}

.footer-contact button {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 20px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s ease;
}

.modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 42, .58);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(390px, 100%);
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 31, 92, .28);
  text-align: center;
  transform: translateY(16px) scale(.96);
  transition: transform .24s ease;
}

.modal.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  color: #6b7890;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.modal-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.6;
}

.qr {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  width: 188px;
  height: 188px;
  margin: 26px auto;
  padding: 14px;
  border: 8px solid #eef5ff;
  border-radius: 18px;
  background:
    linear-gradient(90deg, #0b67f2 50%, transparent 0) 0 0 / 28px 28px,
    linear-gradient(#0b67f2 50%, transparent 0) 0 0 / 28px 28px,
    #fff;
}

.qr span {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 8px solid #063fc0;
  border-radius: 8px;
  background: #fff;
}

.qr span:nth-child(1) { left: 18px; top: 18px; }
.qr span:nth-child(2) { right: 18px; top: 18px; }
.qr span:nth-child(3) { left: 18px; bottom: 18px; }
.qr span:nth-child(4) { right: 33px; bottom: 35px; width: 24px; height: 24px; border-width: 6px; }

.qr i {
  display: block;
  border-radius: 4px;
  background: #0b67f2;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .feature-strip,
  .category-grid,
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-strip article {
    border-right: 0;
  }

  .case-grid,
  .news-grid,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-layout,
  .cta,
  .about-wrap,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .brand small,
  .ghost-btn,
  .icon-btn {
    display: none;
  }

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

  .primary-btn.small {
    padding: 9px 13px;
    font-size: 13px;
  }

  .hero {
    background: #eef6ff;
    aspect-ratio: auto;
  }

  .hero-bg {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
    object-fit: contain;
  }

  .hero-actions {
    position: absolute;
    left: 18px;
    right: auto;
    bottom: 7%;
    padding: 0;
    background: none;
    gap: 10px;
  }

  .hero-actions button {
    flex: none;
    min-width: 0;
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 12px;
  }

  .feature-strip,
  .section,
  .cta {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    min-height: 300px;
    align-items: stretch;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    padding: 14px 8px;
  }

  .feature-strip article {
    padding: 10px 8px;
  }

  .category-grid,
  .solution-grid,
  .case-grid,
  .news-grid,
  .promise-row,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .promise-row article {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #edf2fb;
  }

  .promise-row article:last-child {
    border-bottom: 0;
  }

  .section-head,
  .news-tabs {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .solutions {
    padding-left: 14px;
    padding-right: 14px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard img {
    height: 180px;
  }

  .news-grid article {
    grid-template-columns: 108px 1fr;
  }

  .about-contact {
    padding: 38px 0 44px;
  }

  .about-wrap,
  .contact-panel {
    width: calc(100% - 28px);
  }

  .about-stats,
  .about-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-title {
    margin-top: 44px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-info {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid #e2ebf7;
  }

  .cta {
    width: calc(100% - 28px);
    margin-bottom: 34px;
  }

  .cta-content {
    padding: 26px 22px 0;
  }

  .cta-content h2 {
    white-space: normal;
    font-size: 24px;
  }

  .cta-content p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .cta-actions {
    flex-wrap: wrap;
  }

  .cta-visual {
    min-height: 145px;
    background-size: auto 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
