:root {
  --color-primary-start: #1d4ed8;
  --color-primary-end: #2563eb;
  --color-accent-red: #2563eb;
  --color-accent-pink: #60a5fa;
  --color-bg-white: #ffffff;
  --color-text-dark: #282931;
  --color-text-gray: #70737e;
  --color-bg-light: #f0f1f6;
  --color-border: #e7e8ef;
  --color-success: #52c41a;
  --color-error: #f5222d;
  --shadow-card: 0 4px 16px rgba(40, 41, 49, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(40, 41, 49, 0.12);
  --gradient-primary: linear-gradient(135deg, var(--color-primary-start) 0%, var(--color-primary-end) 100%);
  --font-main: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --container: 1440px;
  --header-height: 76px;
  --reveal-duration: 1180ms;
  --reveal-delay: 0ms;
  --reveal-distance: 48px;
  --reveal-x: 0px;
  --reveal-y: var(--reveal-distance);
  --reveal-scale: 0.96;
  --reveal-blur: 0px;
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition:
    transform 420ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
  border-bottom: 1px solid rgba(231, 232, 239, 0);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(231, 232, 239, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.site-header.is-hidden {
  transform: translate3d(0, calc(-100% - 8px), 0);
}

body.nav-open .site-header,
.site-header:focus-within {
  transform: translate3d(0, 0, 0);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--color-text-dark);
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(232, 79, 120, 0.22);
}

.brand__name {
  font-size: 20px;
  line-height: 1;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  position: relative;
  padding: 10px 12px;
  color: #4b4d57;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 180ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-primary-end);
}

.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 28px;
  padding: 0 32px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background-image: linear-gradient(90deg, #ed796f, #f85480, #e84f78);
  background-size: 300% 100%;
  background-repeat: repeat;
  box-shadow: 0 12px 24px rgba(232, 79, 120, 0.24);
  animation: cta-gradient-yoyo 5s ease-in-out infinite;
}

.btn--primary:hover {
  box-shadow: 0 16px 30px rgba(232, 79, 120, 0.32);
}

.btn--secondary {
  color: var(--color-primary-end);
  background: #fff;
  border-color: rgba(232, 79, 120, 0.42);
}

.btn--secondary:hover {
  background: #fff0f2;
}

.header__cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding-inline: 22px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 95, 118, 0.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff7f8 62%, #fff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 4.5vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.text-type {
  display: inline;
}

.text-type__cursor {
  display: inline-block;
  margin-left: 4px;
  color: var(--color-primary-end);
  font-weight: 700;
  animation: type-cursor-blink 900ms ease-in-out infinite;
}

.text-type__cursor.is-hidden {
  opacity: 0;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #555864;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero__actions .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 144px;
  min-height: 56px;
  padding-inline: 34px;
  border-radius: 30px;
  font-size: 18px;
}

.hero__actions .btn > span {
  position: relative;
  z-index: 1;
}

.hero__actions .btn--secondary {
  border-color: transparent;
  color: var(--color-primary-end);
  background: transparent;
}

.hero__actions .btn--secondary::before,
.hero__actions .btn--secondary::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.hero__actions .btn--secondary::before {
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, #ed796f, #f85480, #e84f78);
  background-size: 300% 100%;
  background-repeat: repeat;
  animation: cta-gradient-yoyo 5s ease-in-out infinite;
}

.hero__actions .btn--secondary::after {
  inset: 1px;
  z-index: -1;
  background: #fff;
}

.hero__actions .btn--secondary span {
  background-image: linear-gradient(90deg, #ed796f, #f85480, #e84f78);
  background-size: 300% 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: cta-gradient-yoyo 5s ease-in-out infinite;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin-top: 42px;
}

.hero__proof div {
  padding-left: 18px;
  border-left: 3px solid rgba(232, 79, 120, 0.28);
}

.hero__proof strong {
  display: block;
  font-size: clamp(30px, 2.4vw, 38px);
  line-height: 1.2;
  color: var(--color-primary-end);
  transform-origin: left center;
  transition: transform 180ms ease;
}

body.js-ready .hero__proof strong[data-count-to] {
  animation: proof-number-pop 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__proof span {
  display: block;
  margin-top: 6px;
  color: var(--color-text-gray);
  font-size: 15px;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  min-height: 550px;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.dashboard {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(40, 41, 49, 0.16);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  animation: dashboard-enter 780ms cubic-bezier(0.16, 1, 0.3, 1) both, dashboard-float 6.8s ease-in-out 900ms infinite;
  will-change: transform;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(237, 121, 111, 0.24), transparent 64%);
  pointer-events: none;
}

.dashboard__topbar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-gray);
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
}

.dot--red {
  background: #ff6b6b;
}

.dot--yellow {
  background: #ffc85a;
}

.dot--green {
  background: #45ce7b;
}

.dashboard__body {
  display: grid;
  grid-template-columns: 116px 1fr;
  min-height: 470px;
}

.dashboard__sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 16px;
  background: #282931;
}

