:root {
  --blue: #4d60ff;
  --blue-deep: #2738df;
  --ink: #070915;
  --muted: #6b7280;
  --line: #eef0f7;
  --container: 1420px;
  --header-h: 94px;
  --shadow-card: 0 12px 28px rgba(39, 48, 92, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family:
    "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: #fff;
  background: var(--blue);
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: #fff;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: #000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 268px;
  color: #fff;
}

.brand__image {
  width: 250px;
  height: 72px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(24px, 3vw, 58px);
}

.nav a {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #5267ff;
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 26px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.login-link span {
  width: 22px;
  height: 22px;
}

.login-link svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
}

.register-link {
  font-size: 16px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  --hero-scale: 1;
  aspect-ratio: 1920 / 847;
  min-height: 0;
  color: #fff;
  background: #02030a;
  overflow: visible;
}

.hero::before {
  display: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #02030a;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 900px 380px at 72% 42%,
      rgba(72, 86, 255, 0.2),
      transparent 68%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.72) 30%,
      rgba(0, 0, 0, 0.18) 66%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.34) 0%,
      transparent 24%,
      rgba(0, 0, 0, 0.62) 100%
    );
  pointer-events: none;
}

.hero__carousel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: transparent;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.75s ease,
    transform 6s ease;
  transform: scale(1.025);
}

.hero__slide::before,
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__slide::before {
  background: radial-gradient(
    ellipse 780px 320px at 75% 46%,
    rgba(73, 85, 255, 0.22),
    transparent 72%
  );
}

.hero__slide::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.34) 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero__slide--primary {
  background: transparent;
}

.hero__slide--platform {
  background: transparent;
}

.hero__slide--delivery {
  background: transparent;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.99) 34%,
      rgba(0, 0, 0, 0.42) 54%,
      rgba(0, 0, 0, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.78) 0%,
      transparent 24%,
      transparent 74%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    radial-gradient(
      ellipse 1050px 210px at 54% 49%,
      rgba(43, 69, 255, 0.32),
      transparent 64%
    ),
    linear-gradient(
      102deg,
      transparent 48%,
      rgba(29, 43, 194, 0.22) 49%,
      transparent 61%
    ),
    linear-gradient(
      5deg,
      transparent 57%,
      rgba(39, 62, 255, 0.42) 58%,
      transparent 60%
    );
  mix-blend-mode: screen;
  opacity: 0.75;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
}

.hero__copy {
  width: min(950px, 72vw);
  padding-top: 188px;
  margin-left: 0;
}

.hero__copy--art {
  width: min(920px, 72vw);
  padding-top: 188px;
}

.hero__banner-text {
  width: min(820px, 100%);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.hero__mobile-copy {
  display: none;
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  max-width: 920px;
  font-size: clamp(42px, 4.1vw, 78px);
  font-weight: 950;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.48);
  transform: skewX(-8deg);
}

.hero__title span {
  display: block;
}

.text-blue {
  display: inline !important;
  color: #4357ff;
}

.hero__tags {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px 8px;
  margin-top: 22px;
}

