:root {
  --bg: #fbfcff;
  --surface: #ffffff;
  --surface-soft: #f8f9ff;
  --text: #151925;
  --text-soft: #4d5568;
  --muted: #7b8294;
  --line: #e4e8f2;
  --primary: #145bff;
  --primary-strong: #0748df;
  --violet: #6f45ed;
  --violet-strong: #5630d6;
  --success: #10a778;
  --danger: #b91c1c;
  --shadow-sm: 0 1px 2px rgba(20, 22, 35, 0.06);
  --shadow-md: 0 18px 44px rgba(31, 35, 58, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 28%, rgba(116, 83, 245, 0.13), transparent 32%),
    radial-gradient(circle at 46% 16%, rgba(20, 91, 255, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family:
    "SF Pro Text",
    "PingFang SC",
    "Microsoft YaHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(22px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(220, 226, 245, 0.92);
  border-radius: 10px;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 22px rgba(28, 61, 133, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 19px;
  font-weight: 850;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-nav a {
  color: #161a27;
  font-size: 15px;
  font-weight: 780;
  white-space: nowrap;
}

.top-nav a:hover {
  color: var(--primary);
}

main {
  overflow: hidden;
}

#about,
#solutions,
#news,
#faq,
#contact {
  scroll-margin-top: 94px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 660px) minmax(360px, 520px);
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 68px);
  width: min(1200px, calc(100vw - 48px));
  min-height: min(720px, calc(100vh - 108px));
  margin: 0 auto;
  padding: 30px 0 38px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(84, 100, 140, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 86%, transparent 100%);
  opacity: 0.45;
}

.hero-copy {
  padding-top: 12px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 18px;
  margin: 0 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c5ccff, #b5eaff);
  color: #075df4;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 12px 35px rgba(67, 118, 255, 0.14);
}

.hero-pill span {
  position: relative;
  width: 12px;
  height: 12px;
}

.hero-pill span::before,
.hero-pill span::after {
  content: "";
  position: absolute;
  border: 2px solid #1462ff;
  border-radius: 50%;
}

.hero-pill span::before {
  inset: 4px;
}

.hero-pill span::after {
  inset: 0;
  border-color: transparent #1462ff #1462ff transparent;
  transform: rotate(40deg);
}

.hero h1 {
  margin: 0;
  color: #141925;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-title-main {
  display: block;
  white-space: nowrap;
}

.hero h1 strong {
  display: block;
  color: var(--primary);
  font: inherit;
}

.hero h1 strong span {
  white-space: nowrap;
}

.hero-desc {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 26px;
}

.hero-stats div {
  min-width: 92px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: #151b2b;
  font-size: 30px;
  font-weight: 520;
  line-height: 1.1;
}

.hero-stats span {
  margin-top: 10px;
  color: #151b2b;
  font-size: 14px;
  font-weight: 450;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(20, 91, 255, 0.22);
}

.button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(92deg, #1263ff, #034cf2);
}

.button-secondary {
  background: linear-gradient(92deg, #4b22f6, #562cf8);
}

.button span {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.hero-art {
  position: relative;
  min-height: 430px;
  contain: layout;
}

.hero-art-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.liquid-scene {
  position: relative;
  z-index: 2;
  width: min(590px, 45vw);
  min-width: 390px;
  aspect-ratio: 1.08;
  transform: translateX(16px);
  transform-origin: center;
  animation: liquid-scene-float 7s ease-in-out infinite;
}

.liquid-scene::before,
.liquid-scene::after,
.liquid-scene span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.liquid-scene::before {
  content: "";
  inset: 7% 0 9%;
  border-radius: 46% 54% 49% 51% / 48% 44% 56% 52%;
  background:
    radial-gradient(ellipse at 31% 24%, rgba(255, 255, 255, 0.78), transparent 22%),
    radial-gradient(circle at 68% 62%, rgba(41, 219, 255, 0.24), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(190, 230, 255, 0.22) 48%, rgba(103, 117, 230, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 24px 28px 78px rgba(255, 255, 255, 0.46),
    inset -34px -38px 88px rgba(72, 84, 172, 0.17),
    0 40px 96px rgba(42, 74, 160, 0.14);
  filter: blur(0.2px);
  animation: liquid-lens-morph 8s ease-in-out infinite;
}

.liquid-scene::after {
  content: "";
  left: 50%;
  bottom: 14%;
  width: 106%;
  aspect-ratio: 3.2 / 1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(255, 255, 255, 0.52), rgba(80, 217, 255, 0.12) 42%, transparent 72%);
  filter: blur(16px);
  opacity: 0.66;
  transform: translateX(-50%) rotateX(66deg);
  animation: liquid-base-breathe 5.8s ease-in-out infinite;
}

.liquid-glow {
  inset: -7%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.52), transparent 28%),
    radial-gradient(ellipse at 58% 54%, rgba(66, 218, 255, 0.26), transparent 42%),
    radial-gradient(ellipse at 48% 62%, rgba(93, 108, 238, 0.15), transparent 66%);
  filter: blur(56px);
  opacity: 0.78;
  animation: liquid-glow-pulse 5.8s ease-in-out infinite;
}

.liquid-lens {
  left: 12%;
  top: 13%;
  width: 76%;
  height: 57%;
  border-radius: 54% 46% 58% 42% / 50% 44% 56% 50%;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(126deg, rgba(255, 255, 255, 0.42), rgba(85, 221, 255, 0.16) 58%, rgba(84, 103, 228, 0.2));
  filter: blur(1px);
  opacity: 0.88;
  animation: liquid-lens-drift 6.4s ease-in-out infinite;
}

.liquid-halo {
  left: 50%;
  top: 43%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  transform-origin: center;
}

.liquid-halo--one {
  width: 94%;
  height: 50%;
  border-color: rgba(255, 255, 255, 0.64);
  box-shadow: 0 0 26px rgba(74, 214, 255, 0.14);
  animation: liquid-halo-one 6.8s ease-in-out infinite;
}

.liquid-halo--two {
  width: 76%;
  height: 38%;
  border-color: rgba(52, 204, 255, 0.32);
  animation: liquid-halo-two 6s ease-in-out infinite;
}

.liquid-wave {
  left: 50%;
  border-radius: 50%;
  border-top: 1.5px solid rgba(49, 207, 255, 0.38);
  background: radial-gradient(ellipse, rgba(82, 213, 255, 0.1), transparent 64%);
  box-shadow: 0 -8px 24px rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform-origin: center;
  animation: liquid-wave 5.2s ease-out infinite;
}

.liquid-wave--one {
  bottom: 19%;
  width: 108%;
  height: 25%;
}

.liquid-wave--two {
  bottom: 28%;
  width: 86%;
  height: 20%;
  border-top-color: rgba(255, 255, 255, 0.52);
  animation-delay: 1.25s;
}

.liquid-wave--three {
  bottom: 38%;
  width: 62%;
  height: 15%;
  border-top-color: rgba(92, 106, 224, 0.25);
  animation-delay: 2.5s;
}

.trust-section,
.contact-section {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
}

.trust-section,
.info-grid,
.seo-section,
.news-section,
.faq-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.trust-section,
.info-card {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  border: 1px solid rgba(222, 226, 239, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.trust-section {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: clamp(22px, 3.6vw, 36px);
}

.section-heading p,
.section-kicker {
  margin: 0 0 8px;
  color: var(--success);
  font-size: 13px;
  font-weight: 850;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.24;
  letter-spacing: 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.trust-list div {
  position: relative;
  min-height: 62px;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(232, 236, 247, 0.96);
  border-radius: 8px;
  background: #fbfcff;
  color: #263248;
  font-size: 15px;
  line-height: 1.55;
  animation: item-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.trust-list div::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(16, 167, 120, 0.22);
  border-top-color: var(--success);
  border-right-color: var(--success);
  border-radius: 50%;
  transform: rotate(45deg);
}

.trust-list div:nth-child(1) {
  animation-delay: 80ms;
}

.trust-list div:nth-child(2) {
  animation-delay: 140ms;
}

.trust-list div:nth-child(3) {
  animation-delay: 200ms;
}

.trust-list div:nth-child(4) {
  animation-delay: 260ms;
}

.trust-list div:nth-child(5) {
  animation-delay: 320ms;
}

.trust-list .trust-list__refund {
  border-color: rgba(220, 38, 38, 0.28);
  background: #fff6f6;
  color: var(--danger);
  font-weight: 850;
  animation:
    item-in 520ms 380ms cubic-bezier(0.2, 0.8, 0.2, 1) both,
    refund-pulse 2.4s 800ms ease-in-out infinite;
}

.trust-list .trust-list__refund::before {
  border-color: rgba(220, 38, 38, 0.18);
  border-top-color: #dc2626;
  border-right-color: #dc2626;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
  width: min(1120px, calc(100vw - 48px));
  margin: 18px auto 0;
}

.info-card {
  width: auto;
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
}

.info-card--wide {
  border-color: rgba(116, 83, 245, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 255, 0.92)),
    #fff;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(232, 236, 247, 0.95);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list strong {
  color: var(--violet-strong);
  font-size: 15px;
}

.feature-list span,
.info-card p,
.solution-list p,
.news-list p,
.faq-list p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.info-card p {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9;
}

.seo-section,
.news-section,
.faq-section {
  width: min(1120px, calc(100vw - 48px));
  margin: 34px auto 0;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.solution-list article,
.faq-list details {
  border: 1px solid rgba(222, 226, 239, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.solution-list article {
  padding: 20px;
}

.solution-list h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.35;
}

.solution-list p {
  margin: 12px 0 0;
}

.news-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(222, 226, 239, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.news-item time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(16, 167, 120, 0.2);
  border-radius: 999px;
  color: var(--success);
  font-size: 13px;
  font-weight: 850;
}

.news-item h3 {
  margin: 0;
  color: #172033;
  font-size: 19px;
  line-height: 1.35;
}

.news-item p {
  margin: 10px 0 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  color: #172033;
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(20, 91, 255, 0.2);
  border-radius: 50%;
  color: var(--primary);
  font-size: 18px;
  font-weight: 520;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -2px 0 18px;
}

.faq-list code {
  color: var(--violet-strong);
  font-family:
    "SF Mono",
    "Menlo",
    monospace;
  font-weight: 850;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: clamp(22px, 3vw, 30px) 0 0;
}

.contact-card {
  min-width: min(100%, 300px);
  padding: 18px;
  border: 1px solid rgba(116, 83, 245, 0.18);
  border-radius: 8px;
  background: #faf8ff;
}

.contact-card span,
.contact-card code {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.contact-card code {
  margin-top: 10px;
  color: var(--violet-strong);
  font-family:
    "SF Mono",
    "Menlo",
    monospace;
  font-size: 18px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(44px, 8vh, 80px);
  min-height: 56px;
  padding: 16px 24px;
  border-top: 1px solid rgba(226, 229, 240, 0.5);
  background: rgba(255, 255, 255, 0.44);
  color: #73798b;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.72;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@keyframes liquid-scene-float {
  0%,
  100% {
    transform: translateX(16px) translateY(8px) scale(0.96);
  }
  50% {
    transform: translateX(2px) translateY(-18px) scale(1.08);
  }
}

@keyframes liquid-scene-float-mobile {
  0%,
  100% {
    transform: translateY(6px) scale(0.94);
  }
  50% {
    transform: translateY(-14px) scale(1.08);
  }
}

@keyframes liquid-lens-morph {
  0%,
  100% {
    border-radius: 46% 54% 49% 51% / 48% 44% 56% 52%;
    transform: rotate(-3deg) scale(0.95);
  }
  45% {
    border-radius: 55% 45% 52% 48% / 42% 52% 48% 58%;
    transform: rotate(5deg) scale(1.08);
  }
}

@keyframes liquid-base-breathe {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-50%) rotateX(66deg) scale(0.82);
  }
  50% {
    opacity: 0.84;
    transform: translateX(-50%) rotateX(66deg) scale(1.16);
  }
}

@keyframes liquid-glow-pulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.94;
    transform: scale(1.12);
  }
}

@keyframes liquid-lens-drift {
  0%,
  100% {
    transform: translate3d(-18px, 12px, 0) rotate(-10deg) scale(0.95);
  }
  50% {
    transform: translate3d(24px, -18px, 0) rotate(7deg) scale(1.1);
  }
}

@keyframes liquid-halo-one {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) rotate(-14deg) scale(0.82);
  }
  50% {
    opacity: 0.84;
    transform: translate(-50%, -50%) rotate(7deg) scale(1.2);
  }
}

@keyframes liquid-halo-two {
  0%,
  100% {
    opacity: 0.22;
    transform: translate(-50%, -50%) rotate(16deg) scale(0.78);
  }
  50% {
    opacity: 0.68;
    transform: translate(-50%, -50%) rotate(-12deg) scale(1.26);
  }
}

@keyframes liquid-wave {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotateX(68deg) scale(0.5);
  }
  22% {
    opacity: 0.84;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) rotateX(68deg) scale(1.46);
  }
}