.dashboard__logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #fff;
  background: var(--gradient-primary);
  font-weight: 800;
}

.dashboard__item {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 600;
}

.dashboard__item.is-current {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.dashboard__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

.sales-card,
.product-row,
.chart-card,
.mini-grid > div {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.sales-card {
  grid-column: span 2;
  min-height: 122px;
  padding: 24px;
  color: #fff;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.sales-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28) 42%, transparent 66%);
  transform: translateX(-120%);
  animation: card-shine 4.8s ease-in-out 1.4s infinite;
}

.sales-card span {
  display: block;
  opacity: 0.86;
}

.sales-card strong {
  display: block;
  margin-top: 6px;
  font-size: 38px;
  line-height: 1.2;
}

.sales-card small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.product-row {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.product-row strong,
.chart-card__head span {
  display: block;
  font-size: 16px;
  line-height: 1.4;
}

.product-row small {
  color: var(--color-text-gray);
  font-size: 13px;
}

.product-row b {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--color-accent-red);
  background: rgba(248, 84, 128, 0.12);
  font-size: 12px;
}

.shirt-icon {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: rgba(255, 95, 118, 0.14);
}

.shirt-icon::before {
  content: "";
  position: absolute;
  inset: 11px 12px 9px;
  background: var(--color-accent-red);
  clip-path: polygon(22% 0, 40% 18%, 60% 18%, 78% 0, 100% 24%, 84% 40%, 84% 100%, 16% 100%, 16% 40%, 0 24%);
}

.chart-card {
  padding: 18px;
}

.chart-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chart-card__head strong {
  color: var(--color-success);
}

.bars {
  height: 130px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
}

.bars span {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #ff8ca0 0%, #e84f78 100%);
  height: var(--bar-height);
  transform-origin: bottom;
  animation: bar-grow 900ms cubic-bezier(0.16, 1, 0.3, 1) both, bar-pulse 3.6s ease-in-out calc(var(--bar-delay) + 1200ms) infinite;
  animation-delay: var(--bar-delay), calc(var(--bar-delay) + 1200ms);
}

.mini-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.mini-grid > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  animation: metric-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mini-grid > div:nth-child(1) {
  animation-delay: 420ms;
}

.mini-grid > div:nth-child(2) {
  animation-delay: 560ms;
}

.mini-grid > div:nth-child(3) {
  animation-delay: 700ms;
}

.mini-grid strong {
  color: var(--color-primary-end);
  font-size: 22px;
}

.mini-grid span {
  color: var(--color-text-gray);
  font-size: 13px;
}

.tag-card {
  position: absolute;
  right: -22px;
  bottom: 34px;
  z-index: 3;
  width: 238px;
  padding: 18px 20px;
  border-radius: 18px;
  color: #fff;
  background: #282931;
  box-shadow: 0 20px 44px rgba(40, 41, 49, 0.24);
  animation: tag-card-pop 700ms cubic-bezier(0.16, 1, 0.3, 1) 650ms both, tag-card-float 5.2s ease-in-out 1.4s infinite;
}

.tag-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.tag-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.scan-beam {
  position: absolute;
  z-index: 4;
  top: 54px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  box-shadow: 0 0 18px rgba(255, 95, 118, 0.45);
  opacity: 0;
  animation: scan-sweep 4.2s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 196px;
  padding: 14px 16px;
  border: 0;
  outline: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(40, 41, 49, 0.13);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.floating-card span {
  display: block;
  color: var(--color-accent-red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  color: var(--color-text-dark);
  font-size: 15px;
  line-height: 1.45;
}

.floating-card--sync {
  top: 72px;
  right: -8px;
  animation: float-card-in 640ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both, float-card-drift 5.8s ease-in-out 1.1s infinite;
}

.floating-card--member {
  left: -30px;
  bottom: 130px;
  animation: float-card-in 640ms cubic-bezier(0.16, 1, 0.3, 1) 520ms both, float-card-drift-alt 6.2s ease-in-out 1.2s infinite;
}

.tag-stream {
  position: absolute;
  top: 18px;
  left: 38%;
  z-index: 1;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.tag-stream span {
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--color-primary-end);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(232, 79, 120, 0.18);
  box-shadow: 0 10px 24px rgba(232, 79, 120, 0.12);
  font-size: 12px;
  font-weight: 700;
  animation: stream-tag 5.6s linear infinite;
}

.tag-stream span:nth-child(2) {
  margin-left: 42px;
  animation-delay: 1.4s;
}

.tag-stream span:nth-child(3) {
  margin-left: 18px;
  animation-delay: 2.8s;
}

.section {
  padding: 120px 0;
}

.section--soft {
  background: var(--color-bg-light);
}

.feature-scene {
  position: relative;
  padding: 0;
  overflow: clip;
  isolation: isolate;
  background: #eee8e1;
}

.feature-scene__media {
  position: sticky;
  top: var(--header-height);
  z-index: 0;
  height: calc(100svh - var(--header-height));
  min-height: 640px;
  margin-bottom: calc((100svh - var(--header-height)) * -1);
  overflow: hidden;
  background: #e9e1d8;
}

.feature-scene__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 247, 243, 0.22) 0%, rgba(249, 247, 243, 0.74) 25%, rgba(249, 247, 243, 0.78) 75%, rgba(249, 247, 243, 0.24) 100%),
    linear-gradient(180deg, rgba(252, 250, 247, 0.62) 0%, rgba(250, 247, 242, 0.18) 42%, rgba(244, 239, 232, 0.7) 100%);
  pointer-events: none;
}

.feature-scene__media img {
  position: absolute;
  inset: -7%;
  width: 114%;
  height: 114%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.78) contrast(0.96);
  will-change: transform;
}