.hero__tags span {
  min-width: 136px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid #0a79bd;
  border-radius: 8px;
  background: rgba(4, 17, 39, 0.72);
  box-shadow:
    inset 0 0 14px rgba(0, 122, 255, 0.32),
    0 0 10px rgba(32, 119, 255, 0.22);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.hero__cta {
  display: inline-grid;
  place-items: center;
  width: 250px;
  height: 86px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero__cta:hover {
  background: rgba(79, 96, 255, 0.22);
  transform: translateY(-2px);
}

.hero__note {
  width: 580px;
  margin: 36px 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 32px;
}

.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 88px;
  z-index: 5;
  transform: translateX(-50%);
}

.hero__controls .hero__dots {
  margin-top: 0;
}

.dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.dot.is-active {
  background: #fff;
  transform: scale(1.06);
}

.hero__watermark {
  position: absolute;
  right: 36px;
  bottom: 26px;
  z-index: 5;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

.hero-services {
  position: absolute;
  left: 50%;
  bottom: -85px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  transform: translateX(-50%);
}

.hero-service {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border-radius: 18px;
  background: #fff;
  color: #111827;
  box-shadow: 0 10px 18px rgba(37, 36, 87, 0.16);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(37, 36, 87, 0.22);
}

.hero-service strong {
  font-size: 31px;
  font-weight: 500;
  white-space: nowrap;
}

.cube {
  position: relative;
  width: 74px;
  height: 74px;
  display: inline-block;
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(198, 206, 255, 0.75)
    ),
    linear-gradient(135deg, #d9e3ff, #f7f8ff);
  box-shadow:
    inset 0 0 0 1px rgba(78, 92, 255, 0.18),
    0 16px 24px rgba(74, 87, 255, 0.16);
  transform: rotate(45deg) skew(-7deg, -7deg);
}

.cube::before,
.cube::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  transform: rotate(-45deg) skew(7deg, 7deg);
}

.cube::before {
  inset: 18px;
  background: linear-gradient(135deg, #5a6cff, #7f8cff);
  opacity: 0.9;
}

.cube::after {
  inset: 30px 21px;
  border: 3px solid rgba(255, 255, 255, 0.88);
}

.cube--system::before {
  clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
}

.cube--sand::before {
  inset: 20px 13px;
  clip-path: polygon(0 88%, 24% 36%, 50% 55%, 76% 10%, 100% 88%);
}

.cube--manage::before {
  inset: 17px 22px;
  border-radius: 4px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--white {
  background: #fff;
}

.business {
  padding-top: 160px;
  padding-bottom: 145px;
}

.section__head {
  text-align: center;
  margin-bottom: 82px;
}

.section__title {
  margin: 0;
  font-size: 42px;
  font-weight: 950;
  font-style: italic;
  line-height: 1.12;
  transform: skewX(-8deg);
}

.section__desc {
  margin: 7px 0 0;
  color: #171717;
  font-size: 24px;
  line-height: 1.35;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 39px;
  align-items: start;
}

.business-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
  color: #fff;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.13);
}

.business-card--lower {
  margin-top: 96px;
}

.business-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.business-card:hover > img {
  transform: scale(1.05);
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 8%,
      rgba(0, 0, 0, 0.28) 46%,
      rgba(0, 0, 0, 0.76) 100%
    ),
    radial-gradient(
      circle at 52% 24%,
      rgba(86, 101, 255, 0.24),
      transparent 34%
    );
  pointer-events: none;
}

.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.business-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 64px 30px 34px;
  color: #fff;
}
.business-card:nth-child(2n) .business-card__content {
  padding-top: 204px;
}

.floating-cube {
  width: 161px;
  height: 91px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  margin-bottom: 10px;
}

.floating-cube::before,
.floating-cube::after {
  display: none;
}

.business-card h3 {
  margin: 0 0 12px;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.58);
}

.business-card h3,
.business-card p {
  position: relative;
  display: block;
  padding: 0;
  background: transparent;
}

.business-card p {
  margin: 0;
  font-size: 25px;
  line-height: 1.32;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.56);
}

.process {
  padding: 0;
  color: #fff;
  background: #fff;
}

.process__head {
  margin: 0;
  padding: 86px 0 50px;
  color: #080808;
  background: #fff;
}

.process__head .section__desc {
  color: #111;
}

.process-stage {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: url("../assets//hezuo-bg.png") no-repeat center center;
  background-size: cover;
}

.process-band {
  position: absolute;
  left: -6%;
  top: 355px;
  width: 112%;
  height: 350px;
  border-top: 3px solid rgba(79, 79, 255, 0.86);
  border-bottom: 3px solid rgba(79, 79, 255, 0.78);
  background: linear-gradient(
    180deg,
    rgba(62, 52, 222, 0.72),
    rgba(75, 69, 255, 0.43)
  );
  box-shadow: 0 0 42px rgba(76, 72, 255, 0.46);
  transform: rotate(-9deg);
  transform-origin: center;
}

