:root {
  --brand: #1769c2;
  --brand-dark: #0f4f96;
  --brand-soft: #eef7ff;
  --hero-top: #5e7fa4;
  --hero-mid: #274773;
  --hero-bottom: #18395f;
  --hero-accent: rgba(92, 193, 255, 0.55);
  --ink: #172033;
  --text: #475467;
  --muted: #667085;
  --line: #d8e5f4;
  --panel: #ffffff;
  --panel-soft: #f7fbff;
  --shadow: 0 22px 58px -44px rgba(15, 79, 150, 0.44);
  --header-height: 76px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 105, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 194, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 92px 92px, 92px 92px, auto;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page > main {
  flex: 1 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-height);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  box-shadow: none;
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 24px 0 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 20px 45px -34px rgba(10, 38, 74, 0.34);
  backdrop-filter: blur(16px);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 72px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 164px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 64px;
  color: #1f2a44;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.nav-register {
  position: absolute;
  top: 31px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 36px;
  padding: 0 18px;
  color: var(--brand);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 22px -18px rgba(9, 22, 45, 0.72);
  z-index: 2;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-register:hover {
  background: #f5f9ff;
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 24px -18px rgba(9, 22, 45, 0.78);
}

.nav-register:active {
  transform: translateY(1px);
}

.site-nav a,
.site-nav .nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 8px;
  color: #0b1f3a;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, font-weight 180ms ease;
}

.nav-indicator {
  display: none;
}

.site-nav a::after,
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #087bff 0%, #2ea7ff 100%);
  transform: translateX(-50%);
  transition: width 250ms ease;
}

.site-nav a:hover,
.site-nav .nav-link:hover {
  color: #087bff;
}

.site-nav a:hover::after,
.site-nav .nav-link:hover::after {
  width: 32px;
}

.site-nav a.active,
.site-nav .nav-link.active {
  color: #087bff;
  font-weight: 700;
}

.site-nav a.active::after,
.site-nav .nav-link.active::after {
  width: 32px;
}