.feature-scene__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--color-text-dark);
  font-size: clamp(42px, 4.25vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.section-heading p,
.contact-copy p {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--color-text-gray);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.9;
}

.section-heading--left p,
.contact-copy p {
  max-width: 660px;
  margin-inline: 0;
}

.advantage-grid,
.solution-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.advantage-grid.scroll-stack {
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 8vh 0 20vh;
}

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

.feature-card,
.solution-card,
.case-card,
.module-panel,
.lead-form {
  border: 1px solid rgba(231, 232, 239, 0.88);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover,
.solution-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card {
  padding: 30px;
}

.scroll-stack-card {
  position: sticky;
  top: calc(var(--header-height) + 72px);
  z-index: calc(10 + var(--stack-index));
  min-height: 320px;
  display: grid;
  align-content: center;
  margin: 0 0 84px;
  padding: 48px;
  border-radius: 32px;
  background: #fff;
  isolation: isolate;
  transform-origin: top center;
  transform: translate3d(0, var(--stack-y, 0px), 0) scale(var(--stack-scale, 1)) rotate(var(--stack-rotate, 0deg));
  filter: blur(var(--stack-blur, 0px));
  will-change: transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 22px 58px rgba(40, 41, 49, 0.12);
  transition: box-shadow 200ms ease;
}

.feature-scene .scroll-stack-card {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 70px rgba(78, 63, 49, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px) saturate(0.82);
  backdrop-filter: blur(20px) saturate(0.82);
}

.feature-scene .scroll-stack-card:hover {
  box-shadow:
    0 32px 78px rgba(78, 63, 49, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.94);
}

body.js-ready .scroll-stack-card.reveal {
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    box-shadow 200ms ease;
  transition-delay: var(--reveal-delay), 0ms;
}

body.js-ready .scroll-stack-card.reveal,
body.js-ready .scroll-stack-card.reveal.is-visible {
  transform: translate3d(0, var(--stack-y, 0px), 0) scale(var(--stack-scale, 1)) rotate(var(--stack-rotate, 0deg));
  filter: blur(var(--stack-blur, 0px));
}

.scroll-stack-card:hover {
  transform: translate3d(0, var(--stack-y, 0px), 0) scale(var(--stack-scale, 1)) rotate(var(--stack-rotate, 0deg));
  box-shadow: 0 24px 60px rgba(40, 41, 49, 0.16);
}

.scroll-stack-card::before,
.scroll-stack-card::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.scroll-stack-card::before {
  display: none;
}

.scroll-stack-card::after {
  inset: 0;
  background: linear-gradient(135deg, rgba(237, 121, 111, 0.08), transparent 38%);
  opacity: var(--stack-highlight, 0);
}

.scroll-stack-end {
  width: 100%;
  height: 1px;
}

.feature-card__icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 85, 120, 0.12);
  border-radius: 24px;
  color: var(--color-accent-red);
  background: rgba(255, 245, 248, 0.92);
  
}