@keyframes item-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes refund-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(220, 38, 38, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
  }
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: min(760px, calc(100vw - 40px));
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 38px;
    text-align: center;
  }

  .hero-pill,
  .hero-stats,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats,
  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    min-height: 290px;
  }

  .liquid-scene {
    width: min(460px, 74vw);
    min-width: 320px;
  }

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

  .solution-list {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 720px) {
  .topbar {
    height: 60px;
    padding: 0 16px;
  }

  .brand small,
  .top-nav {
    display: none;
  }

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

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .hero {
    width: min(100% - 28px, 520px);
    min-height: auto;
    padding: 34px 0;
  }

  #about,
  #solutions,
  #news,
  #faq,
  #contact {
    scroll-margin-top: 74px;
  }

  .hero-pill {
    max-width: 100%;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 34px;
    font-size: 12.5px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-title-main {
    white-space: normal;
  }

  .hero-desc {
    font-size: 14.5px;
  }

  .hero-stats {
    gap: 22px;
    margin-top: 28px;
  }

  .hero-stats div {
    min-width: 74px;
  }

  .hero-stats strong {
    font-size: 25px;
  }

  .hero-stats span {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }

  .button {
    width: min(100%, 304px);
  }

  .hero-art {
    min-height: 220px;
  }

  .liquid-scene {
    width: 320px;
    min-width: 0;
    animation-name: liquid-scene-float-mobile;
  }

  .liquid-glow {
    filter: blur(48px);
  }

  .trust-section,
  .info-grid,
  .seo-section,
  .news-section,
  .faq-section,
  .contact-section {
    width: min(100% - 28px, 760px);
  }

  .trust-section {
    margin-top: 14px;
  }

  .info-card,
  .contact-card {
    padding: 18px;
  }

  .trust-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-list div {
    min-height: 0;
  }

  .feature-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .solution-list article {
    padding: 18px;
  }

  .news-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .news-item time {
    justify-content: flex-start;
    width: fit-content;
    padding: 0 12px;
  }

  .faq-list details {
    padding: 0 16px;
  }

  .contact-section {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