.process-line {
  position: absolute;
  left: -6%;
  top: 210px;
  width: 112%;
  height: 4px;
  background: #514dff;
  box-shadow: 0 0 22px #514dff;
  transform: rotate(8deg);
  transform-origin: center;
}

.process-steps {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.process-step {
  position: relative;
  padding-left: 5px;
  align-self: start;
  max-width: 194px;
  height: 100%;
  font-weight: 800;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 1px;
  height: 96%;
  border-left: 1px dashed rgba(255, 255, 255, 0.52);
}

.process-step--top {
  padding-top: 92px;
}

.process-step:nth-child(3).process-step--top {
  padding-top: 100px;
}

.process-step:nth-child(5).process-step--top {
  padding-top: 160px;
}

.process-step--bottom {
  padding-top: 290px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: #7067ff;
  color: #fff;
  font-size: 27px;
  font-weight: 950;
  font-style: italic;
  line-height: 1;
  transform: rotate(-12deg);
}

.process-step h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.08;
}

.process-step p {
  margin: 6px 0 0;
  font-size: 21px;
  line-height: 1.32;
}

.cases {
  padding-top: 100px;
  padding-bottom: 82px;
}

.cases .section__head {
  margin-bottom: 70px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
  width: 100%;
  justify-content: flex-start;
}

.tab {
  position: relative;
  padding: 8px 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.tab::after {
  display: none;
}

.tab.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  font-weight: 700;
}

.brand-scroll {
  overflow: hidden;
  position: relative;
  height: 180px;
}

.brand-scroll-track {
  position: relative;
  white-space: nowrap;
  height: 100%;
}

.brand-scroll-items {
  display: inline-flex;
  gap: 30px;
  animation: brandScroll 30s linear infinite;
}

.brand-scroll-items:hover {
  animation-play-state: paused;
}

.brand-scroll-item {
  display: inline-block;
  width: 240px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.brand-scroll-item:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 24px rgba(83,104,255,0.2);
}

.brand-scroll-item img {
  max-width: 220px;
  max-height: 120px;
  object-fit: contain;
}

@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cases-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
  width: 100%;
  justify-content: flex-start;
}

.cases-tab {
  position: relative;
  padding: 8px 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cases-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.cases-tab.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  font-weight: 700;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 88px 85px;
}

.case-panel {
  display: block;
}

.case-panel[hidden] {
  display: none;
}

.case-card {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  border-radius: 14px;
  background: #171717;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: grayscale(0.8) contrast(1.08);*/
}

.case-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.case-card strong {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 24px;
  z-index: 1;
  color: #5df0e5;
  font-size: 30px;
  font-weight: 950;
  text-align: center;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
}

.case-card:hover::after,
.case-card:focus-visible::after,
.case-card:hover strong,
.case-card:focus-visible strong {
  opacity: 1;
}

.case-card:hover strong,
.case-card:focus-visible strong {
  transform: translateY(0);
}

@media (hover: none) and (pointer: coarse) {
  .case-card strong {
    opacity: 1;
    transform: none;
  }

  .case-card::after {
    opacity: 1;
  }
}

.section__cta {
  margin-top: 68px;
  text-align: center;
}