.feature-card__icon svg,
.feature-card__icon img {
  width: 44px;
  height: 44px;
  display: block;
}

.feature-card__icon svg {
  fill: currentColor;
}

.feature-scene .feature-card__icon svg {
  fill: none;
}

.feature-scene .feature-card__icon svg * {
  stroke-width: 1;
}

.feature-card h3,
.solution-card h3,
.case-card h3,
.module-content h3 {
  margin: 20px 0 10px;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.feature-card p,
.solution-card p,
.case-card p,
.module-content p {
  margin: 0;
  color: var(--color-text-gray);
  font-size: 16px;
  line-height: 1.85;
}

.product-layout,
.news-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--color-primary-end);
  font-weight: 700;
}

.text-link:hover {
  color: var(--color-accent-red);
  text-decoration: underline;
}

.news-more-link {
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 28px;
  text-decoration: none;
}

.news-more-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 79, 120, 0.09);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background-color 220ms ease;
}

.news-more-link:hover span,
.news-more-link:focus-visible span {
  transform: translate(3px, -3px);
  background: rgba(232, 79, 120, 0.15);
}

.module-panel {
  overflow: hidden;
}

.module-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-border);
}

.module-tab {
  min-height: 58px;
  border: 0;
  background: #fff;
  color: var(--color-text-gray);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.module-tab.is-active {
  color: var(--color-primary-end);
  background: #fff5f6;
}

.module-content {
  padding: 34px;
}

.module-content h3 {
  margin-top: 0;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.2;
}

.module-content ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.module-content li {
  position: relative;
  padding-left: 22px;
  color: #4d505a;
}

.module-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: end;
  margin-bottom: 56px;
}

.product-overview .section-heading {
  margin: 0;
}

.product-overview__intro {
  padding-bottom: 8px;
}

.product-overview__intro p {
  margin: 0;
  color: var(--color-text-gray);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.85;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-primary-end);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.feature-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(40, 41, 49, 0.1);
  border-left: 1px solid rgba(40, 41, 49, 0.1);
  background: #fff;
}