.floating-actions {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 999;
  width: 92px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 128, 255, 0.25);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(13, 59, 130, 0.22);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.floating-action {
  width: 100%;
  box-sizing: border-box;
  display: block;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-action:hover,
.floating-action.is-active {
  background: rgba(239, 246, 255, 0.78);
  transform: translateY(-2px);
}

.floating-action:active {
  transform: translateY(0);
}

.float-consult {
  padding: 10px 8px 8px;
}

.float-avatar {
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto 6px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(24, 105, 255, 0.18);
  object-fit: cover;
}

.float-consult-btn {
  width: 70px;
  height: 28px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: linear-gradient(180deg, #2f7bff 0%, #105dff 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(31, 103, 255, 0.26);
}

.float-divider {
  width: calc(100% - 18px);
  height: 1px;
  margin: 0 auto;
  background: rgba(25, 96, 180, 0.12);
}

.float-app {
  padding: 12px 8px 14px;
}

.float-app-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto 8px;
  border-radius: 13px;
  background: linear-gradient(145deg, #4a8bff 0%, #1768ff 55%, #0b4fe8 100%);
  box-shadow: 0 8px 18px rgba(23, 104, 255, 0.26);
}

.float-app-icon::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  width: 18px;
  height: 27px;
  box-sizing: border-box;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.float-app-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 17px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.float-app-text {
  color: #09245a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.floating-qr {
  position: fixed;
  top: 50%;
  right: 136px;
  z-index: 1200;
  width: 168px;
  min-height: 168px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(6, 18, 35, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 28px 68px -36px rgba(3, 13, 29, 0.75);
  backdrop-filter: blur(14px);
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-qr.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.floating-qr img {
  width: 136px;
  height: 136px;
  object-fit: cover;
  border-radius: 8px;
  background: #ffffff;
}

.screen {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 20px) 0 40px;
  scroll-snap-align: start;
}

.soft-screen {
  background: rgba(247, 251, 255, 0.84);
  border-block: 1px solid rgba(216, 229, 244, 0.72);
}

.hero-screen {
  position: relative;
  overflow: hidden;
  height: 68vh;
  min-height: 620px;
  max-height: 760px;
  color: #ffffff;
  background: #061b3a;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/home-hero-bg-new.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: calc(68vh - var(--header-height) - 28px);
  max-height: calc(760px - var(--header-height) - 28px);
}

.hero-copy {
  width: min(100%, 1080px);
  text-align: center;
}

.hero-copy h1 {
  white-space: nowrap;
  max-width: none;
  width: 100%;
}

.hero-copy .hero-lead {
  max-width: 1200px;
}

.hero-grid,
.split-grid,
.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.hero-copy,
.section-copy,
.report-copy {
  min-width: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin: 0 auto 28px;
  font-size: clamp(48px, 4vw, 62px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 20px rgba(3, 16, 35, 0.42);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.36;
}

p {
  color: var(--text);
  font-size: 16px;
}

.hero-screen .hero-lead {
  max-width: 1080px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  font-weight: 500;
  text-shadow: 0 4px 14px rgba(3, 16, 35, 0.3);
}

.hero-screen .hero-lead span {
  display: block;
  text-align: center;
}

.hero-screen .hero-lead-cn {
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.25;
  font-weight: 800;
}

.hero-screen .hero-lead-en {
  margin-top: 12px;
  font-size: clamp(14px, 1vw, 20px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.center-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: #3f4d63;
  font-size: 19px;
}

.primary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.primary-button:active {
  transform: translateY(1px);
}

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

.stats-grid div,
.belief-grid div,
.news-card,
.advantage-grid article,
.ticker-block,
.tag-grid span,
.case-card,
.phone-shot {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.stats-grid strong {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.stats-grid span,
.belief-grid span,
.case-metrics span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.image-wrap {
  min-width: 0;
}

.image-wrap img,
.news-card img,
.case-card > img {
  width: min(80%, 760px);
  height: auto;
  margin: 0 auto;
}

.hero-visual img {
  width: min(80%, 700px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: min(1050px, 100%);
  margin: 76px auto 0;
}

.hero-stat {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding: 22px 20px 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(82, 144, 225, 0.55) 0%, rgba(22, 92, 190, 0.58) 100%);
  border: 1px solid rgba(190, 220, 255, 0.48);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 40px rgba(0, 38, 110, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04) 46%, rgba(90, 154, 255, 0.08));
}

.hero-stat > * {
  position: relative;
  z-index: 1;
}

.hero-stat strong {
  display: block;
  color: #f7fbff;
  font-size: clamp(46px, 3.5vw, 60px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 6px 18px rgba(0, 40, 120, 0.35);
}

.hero-stat span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.section-copy p {
  max-width: 760px;
}

.company-screen {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(23, 105, 194, 0.045), transparent 28%),
    linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(246, 250, 255, 0.96));
}

.company-screen .container {
  width: min(1080px, calc(100% - 48px));
}

.company-profile {
  display: grid;
  gap: 40px;
}

.company-top {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(32px, 4.5vw, 56px);
}

.company-copy {
  min-width: 0;
  max-width: 470px;
}

.company-copy .section-kicker {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
}

.company-copy h2 {
  position: relative;
  margin-bottom: 38px;
  padding-bottom: 14px;
  color: var(--ink);
  font-size: clamp(34px, 3.15vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.company-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.company-copy p {
  margin-bottom: 24px;
  color: #4b5568;
  font-size: 15px;
  line-height: 1.85;
}

.company-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-top: 4px;
}

.company-visual img {
  width: min(100%, 578px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

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

.company-belief-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 20px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(239, 248, 255, 0.92) 100%);
  border: 1px solid rgba(232, 240, 249, 0.86);
  border-radius: 6px;
  box-shadow: 0 18px 46px -38px rgba(16, 48, 84, 0.26);
}

.company-belief-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 138px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% 138px;
  opacity: 1;
  pointer-events: none;
}

.company-belief-card--believe::before {
  background-image: url("images/company-believe.svg");
}

.company-belief-card--insist::before {
  background-image: url("images/company-insist.svg");
}

.company-belief-card--practice::before {
  background-image: url("images/company-practice.svg");
}

.company-belief-card > * {
  position: relative;
  z-index: 1;
}

.company-belief-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.company-belief-card strong {
  display: block;
  color: #657184;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.company-screen--about {
  padding-top: calc(var(--header-height) + 20px);
}

.belief-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.belief-grid div {
  padding: 18px 20px;
}

.belief-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.screen-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.screen-head h2 {
  margin-bottom: 0;
}

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

.news-card {
  overflow: hidden;
}

.news-card img {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.news-card h3,
.news-card p {
  padding-right: 22px;
  padding-left: 22px;
}

.news-card h3 {
  margin-top: 22px;
}

.news-card p {
  margin-bottom: 24px;
}

.news-feature-screen {
  background: #ffffff;
}

.about-page #about-news.screen {
  min-height: auto;
  align-items: flex-start;
  padding-top: 96px;
}

.news-feature {
  width: min(1180px, calc(100% - 48px));
}

.news-feature-head {
  margin-bottom: 42px;
}

.news-feature-head h2 {
  color: #2e333b;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.news-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 1fr);
  align-items: start;
  gap: 56px;
}

.news-feature-carousel {
  min-width: 0;
}

.news-carousel-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 330px;
  background: #f3f8ff;
  border-radius: 8px;
}

.news-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}

.news-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

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

.news-carousel-foot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #0b1f3a;
  font-size: 16px;
  line-height: 1.5;
}

.news-carousel-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.news-carousel-dots {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.news-carousel-dots button {
  width: 8px;
  height: 8px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
}

.news-carousel-dots button.is-active {
  background: #087bff;
}

.news-feature-list {
  min-width: 0;
  display: grid;
  gap: 29px;
  padding-top: 0;
}

.news-feature-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.news-feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #2092df;
  background: #e8f2fb;
  border-radius: 4px;
}

.news-feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-feature-copy h3 {
  margin: 0 0 6px;
  color: #151922;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.news-feature-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #999999;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-feature-more {
  justify-self: end;
  margin-top: 6px;
  color: var(--brand);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

#home-news.screen,
#home-advantages.screen {
  min-height: auto;
  height: auto;
  align-items: flex-start;
  margin: 0;
}

#home-news.screen {
  padding-bottom: 48px;
}

#home-advantages.screen {
  padding-top: 48px;
}