.btn-primary {
  display: inline-grid;
  min-width: 202px;
  height: 60px;
  place-items: center;
  border-radius: 10px;
  background: #5368ff;
  color: #fff;
  font-size: 29px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary:hover {
  background: #4458ee;
  box-shadow: 0 12px 28px rgba(68, 88, 238, 0.28);
  transform: translateY(-2px);
}

.news {
  padding-top: 52px;
  padding-bottom: 92px;
}

.news .section__head {
  margin-bottom: 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 44px;
}

.news-card {
  position: relative;
  min-height: 255px;
  display: grid;
  grid-template-columns: 284px 1fr;
  align-items: end;
}

.news-card__date {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 0 34px 34px;
  border-radius: 0 0 0 14px;
  background: #f1f1f1;
}

.news-card__date strong {
  color: #2d2d2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.85;
}

.news-card__date span {
  margin-left: 2px;
  color: #3b3b3b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.news-card__date span::first-letter {
  color: #4566ff;
}

.news-card__body {
  position: relative;
  min-height: 230px;
  margin-left: -2px;
  padding: 22px 22px 20px 38px;
  border-radius: 0 14px 14px 0;
  background: #f1f1f1;
}

.news-card__body img {
  position: absolute;
  left: -250px;
  top: -32px;
  width: 273px;
  height: 145px;
  object-fit: cover;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 13px 24px rgba(68, 78, 255, 0.15);
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.15;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-card__source {
  margin: 0 0 10px !important;
  color: #9a9a9a !important;
  font-size: 19px !important;
}

.news-card__body > p:not(.news-card__source) {
  margin: 0;
  color: #2d2d2d;
  font-size: 21px;
  line-height: 1.43;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card a {
  display: block;
  margin-top: 6px;
  text-align: right;
  color: #5368ff;
  font-size: 20px;
  font-weight: 500;
}

.contact {
  padding-top: 82px;
  padding-bottom: 112px;
}

.contact__head {
  margin-bottom: 32px;
}

.contact__body {
  display: grid;
  gap: 20px;
  width: min(1300px, 100%);
  margin-inline: auto;
}

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

.contact__summary-item {
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  border: 1px solid rgba(83, 104, 255, 0.12);
  box-shadow: 0 10px 24px rgba(21, 28, 50, 0.08);
}

.contact__summary-label {
  display: block;
  margin-bottom: 10px;
  color: #5368ff;
  font-size: 14px;
  font-weight: 800;
}

.contact__summary-item p,
.contact__summary-item a {
  margin: 0;
  color: #1a1d2b;
  font-size: 16px;
  line-height: 1.7;
}

.contact__summary-item a {
  display: inline-block;
  font-weight: 800;
}

.contact__summary-note {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.contact-form {
  width: 100%;
  margin: 0;
  padding: 32px 34px 36px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(21, 28, 50, 0.1);
  border: 1px solid rgba(83, 104, 255, 0.12);
}

.contact-form__field + .contact-form__field {
  margin-top: 20px;
}

.contact-form__field label {
  display: block;
  margin-bottom: 8px;
  color: #1a1d2b;
  font-size: 16px;
  font-weight: 800;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #d8dce8;
  border-radius: 10px;
  padding: 13px 15px;
  color: #1a1d2b;
  font: inherit;
  font-size: 16px;
  background: #f8f9fc;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #5368ff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(83, 104, 255, 0.16);
}

.contact-form__submit {
  width: 100%;
  min-width: 0;
  height: 56px;
  margin-top: 26px;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form__feedback {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form__feedback.is-success {
  color: #0f6b42;
  background: rgba(18, 201, 107, 0.12);
}

.contact-form__feedback.is-error {
  color: #b42334;
  background: rgba(232, 93, 106, 0.1);
}

.section__title--large {
  font-size: 62px;
}

.map-card {
  width: 100%;
  margin-inline: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(83, 104, 255, 0.12);
  box-shadow: 0 12px 36px rgba(21, 28, 50, 0.1);
}

.map-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 16px;
}

.map-card__head h3 {
  margin: 0 0 8px;
  color: #1a1d2b;
  font-size: 20px;
  font-weight: 800;
}

.map-card__head p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.map-card__map {
  width: 100%;
  height: clamp(280px, 34vw, 480px);
}

@media (min-width: 901px) {
  .contact__body {
    gap: 22px;
  }

  .map-card__map {
    height: 480px;
  }
}

@media (max-width: 900px) {
  .contact {
    padding-top: 68px;
    padding-bottom: 84px;
  }

  .contact__summary,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px 26px;
    border-radius: 16px;
  }

  .contact-form__submit {
    height: 52px;
    font-size: 18px;
  }

  .map-card__head {
    padding: 18px 18px 14px;
  }

  .map-card__map {
    height: 280px;
  }
}

.site-footer {
  position: relative;
  color: #e5e7eb;
  background: url("../assets/footer-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 48px 0 22px;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 2.2fr 1.1fr;
  gap: 54px;
}

.footer__col h3,
.footer__contact h3,
.footer__qr h3 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.footer__col a {
  display: block;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}

.footer__col a:hover {
  color: #fff;
}

.footer__phone {
  display: inline-block;
  margin: -8px 0 21px;
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.footer__contact p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer__qr img {
  width: 132px;
  height: 132px;
  object-fit: cover;
}

.footer__qr p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.copyright {
  margin: 38px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

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

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

@media (max-width: 1382px) {
  :root {
    --container: 1180px;
  }

  .brand {
    min-width: 230px;
  }

  .brand__image {
    width: 220px;
    height: 64px;
  }

  .nav {
    gap: 28px;
  }

  .hero__copy {
    margin-left: 18px;
    width: min(860px, 70vw);
    padding-top: 148px;
  }

  .hero__copy--art {
    width: min(820px, 70vw);
    padding-top: 148px;
  }

  .hero__banner-text {
    width: min(720px, 100%);
  }

  .hero__eyebrow {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .hero__title {
    max-width: 820px;
    font-size: clamp(36px, 3.4vw, 68px);
  }

  .hero__tags {
    gap: 10px 8px;
    margin-top: 18px;
    grid-template-columns: repeat(6, max-content);
  }

  .hero__tags span {
    min-width: 120px;
    height: 34px;
    padding: 0 14px;
    font-size: 18px;
  }

  .hero__cta {
    width: 216px;
    height: 74px;
    margin-top: 30px;
    font-size: 28px;
  }

  .hero__note {
    width: 100%;
    margin-top: 28px;
    font-size: 13px;
  }

  .hero__controls {
    bottom: 54px;
  }

  .hero__watermark {
    bottom: 18px;
    font-size: 10px;
  }

  .hero-services {
    bottom: -87px;
    gap: 12px;
  }

  .business-grid {
    gap: 28px;
  }

  .business-card h3 {
    font-size: 27px;
  }

  .business-card p {
    font-size: 19px;
  }

  .case-grid {
    gap: 56px 54px;
  }

  .news-card {
    grid-template-columns: 235px 1fr;
  }

  .news-card__body img {
    left: -215px;
    width: 243px;
  }
  .business-card {
    height: 434px;
  }
  .business-card:nth-child(2n) .business-card__content {
    padding-top: 104px;
  }
}

@media (max-width: 1280px) and (min-width: 1001px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-card {
    grid-template-columns: 250px 1fr;
  }

  .news-card__body {
    padding-left: 26px;
  }

  .news-card__body img {
    left: -198px;
    width: 220px;
  }

  .news-card h3 {
    font-size: 24px;
  }

  .news-card__source {
    font-size: 17px !important;
  }

  .news-card__body > p:not(.news-card__source) {
    font-size: 18px;
  }
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 44px, var(--container));
  }

  .site-header {
    height: 76px;
  }

  .header__actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 22px 20px;
    background: rgba(2, 3, 10, 0.96);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    display: block;
    padding: 13px 0;
    text-align: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
  }
  .nav a::after {
    display: none;
  }
  .hero {
    aspect-ratio: 1920 / 920;
  }

  .hero__carousel {
    min-height: 100%;
  }

  .hero__inner {
    min-height: 100%;
  }

  .hero__copy {
    width: 90%;
    padding-top: 118px;
    margin-left: 0;
  }

  .hero__copy--art {
    width: min(820px, 86vw);
    padding-top: 118px;
  }

  .hero__controls {
    bottom: 12px;
  }

  .hero__tags {
    grid-template-columns: repeat(6, max-content);
  }

  .hero__note {
    width: min(650px, 100%);
  }

  .hero-services {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    bottom: 0px;
    padding-top: 40px;
    left: 0;
    transform: none;
  }

  .business {
    padding-top: 400px;
    padding-bottom: 0;
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .business-card {
    height: 300px;
  }
  .business-card__content {
    padding: 47px 30px 34px !important;
  }
  .business-card--lower {
    margin-top: 0;
  }

  .process-stage {
    height: auto;
    padding: 80px 0;
  }

  .process-band,
  .process-line,
  .process-stage::before {
    display: none;
  }

  .process-steps {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .process-step,
  .process-step--top,
  .process-step--bottom {
    max-width: none;
    margin-top: 0;
    padding: 24px !important;
    border-left: 1px dashed rgba(255, 255, 255, 0.28);
    background: rgba(80, 74, 255, 0.18);
    border-radius: 14px;
  }

  .process-step::before {
    display: none;
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news {
    padding-bottom: 0;
  }
  .news-card {
    grid-template-columns: 240px 1fr;
  }
  .news-card__body {
    padding-left: 22px;
  }
  .news-card__body img {
    left: -209px;
    width: 210px;
  }
  .news-card h3 {
    font-size: 22px;
  }
  .news-card__body > p:not(.news-card__source) {
    font-size: 16px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 700px) {
  .brand {
    min-width: 0;
  }

  .brand__image {
    width: 190px;
    height: 54px;
  }

  .hero {
    width: 100%;
    /* aspect-ratio: 1920 / 1677; */
    height: 520px;
  }

  .hero__carousel {
    min-height: 100%;
  }

  .hero__inner {
    min-height: 100%;
  }

  .hero__copy--art {
    padding-top: 100px;
  }

  .hero__banner-text {
    display: none;
  }

  .hero__mobile-copy {
    display: grid;
    width: min(340px, 100%);
    gap: 12px;
  }

  .hero__mobile-copy strong,
  .hero__mobile-copy span {
    display: block;
    font-size: 30px;
    font-weight: 950;
    font-style: italic;
    line-height: 1.24;
  }

  .hero__mobile-copy span {
    color: #fff;
  }

  .hero__mobile-copy .hero__cta {
    margin-top: 24px;
  }

  .hero__eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .hero__title {
    max-width: 340px;
    font-size: 30px;
    line-height: 1.28;
  }

  .hero__tags {
    grid-template-columns: repeat(3, max-content);
    /* width: min(320px, 100%); */
    gap: 10px;
  }

  .hero__tags span {
    min-width: 0;
    font-size: 16px;
  }

  .hero__cta {
    width: 200px;
    height: 42px;
    margin-top: 36px;
    font-size: 20px;
  }

  .hero__note {
    width: min(340px, 100%);
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero__mobile-copy .hero__note {
    margin-top: 8px;
  }

  .hero__controls {
    bottom: 18px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .hero__watermark {
    display: none;
  }

  .hero-services {
    grid-template-columns: repeat(1, 1fr);
    bottom: 0px;
  }

  .hero-service {
    height: 104px;
    justify-content: flex-start;
    gap: 22px;
    padding: 0 26px;
  }

  .hero-service strong {
    font-size: 24px;
  }
  .cases {
    padding-bottom: 0;
  }
  .business {
    padding-top: 530px;
  }

  .section__title {
    font-size: 36px;
  }

  .section__title--large {
    font-size: 46px;
  }

  .section__desc {
    font-size: 19px;
  }

  .business-grid,
  .process-steps,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    height: 296px;
  }

  .tabs {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .tab {
    font-size: 20px;
  }

  .case-grid {
    gap: 28px;
  }

  .news-card {
    display: block;
    min-height: 0;
    border-radius: 14px;
    background: #f1f1f1;
    overflow: hidden;
  }

  .news-card__date {
    height: auto;
    padding: 24px 24px 8px;
    border-radius: 0;
  }

  .news-card__date strong {
    font-size: 48px;
  }

  .news-card__body {
    margin-left: 0;
    padding: 18px 24px 24px;
    border-radius: 0;
  }

  .news-card__body img {
    position: static;
    width: 100%;
    height: 160px;
    margin-bottom: 18px;
    border-radius: 10px;
  }

  .news-card h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .news-card__body > p:not(.news-card__source) {
    font-size: 17px;
    -webkit-line-clamp: 3;
  }

  .map-card img {
    height: 240px;
  }

  .footer__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.archive-page {
  padding-top: var(--header-h);
  background: #f4f6fb;
}

.archive-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0a1022;
}

.archive-hero::before {
  display: none;
}

.archive-hero--cases {
  background: #0a1022;
}

.archive-hero--news {
  background: #0a1022;
}

.archive-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: end;
  min-height: 360px;
  padding: 42px 0 34px;
}

.archive-hero__copy {
  position: relative;
  z-index: 1;
}

.archive-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #02030a;
}

.archive-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.archive-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 900px 380px at 72% 42%,
      rgba(72, 86, 255, 0.2),
      transparent 68%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.72) 30%,
      rgba(0, 0, 0, 0.18) 66%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.34) 0%,
      transparent 24%,
      rgba(0, 0, 0, 0.62) 100%
    );
  pointer-events: none;
}

.archive-hero__copy h1 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.06;
}

.archive-hero__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-hero__copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.archive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cases-page .archive-hero__actions > a,
.case-detail-page .archive-hero__actions > a,
.news-page .archive-hero__actions > a,
.news-detail-page .archive-hero__actions > a {
  flex: 1 1 180px;
  max-width: 180px;
  height: 52px;
  min-height: 52px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1;
}

.detail-link,
.detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 800;
}

.detail-link {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: transparent;
}

.archive-nav {
  display: flex;
  gap: 12px;
  padding: 18px 0 28px;
  overflow-x: auto;
}

.archive-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #d8dce8;
  background: #fff;
  color: #1a1d2b;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.archive-nav a:hover,
.archive-nav a.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.detail-section {
  padding: 0 0 28px;
}

.detail-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.detail-copy,
.detail-story {
  padding: 24px;
  border: 1px solid rgba(83, 104, 255, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(21, 28, 50, 0.08);
}

.detail-kicker {
  margin: 0 0 12px;
  color: #5368ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-copy h2,
.detail-story h2 {
  margin: 0;
  color: #1a1d2b;
  font-size: 28px;
  line-height: 1.18;
}

.detail-copy p,
.detail-story p {
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4458ee;
  font-size: 13px;
  font-weight: 800;
}

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

.detail-list li {
  position: relative;
  padding-left: 16px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(83, 104, 255, 0.12);
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 28, 50, 0.08);
}

.detail-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.detail-card__body {
  padding: 16px;
}

.detail-card h3 {
  margin: 0 0 8px;
  color: #1a1d2b;
  font-size: 18px;
  line-height: 1.3;
}

.detail-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.detail-story img {
  width: 100%;
  height: 240px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 14px;
}

.detail-back {
  margin-top: 22px;
  background: var(--blue);
  color: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: #334155;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #5368ff;
}

.breadcrumb span:last-child {
  color: #0f172a;
}

.case-detail-page .breadcrumb,
.news-detail-page .breadcrumb {
  gap: 10px;
  padding: 14px 0 18px;
  border-bottom: 1px solid rgba(83, 104, 255, 0.12);
  font-size: 15px;
}

.case-detail-page .breadcrumb a,
.news-detail-page .breadcrumb a {
  color: #475569;
}

.case-detail-page .breadcrumb span:last-child,
.news-detail-page .breadcrumb span:last-child {
  color: #0f172a;
  font-weight: 800;
}

.cases-page__intro {
  padding: 28px 0 16px;
}

.cases-page__heading {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
  margin-top: 16px;
}

.cases-page__heading h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.cases-page__heading p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
}

.cases-page__meta {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(83, 104, 255, 0.18);
  border-radius: 14px;
  background: #fff;
  color: #5368ff;
  font-size: 14px;
  font-weight: 800;
}

.cases-page__list {
  padding-bottom: 28px;
}

.cases-page__grid {
  margin-top: 10px;
}

.cases-page .archive-hero__actions .btn-primary,
.case-detail-page .archive-hero__actions .btn-primary {
  min-width: 160px;
  font-size: 18px;
}

.cases-page .archive-hero__actions .detail-link,
.case-detail-page .archive-hero__actions .detail-link {
  border-color: rgba(255, 255, 255, 0.42);
}

.cases-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d8dce8;
  border-radius: 10px;
  background: #fff;
  color: #1a1d2b;
  font-size: 15px;
  font-weight: 800;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}

.pagination-btn.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 42px;
  color: #94a3b8;
  font-weight: 800;
}

.case-detail-page {
  background: #f4f6fb;
}

.case-detail-page__intro {
  /* padding: 28px 0 0; */
}

.case-detail-page__article {
  max-width: 100%;
  margin: 18px auto 0;
  padding: 28px;
  border: 1px solid rgba(83, 104, 255, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(21, 28, 50, 0.08);
  margin-bottom: 40px;
}

.case-detail-page__kicker {
  margin: 0 0 12px;
  color: #5368ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-detail-page__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
}

.case-detail-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.case-detail-page__cover {
  width: 100%;
  margin-top: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.case-detail-page__body {
  margin-top: 20px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.95;
}

.case-detail-page__body p + p {
  margin-top: 14px;
}

.case-detail-page__actions {
  display: flex;
  margin: 18px auto 0;
  max-width: 920px;
}

.news-page {
  background: #f4f6fb;
}

.news-page__intro {
  padding: 28px 0 0;
}

.news-page__heading {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
  margin-top: 16px;
}

.news-page__heading h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.news-page__heading p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
}

.news-page__meta {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(83, 104, 255, 0.18);
  border-radius: 14px;
  background: #fff;
  color: #5368ff;
  font-size: 14px;
  font-weight: 800;
}

.news-page__list {
  padding-bottom: 28px;
}

.news-page__grid {
  margin-top: 10px;
}

.news-page .archive-hero__actions .btn-primary,
.news-detail-page .archive-hero__actions .btn-primary {
  min-width: 160px;
  font-size: 18px;
}

.news-page .archive-hero__actions .detail-link,
.news-detail-page .archive-hero__actions .detail-link {
  border-color: rgba(255, 255, 255, 0.42);
}

.news-detail-page {
  background: #f4f6fb;
}

.news-detail-page__intro {
  /* padding: 28px 0 0; */
}

.news-detail-page__article {
  max-width: 100%;
  margin: 18px auto 0;
  padding: 28px;
  border: 1px solid rgba(83, 104, 255, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(21, 28, 50, 0.08);
  margin-bottom: 40px;
}

.news-detail-page__kicker {
  margin: 0 0 12px;
  color: #5368ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-detail-page__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
}

.news-detail-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.news-detail-page__cover {
  width: 100%;
  margin-top: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.news-detail-page__body {
  margin-top: 20px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.95;
}

.news-detail-page__body p + p {
  margin-top: 14px;
}

.news-detail-page__actions {
  display: flex;
  margin: 18px auto 0;
  max-width: 920px;
}

@media (max-width: 900px) {
  .archive-page {
    padding-top: 76px;
  }

  .archive-hero__inner,
  .detail-section__inner {
    grid-template-columns: 1fr;
  }

  .archive-hero__inner {
    width: 100%;
    min-height: 0;
    padding: 28px 24px;
    padding-top: 58px;
  }

  .archive-hero__media {
    min-height: 220px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-copy,
  .detail-story {
    padding: 20px;
  }

  .cases-page__heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-detail-page__article {
    padding: 20px;
  }

  .news-page__heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-detail-page__article {
    padding: 20px;
  }
}

.pagebox{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pagebox .pagination{
  display: flex;
  align-items: center;
}
.pagebox .pagination li{
  width: 40px;
  height: 47px;
  background: #F6F6FA;
  border-radius: 2px 2px 2px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.pagebox .pagination li a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444444;
}
.pagebox .pagination li:hover{
  background: #4B00FF;
}
.pagebox .pagination li:hover a{
  color: #FFFFFF;
}
.pagebox .pagination li:hover span{
  color: #FFFFFF;
}
.pagebox .pagination li.active{
  background: #4B00FF;
  color: #FFFFFF;
}
.pagebox .pagination li.active span{
  color: #FFFFFF;
}
.pagebox .pagination li span{
  color: #444444;
  font-size: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}