.capability-card {
  position: relative;
  min-height: 330px;
  padding: 30px 28px 28px;
  border-right: 1px solid rgba(40, 41, 49, 0.1);
  border-bottom: 1px solid rgba(40, 41, 49, 0.1);
  background:
    radial-gradient(circle at 0 0, rgba(237, 121, 111, 0.08), transparent 42%),
    #fff;
  overflow: hidden;
  transition: background-color 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 12% 6%, rgba(232, 79, 120, 0.13), transparent 48%),
    #fffafb;
}

.capability-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.capability-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-primary-end);
  background: #fff2f5;
  box-shadow: inset 0 0 0 1px rgba(232, 79, 120, 0.08);
  transform-origin: 50% 62%;
  will-change: transform;
}

.capability-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.capability-card__index {
  color: rgba(40, 41, 49, 0.32);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-card h3 {
  margin: 38px 0 20px;
  color: var(--color-text-dark);
  font-size: clamp(25px, 1.7vw, 30px);
  line-height: 1.2;
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  padding: 7px 10px;
  border-radius: 999px;
  color: #5f626d;
  background: rgba(244, 244, 247, 0.6);
  font-size: 13px;
  line-height: 1;
}

#solutions .solution-card {
  display: block;
  padding: 0;
  color: inherit;
  overflow: hidden;
}

.solution-card span,
.case-card__body span,
.news-item span {
  display: inline-flex;
  color: var(--color-accent-red);
  font-size: 13px;
  font-weight: 700;
}

#solutions .solution-card h3 {
  margin: 14px 0 10px;
}

#solutions .solution-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1ede8;
}

#solutions .solution-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(40, 41, 49, 0.08));
}

#solutions .solution-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

#solutions .solution-card:hover .solution-card__media img {
  transform: scale(1.065);
}

#solutions .solution-card__body {
  padding: 26px 28px 28px;
}

#solutions .solution-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--color-primary-end);
  font-weight: 700;
  font-style: normal;
}

#solutions .solution-card em b {
  font-size: 17px;
  font-weight: 500;
  transition: transform 220ms ease;
}

#solutions .solution-card:hover em b {
  transform: translate(3px, -3px);
}

.case-card {
  overflow: hidden;
}

.case-card__media {
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: end;
  padding: 22px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  overflow: hidden;
  background: #282931;
}

.case-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(40, 41, 49, 0.04) 0%, rgba(40, 41, 49, 0.18) 42%, rgba(40, 41, 49, 0.72) 100%),
    linear-gradient(135deg, rgba(237, 121, 111, 0.12), rgba(232, 79, 120, 0.2));
}

.case-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.case-card:hover .case-card__media img {
  transform: scale(1.07);
}

.case-card__media span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 14px rgba(40, 41, 49, 0.36);
}

.case-card__body {
  padding: 24px;
}

.case-card h3 {
  margin-top: 8px;
}

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

.news-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  padding: 10px 22px 10px 10px;
  border: 1px solid rgba(231, 232, 239, 0.88);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.news-item img {
  width: 150px;
  height: 112px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-item:hover img {
  transform: scale(1.025);
}

.news-item time {
  display: block;
  margin-bottom: 7px;
  color: var(--color-text-gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-item strong {
  display: block;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.35;
}

.news-item p {
  margin: 7px 0 0;
  color: var(--color-text-gray);
  font-size: 14px;
  line-height: 1.6;
}

.news-item > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-end);
  background: #fff2f5;
  font-size: 17px;
  transition: transform 220ms ease;
}

.news-item:hover > span {
  transform: translate(3px, -3px);
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(237, 121, 111, 0.96), rgba(232, 79, 120, 0.98)),
    var(--color-primary-end);
}

.contact-grid {
  grid-template-columns: 0.86fr minmax(360px, 0.72fr);
  align-items: center;
}

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

.contact-copy h2 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.08;
}

.contact-copy p {
  max-width: 620px;
  opacity: 0.9;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--color-text-dark);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form textarea {
  min-height: 116px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--color-primary-end);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 79, 120, 0.15);
}