.advantage-grid {
  display: grid;
  gap: 18px;
}

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

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

.advantage-grid article {
  padding: 24px;
}

#home-advantages .advantage-grid article {
  text-align: center;
}

.advantage-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

#home-advantages .advantage-grid img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

#home-advantages .advantage-grid h3,
#home-advantages .advantage-grid p {
  text-align: center;
}

#home-advantages .advantage-grid p strong {
  color: inherit;
}

.advantage-grid p {
  margin-bottom: 0;
}

.advantage-grid strong {
  color: var(--brand-dark);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 46px 0 18px;
  color: rgba(234, 241, 252, 0.88);
  background: linear-gradient(180deg, #0a1320 0%, #0d1725 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(23, 105, 194, 0.18), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(92, 193, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.08fr) minmax(280px, 1.2fr) minmax(160px, 0.72fr) minmax(230px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.site-footer__brand img {
  width: min(198px, 100%);
  height: auto;
  object-fit: contain;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__title {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__title-line {
  width: 34px;
  height: 3px;
  margin: 12px 0 18px;
  background: var(--brand);
  border-radius: 999px;
}

.site-footer__text,
.site-footer__column p {
  margin: 0 0 12px;
  color: rgba(223, 232, 242, 0.82);
  font-size: 14px;
  line-height: 1.85;
}

.site-footer__column p:last-child {
  margin-bottom: 0;
  white-space: nowrap;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  color: rgba(223, 232, 242, 0.82);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  transition: color 180ms ease;
}

.site-footer__link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__qr-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 28px;
}

.site-footer__qr-item {
  width: 100px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.site-footer__qr-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  background: #ffffff;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.site-footer__qr-item p {
  margin: 0;
  color: rgba(238, 244, 252, 0.86);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.site-footer__bottom {
  margin-top: 52px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(223, 232, 242, 0.72);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.site-footer__copy {
  display: block;
}

.site-footer__copy a {
  color: inherit;
  text-decoration: none;
}

.site-footer__copy a:hover {
  color: inherit;
  text-decoration: none;
}

.center-screen {
  display: grid;
  align-content: center;
  gap: 42px;
}

.center-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.center-copy p {
  margin-right: auto;
  margin-left: auto;
}

.ticker-block {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 22px;
  overflow: hidden;
}

.ticker-block h3 {
  margin-bottom: 14px;
  color: var(--brand-dark);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  flex: 0 0 auto;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
  animation: tickerMove 26s linear infinite;
}

.ticker-content span {
  color: var(--text);
  font-weight: 700;
}

.cooperation-hero .ticker-content {
  animation-duration: 34s;
}

@keyframes tickerMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.report-grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
}

.tab-list {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tab-button {
  min-height: 40px;
  padding: 0 18px;
  color: var(--brand-dark);
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tab-button.is-active {
  color: #ffffff;
  background: var(--brand);
}

.tab-button:active {
  transform: scale(0.98);
}

.tab-panel {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.tab-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.check-list {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 6px 0;
  color: var(--text);
  font-weight: 700;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.tag-grid span {
  padding: 13px 15px;
  color: var(--brand-dark);
  font-weight: 800;
}

.report-preview {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.phone-shot {
  position: relative;
  width: min(80%, 360px);
  padding: 14px;
  overflow: hidden;
}

.phone-shot img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
}

.shot-caption {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 2;
  max-width: calc(100% - 56px);
  padding: 8px 14px;
  color: #ffffff;
  background: rgba(15, 79, 150, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

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

.case-card {
  padding: 20px;
}

.case-card > img {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.case-metrics div {
  padding: 14px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-metrics strong {
  display: block;
  color: var(--brand-dark);
  font-size: 23px;
  line-height: 1.12;
}

.case-card p {
  margin-bottom: 0;
}

@media (max-width: 1060px) {
  .hero-grid,
  .split-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__qr-group {
    justify-content: flex-start;
  }

  .company-top,
  .company-beliefs {
    grid-template-columns: 1fr;
  }

  .company-profile {
    gap: 32px;
  }

  .company-beliefs {
    gap: 18px;
  }

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

  .six-grid,
  .news-grid,
  .news-feature-layout,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-wrap img {
    width: min(80%, 640px);
  }

  .hero-copy {
    text-align: center;
  }

  .company-copy {
    max-width: none;
  }

  .company-visual {
    justify-content: flex-start;
  }

  .company-visual img {
    width: min(80%, 620px);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 96px;
  }

  html {
    scroll-snap-type: none;
  }

  .container,
  .header-inner {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    height: auto;
    min-height: 62px;
    padding: 10px 16px 12px;
  }

  .header-main {
    width: 100%;
    gap: 18px;
  }

  .brand img {
    width: 132px;
    height: 36px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 16px;
    font-size: 14px;
  }

  .nav-register {
    top: 12px;
    right: 14px;
    height: 32px;
    min-width: 66px;
    padding: 0 14px;
    font-size: 14px;
  }

  .nav-indicator {
    display: none;
  }

  .floating-actions {
    display: none;
  }

  .floating-qr {
    right: 12px;
    width: 146px;
    min-height: 146px;
    padding: 12px;
  }

  .floating-qr img {
    width: 122px;
    height: 122px;
  }

  .screen {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 0 52px;
  }

  .hero-inner {
    min-height: calc(100dvh - var(--header-height) - 40px);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead,
  .center-copy p {
    font-size: 17px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 320px);
    margin-top: 30px;
  }

  .stats-grid,
  .news-grid,
  .news-feature-layout,
  .eight-grid,
  .six-grid,
  .case-grid,
  .tag-grid,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .tab-list {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .ticker-block {
    padding: 18px;
  }

  .ticker-content {
    gap: 18px;
    padding-right: 18px;
  }

  .image-wrap img {
    width: min(80%, 520px);
  }

  .company-screen .container {
    width: min(100% - 28px, 1180px);
  }

  .company-top {
    gap: 22px;
  }

  .company-copy h2 {
    margin-bottom: 22px;
    padding-bottom: 14px;
  }

  .company-belief-card {
    min-height: 210px;
    padding: 20px 18px 18px;
  }

  .company-belief-card span {
    font-size: 17px;
  }

  .phone-shot {
    width: min(80%, 520px);
  }

  .news-card img,
  .case-card > img {
    width: 100%;
  }

  .news-feature {
    width: min(100% - 28px, 1080px);
  }

  .news-feature-layout {
    gap: 24px;
  }

  .news-carousel-stage {
    height: 286px;
  }

  .news-feature-list {
    gap: 22px;
  }

  .news-feature-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .news-feature-icon {
    width: 40px;
    height: 40px;
  }

  .news-feature-more {
    justify-self: start;
  }

  #home-company.screen {
    min-height: auto;
    padding-bottom: 24px;
  }

  #home-news.screen {
    min-height: auto;
    padding-top: 72px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 46px 0 20px;
  }

  .site-footer__inner {
    width: min(100% - 28px, 1180px);
  }

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

  .site-footer__brand {
    justify-content: flex-start;
    padding-top: 0;
  }

  .site-footer__brand img {
    width: min(196px, 76%);
  }

  .site-footer__qr-group {
    justify-content: flex-start;
    gap: 18px;
  }

  .site-footer__bottom {
    margin-top: 26px;
    padding-top: 18px;
  }
}

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

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