.lead-form .is-invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(245, 34, 45, 0.12);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--color-text-gray);
  font-size: 14px;
  line-height: 1.5;
}

.form-message.is-success {
  color: var(--color-success);
}

.form-message.is-error {
  color: var(--color-error);
}

.site-footer {
  padding: 56px 0 44px;
  color: rgba(255, 255, 255, 0.7);
  background: #282931;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.brand--footer {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: #fff;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease),
    filter var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal--fade {
  --reveal-y: 0px;
  --reveal-scale: 1;
}

.reveal--rise {
  --reveal-y: var(--reveal-distance);
}

.reveal--left {
  --reveal-x: calc(-1 * var(--reveal-distance));
  --reveal-y: 0px;
}

.reveal--right {
  --reveal-x: var(--reveal-distance);
  --reveal-y: 0px;
}

.reveal--scale {
  --reveal-y: 28px;
  --reveal-scale: 0.92;
}

.reveal--soft {
  --reveal-blur: 14px;
}

.reveal-delay-1 {
  --reveal-delay: 140ms;
}

.reveal-delay-2 {
  --reveal-delay: 280ms;
}

.reveal-delay-3 {
  --reveal-delay: 420ms;
}

.reveal-delay-4 {
  --reveal-delay: 560ms;
}

.reveal-delay-5 {
  --reveal-delay: 700ms;
}

.reveal-stagger > .reveal:nth-child(2) {
  --reveal-delay: 140ms;
}

.reveal-stagger > .reveal:nth-child(3) {
  --reveal-delay: 280ms;
}

.reveal-stagger > .reveal:nth-child(4) {
  --reveal-delay: 420ms;
}

.reveal-stagger > .reveal:nth-child(5) {
  --reveal-delay: 560ms;
}

.reveal-stagger > .reveal:nth-child(6) {
  --reveal-delay: 700ms;
}

@keyframes dashboard-enter {
  from {
    opacity: 0;
    transform: translate3d(32px, 28px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1);
  }
}

@keyframes dashboard-float {
  0%,
  100% {
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  }
  50% {
    transform: translate3d(calc(var(--parallax-x) + 0px), calc(var(--parallax-y) - 10px), 0);
  }
}

@keyframes card-shine {
  0%,
  46% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes bar-grow {
  from {
    transform: scaleY(0.12);
    opacity: 0.32;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes bar-pulse {
  0%,
  100% {
    filter: saturate(1);
    transform: scaleY(1);
  }
  50% {
    filter: saturate(1.16);
    transform: scaleY(0.88);
  }
}

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

@keyframes tag-card-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tag-card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes scan-sweep {
  0%,
  18% {
    left: 16%;
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  58% {
    left: 88%;
    opacity: 0.72;
  }
  72%,
  100% {
    left: 88%;
    opacity: 0;
  }
}

@keyframes float-card-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float-card-drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(-6px);
  }
}

@keyframes float-card-drift-alt {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(9px) translateX(7px);
  }
}

@keyframes stream-tag {
  0% {
    opacity: 0;
    transform: translateY(28px) translateX(-12px);
  }
  12%,
  68% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-74px) translateX(18px);
  }
}

@keyframes type-cursor-blink {
  0%,
  42% {
    opacity: 1;
  }
  56%,
  100% {
    opacity: 0;
  }
}

@keyframes cta-gradient-yoyo {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes proof-number-pop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.82);
  }
  55% {
    opacity: 1;
    transform: translateY(-2px) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  body.js-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .dashboard,
  .sales-card::after,
  .bars span,
  .mini-grid > div,
  .tag-card,
  .scan-beam,
  .floating-card,
  .tag-stream span {
    animation: none !important;
  }

  .scan-beam {
    display: none;
  }

  .text-type__cursor {
    display: none;
  }

  .btn--primary,
  .hero__actions .btn--secondary::before,
  .hero__actions .btn--secondary span,
  body.js-ready .hero__proof strong[data-count-to] {
    animation: none !important;
    background-position: 50% 50%;
  }
}

@media (max-width: 1199px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 0;
    padding: 20px;
    background: #fff;
    border-top: 1px solid var(--color-border);
  }

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

  .site-nav__link {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-bottom: 1px solid var(--color-border);
    font-size: 17px;
  }

  .site-nav__link::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .hero {
    padding: 70px 0 72px;
  }

  .hero__grid,
  .product-layout,
  .news-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: auto;
  }

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

  .advantage-grid.scroll-stack {
    display: block;
    width: min(100%, 760px);
    padding: 5vh 0 18vh;
  }

  .feature-scene__content {
    padding-top: 96px;
  }

  .scroll-stack-card {
    top: calc(var(--header-height) + 44px);
    min-height: 280px;
    margin-bottom: 72px;
    padding: 34px;
    border-radius: 24px;
  }

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

  .product-overview {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 767px) {
  :root {
    --reveal-distance: 20px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand__logo {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: 18px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero__grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.052em;
  }

  .hero p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.85;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .dashboard {
    border-radius: 20px;
  }

  .dashboard__body {
    grid-template-columns: 1fr;
  }

  .dashboard__sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 14px;
  }

  .dashboard__logo {
    width: 38px;
    height: 38px;
    margin: 0 8px 0 0;
    flex: 0 0 auto;
  }

  .dashboard__item {
    flex: 0 0 auto;
  }

  .dashboard__main {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .sales-card,
  .product-row {
    grid-column: auto;
  }

  .sales-card strong {
    font-size: 30px;
  }

  .mini-grid {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }

  .tag-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .floating-card,
  .tag-stream {
    display: none;
  }

  .scan-beam {
    top: 108px;
  }

  .section {
    padding: 76px 0;
  }

  .feature-scene {
    padding: 0;
  }

  .feature-scene__media {
    min-height: 560px;
  }

  .feature-scene__media img {
    inset: -5% -26%;
    width: 152%;
    height: 110%;
    object-position: 72% center;
  }

  .feature-scene__media::after {
    background:
      linear-gradient(90deg, rgba(249, 247, 243, 0.68), rgba(249, 247, 243, 0.8)),
      linear-gradient(180deg, rgba(252, 250, 247, 0.5), rgba(244, 239, 232, 0.72));
  }

  .feature-scene__content {
    padding-top: 76px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.048em;
  }

  .section-heading p,
  .contact-copy p,
  .feature-card p,
  .solution-card p,
  .case-card p,
  .module-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .feature-card h3,
  .solution-card h3,
  .case-card h3,
  .module-content h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .advantage-grid,
  .solution-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid.scroll-stack {
    display: block;
    padding: 4vh 0 16vh;
  }

  .feature-card,
  .solution-card,
  .module-content,
  .lead-form {
    padding: 22px;
  }

  #solutions .solution-card {
    padding: 0;
  }

  #solutions .solution-card__body {
    padding: 22px;
  }

  .product-overview {
    margin-bottom: 36px;
  }

  .feature-matrix {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .capability-card h3 {
    margin: 28px 0 16px;
    font-size: 24px;
  }

  .capability-card li {
    font-size: 12px;
  }

  .scroll-stack-card {
    top: calc(var(--header-height) + 22px);
    min-height: 246px;
    margin-bottom: 60px;
    padding: 24px;
    border-radius: 20px;
  }

  .feature-card__icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .feature-card__icon img,
  .feature-card__icon svg {
    width: 38px;
    height: 38px;
  }

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

  .module-tab {
    min-height: 50px;
    font-size: 14px;
  }

  .news-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    min-height: 112px;
    padding: 8px;
  }

  .news-item img {
    width: 104px;
    height: 96px;
  }

  .news-item p,
  .news-item > span {
    display: none;
  }

  .news-item strong {
    font-size: 17px;
  }

  .contact-grid {
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
