:root {
  --dj-green: #21c56f;
  --dj-green-dark: #05a65d;
  --dj-ink: #0c0e15;
  --dj-text: #3a3e4d;
  --dj-muted: #686d7a;
  --dj-soft: #f5f7f6;
  --dj-line: #e8eeea;
  --dj-dark: #10141c;
  --dj-card: #ffffff;
  --dj-shadow: 0 22px 60px rgba(0, 13, 55, 0.08);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  margin: 0;
  color: var(--dj-text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

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

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

img:not([src]),
img[src=""],
img[src*="/placeholders/"],
img[src*="gray-placeholder.svg"],
img[src*="placeholder.svg"],
img[src^="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 9'"],
img.is-loading,
img.is-placeholder {
  opacity: 0;
}

figure:has(> img.is-loading),
figure:has(> img.is-placeholder),
figure:has(> img[src=""]),
figure:has(> img[src*="/placeholders/"]),
figure:has(> img[src*="placeholder.svg"]) {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

figure:has(> img.is-loading)::before,
figure:has(> img.is-loading)::after,
figure:has(> img.is-placeholder)::before,
figure:has(> img.is-placeholder)::after,
figure:has(> img[src=""])::before,
figure:has(> img[src=""])::after,
figure:has(> img[src*="/placeholders/"])::before,
figure:has(> img[src*="/placeholders/"])::after,
figure:has(> img[src*="placeholder.svg"])::before,
figure:has(> img[src*="placeholder.svg"])::after {
  display: none !important;
}

.dj-hero-slide:has(img.is-loading),
.dj-hero-slide:has(img.is-placeholder),
.dj-hero-slide:has(img[src=""]),
.dj-hero-slide:has(img[src*="/placeholders/"]),
.dj-hero-slide:has(img[src*="placeholder.svg"]),
.dj-platform__image:has(img.is-loading),
.dj-platform__image:has(img.is-placeholder),
.dj-platform__image:has(img[src=""]),
.dj-platform__image:has(img[src*="/placeholders/"]),
.dj-platform__image:has(img[src*="placeholder.svg"]),
.dj-about-intro__card figure:has(img.is-loading),
.dj-about-intro__card figure:has(img.is-placeholder),
.dj-about-intro__card figure:has(img[src=""]),
.dj-about-intro__card figure:has(img[src*="/placeholders/"]),
.dj-about-intro__card figure:has(img[src*="placeholder.svg"]),
.dj-map:has(img.is-loading),
.dj-map:has(img.is-placeholder),
.dj-map:has(img[src=""]),
.dj-map:has(img[src*="/placeholders/"]),
.dj-map:has(img[src*="placeholder.svg"]),
.dj-qr:has(img.is-loading),
.dj-qr:has(img.is-placeholder),
.dj-qr:has(img[src=""]),
.dj-qr:has(img[src*="/placeholders/"]),
.dj-qr:has(img[src*="placeholder.svg"]) {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

.dj-shell {
  width: min(1200px, calc(100vw - 80px));
  margin: 0 auto;
}

.dj-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  border-bottom: 1px solid rgba(232, 238, 234, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.dj-header__inner {
  width: min(1200px, calc(100vw - 80px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dj-logo {
  display: flex;
  align-items: center;
}

.dj-logo__image {
  width: 175px;
  height: 50px;
  object-fit: contain;
}

.dj-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #555c68;
  font-size: 15px;
}

.dj-nav a {
  position: relative;
  padding: 28px 0;
  transition: color 0.2s ease;
}

.dj-nav a.is-active,
.dj-nav a:hover {
  color: var(--dj-green-dark);
  font-weight: 700;
}

.dj-nav a.is-active::after,
.dj-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--dj-green);
  transform: translateX(-50%);
}

.dj-header__cta,
.dj-btn {
  display: inline-flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 23px;
  padding: 0 24px;
  border: 1px solid var(--dj-green);
  background: linear-gradient(124deg, #24c373 0%, #17c04f 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dj-header__cta:hover,
.dj-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.dj-header__cta:focus-visible,
.dj-btn:focus-visible,
.dj-hero-dot:focus-visible,
.dj-timeline-arrow:focus-visible {
  outline: 3px solid rgba(33, 197, 111, 0.32);
  outline-offset: 3px;
}

.dj-header__cta {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.dj-header__cta:empty,
.dj-btn:empty {
  visibility: hidden;
}

.dj-btn--ghost {
  background: #fff;
  color: var(--dj-green-dark);
  box-shadow: none;
}

.dj-btn--ghost:hover {
  background: #f4fbf7;
  box-shadow: none;
}

.dj-hero {
  position: relative;
  overflow: hidden;
  height: 586px;
  background: #dfe5eb;
}

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

.dj-hero-slider,
.dj-hero-slides,
.dj-hero-slide {
  position: absolute;
  inset: 0;
}

.dj-hero-slider {
  cursor: grab;
  touch-action: pan-y;
}

.dj-hero-slides {
  z-index: 1;
}

.dj-hero-slider.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.dj-hero-slider.is-dragging .dj-hero-slide {
  transition: none;
}

.dj-hero-slider.is-finalizing .dj-hero-slide {
  transition: none;
}

.dj-hero-slide {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.34s ease;
  will-change: opacity, transform;
}

.dj-hero-slide.is-active {
  opacity: 1;
}

.dj-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.dj-hero-slide.is-contain-image img {
  object-fit: contain;
}

.dj-hero-slide.is-placeholder img {
  filter: grayscale(1);
}

.dj-hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--dj-ink);
}

.dj-kicker {
  margin: 0 0 18px;
  color: var(--dj-green);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.dj-hero h1 {
  margin: 0;
  color: var(--dj-ink);
  max-width: 720px;
  font-size: 64px;
  line-height: 1.12;
  letter-spacing: 0;
}

.dj-hero p:not(.dj-kicker) {
  margin: 26px 0 0;
  max-width: 610px;
  color: rgba(12, 14, 21, 0.76);
  font-size: 16px;
  line-height: 1.9;
  text-align: justify;
}

.dj-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
}

.dj-hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dj-hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dj-hero-dot.is-active {
  background: var(--dj-green);
}

.dj-hero-dot:hover {
  width: 42px;
  background: rgba(33, 197, 111, 0.72);
}

.dj-section {
  padding: 56px 0;
}

.dj-section--tight {
  padding-top: 52px;
  padding-bottom: 42px;
}

.dj-section-title {
  margin: 0 auto 30px;
  text-align: center;
}

.dj-dot {
  display: none;
}

.dj-section-title h2,
.dj-platform h2,
.dj-download h2,
.dj-about-intro h2,
.dj-standard h2,
.dj-cities h2 {
  margin: 0;
  color: var(--dj-ink);
  font-size: 36px;
  line-height: 1.25;
}

.dj-section-title p,
.dj-platform p,
.dj-download p,
.dj-about-intro p,
.dj-standard p,
.dj-cities p {
  margin: 14px 0 0;
  color: var(--dj-muted);
  font-size: 16px;
  line-height: 1.85;
}

.dj-assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-inline: auto;
}

.dj-assurance__item {
  flex: 1 1 0;
  min-width: 0;
  min-height: 132px;
  padding: 22px 20px;
  border: 1px solid var(--dj-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 13, 55, 0.045);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dj-assurance__item:hover {
  border-color: rgba(33, 197, 111, 0.28);
  box-shadow: 0 18px 44px rgba(0, 13, 55, 0.08);
  transform: translateY(-4px);
}

.dj-assurance__icon,
.dj-project__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--dj-green-dark);
  font-weight: 800;
}

.dj-assurance__icon img,
.dj-project__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.dj-assurance__icon img.is-empty,
.dj-project__icon img.is-empty {
  width: 72px;
  height: 72px;
  opacity: 0.48;
  filter: grayscale(1);
}

.dj-assurance__item h3,
.dj-project h3 {
  margin: 16px 0 8px;
  color: var(--dj-ink);
  font-size: 19px;
}

.dj-assurance__item p,
.dj-project p {
  margin: 0;
  color: var(--dj-muted);
  font-size: 14px;
  line-height: 1.75;
}

.dj-advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
  margin-inline: auto;
}

.dj-advantage {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fbf9;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.dj-advantage:hover {
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 13, 55, 0.07);
  transform: translateY(-3px);
}

.dj-advantage span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dj-green);
  color: #fff;
  font-weight: 800;
}

.dj-advantage h3 {
  margin: 0 0 6px;
  color: var(--dj-ink);
  font-size: 17px;
}

.dj-advantage p {
  margin: 0;
  color: var(--dj-muted);
  font-size: 14px;
  line-height: 1.7;
}

.dj-section--projects {
  background:
    radial-gradient(circle at 8% 16%, rgba(33, 197, 111, 0.08), transparent 24%),
    linear-gradient(180deg, #f7faf8 0%, #fff 100%);
}

.dj-projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-inline: auto;
}

.dj-project {
  flex: 1 1 0;
  min-width: 0;
  min-height: 218px;
  padding: 24px 22px;
  border: 1px solid var(--dj-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--dj-shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dj-project:hover {
  border-color: rgba(33, 197, 111, 0.28);
  box-shadow: 0 28px 70px rgba(0, 13, 55, 0.11);
  transform: translateY(-5px);
}

.dj-assurance__item:hover .dj-assurance__icon img,
.dj-project:hover .dj-project__icon img {
  transform: scale(1.06);
}

.dj-project ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.dj-project li {
  position: relative;
  margin-top: 9px;
  padding-left: 16px;
  color: var(--dj-muted);
  font-size: 13px;
  line-height: 1.6;
}

.dj-project li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dj-green);
}

.dj-platform {
  overflow: hidden;
  background: #fff;
}

.dj-platform__grid {
  display: grid;
  grid-template-columns: 1fr 475px;
  align-items: center;
  gap: 80px;
}

.dj-platform__image {
  margin: 0;
  width: 475px;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f7f5;
  box-shadow: var(--dj-shadow);
}

.dj-platform__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dj-platform__image:hover img {
  transform: scale(1.045);
}

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

.dj-stat {
  padding: 18px;
  border-radius: 16px;
  background: #f5fbf7;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.dj-stat:hover {
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 13, 55, 0.07);
  transform: translateY(-3px);
}

.dj-stat strong {
  display: block;
  color: var(--dj-green-dark);
  font-size: 26px;
}

.dj-stat span {
  display: block;
  margin-top: 6px;
  color: var(--dj-muted);
  font-size: 13px;
}

.dj-download {
  padding: 38px 0 46px;
  background: var(--dj-dark);
  color: #fff;
}

.dj-download__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 46px;
}

.dj-download h2 {
  color: #fff;
}

.dj-download p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

.dj-qr {
  margin: 0;
  width: 116px;
  text-align: center;
}

.dj-qr img {
  width: 116px;
  height: 116px;
  border: 6px solid #fff;
  border-radius: 12px;
  background: #fff;
}

.dj-qr img.is-loading,
.dj-qr img.is-placeholder {
  border-color: transparent;
  background: transparent;
}

.dj-qr figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.dj-about-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #fff;
}

.dj-about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-about-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1200px, calc(100vw - 80px));
  transform: translate(-50%, -50%);
}

.dj-about-hero .dj-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #000;
}

.dj-about-hero h1 {
  margin: 0;
  color: #000;
  font-size: 54px;
  text-shadow: none !important;
}

.dj-about-intro {
  padding-top: 0;
  background: #f6faf8;
}

.dj-about-intro__card {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 68px;
  align-items: center;
  padding: 66px 60px;
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
  transform: translateY(-72px);
}

.dj-about-intro__card figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
}

.dj-about-intro__card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.dj-standard {
  padding-top: 20px;
}

.dj-standard__grid {
  display: grid;
  grid-template-columns: 370px 1fr;
  align-items: center;
  gap: 60px;
}

.dj-standard__text {
  padding: 36px 40px;
  border-radius: 22px;
  background: #f8fbf9;
  color: var(--dj-muted);
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.dj-standard__text p {
  margin: 0 0 16px;
}

.dj-timeline-carousel {
  position: relative;
  padding: 0 70px;
}

.dj-timeline-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  margin: -28px 0;
  padding: 28px 0;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 100%);
}

.dj-timeline-viewport.has-left-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 72px, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 72px, #000 100%);
}

.dj-timeline-viewport.has-right-mask {
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 72px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 72px), transparent 100%);
}

.dj-timeline-viewport.has-left-mask.has-right-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
}

.dj-timeline-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.dj-timeline {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  width: max-content;
  min-width: 0;
  padding: 0 1px;
}

.dj-time {
  flex: 0 0 316px;
  min-height: 178px;
  padding: 26px 22px;
  border: 1px solid var(--dj-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 13, 55, 0.075);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dj-time:hover {
  border-color: rgba(33, 197, 111, 0.28);
  box-shadow: 0 24px 56px rgba(0, 13, 55, 0.1);
  transform: translateY(-4px);
}

.dj-time strong {
  display: block;
  color: var(--dj-green-dark);
  font-size: 28px;
}

.dj-time h3 {
  margin: 14px 0 8px;
  color: var(--dj-ink);
  font-size: 18px;
}

.dj-time p {
  margin: 0;
  color: var(--dj-muted);
  font-size: 14px;
  line-height: 1.7;
}

.dj-timeline-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0 0 2px;
  border: 1px solid rgba(33, 197, 111, 0.32);
  border-radius: 50%;
  background: #fff;
  color: var(--dj-green-dark);
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 44px;
  box-shadow: 0 14px 34px rgba(0, 13, 55, 0.06);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.dj-timeline-arrow--prev {
  left: 0;
}

.dj-timeline-arrow--next {
  right: 0;
}

.dj-timeline-arrow:hover:not(:disabled) {
  border-color: var(--dj-green);
  background: #f2fbf6;
  transform: translateY(-50%) scale(1.04);
}

.dj-timeline-arrow:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.dj-timeline-carousel.is-static {
  padding: 0;
}

.dj-timeline-carousel.is-static .dj-timeline-arrow {
  display: none;
}

.dj-timeline-carousel.is-static .dj-timeline {
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.dj-cities {
  background: linear-gradient(180deg, #f7faf8 0%, #fff 100%);
}

.dj-cities__grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: center;
  gap: 80px;
}

.dj-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dj-city-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--dj-green-dark);
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(0, 13, 55, 0.06);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.dj-city-tags span:hover {
  background: #f4fbf7;
  box-shadow: 0 14px 32px rgba(0, 13, 55, 0.09);
  transform: translateY(-2px);
}

.dj-map {
  margin: 0;
}

.dj-map img {
  max-height: 420px;
  margin: 0 auto;
}

.dj-footer {
  padding: clamp(52px, 5.2083333333vw, 100px) clamp(24px, 5.2vw, 100px) 32px;
  background: #151b25;
  color: rgba(255, 255, 255, 0.72);
}

.dj-footer .dj-shell {
  width: auto;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  column-gap: 48px;
}

.dj-footer__top {
  display: grid;
  grid-template-columns: 0.78fr 1.18fr 180px;
  gap: 44px;
  grid-column: 1 / -1;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dj-footer__logo {
  width: 170px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.08);
}

.dj-footer p {
  margin: 0 0 8px;
  line-height: 1.8;
}

.dj-footer__contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.dj-footer__contact h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.dj-footer__contact p {
  margin: 4px 0;
  font-size: 14px;
}

.dj-footer__qr {
  justify-self: end;
  margin: 0;
  text-align: center;
}

.dj-footer__qr h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.dj-footer__qr img {
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 6px;
  background: #fff;
  object-fit: cover;
}

.dj-footer__qr figcaption {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.dj-footer__features {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1;
  gap: 12px;
  padding: 24px 0;
}

.dj-footer__features span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 14px;
}

.dj-footer__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-column: 2;
  gap: 24px;
  min-height: 40px;
  padding: 24px 0;
  font-size: 13px;
  text-align: right;
}

@media (min-width: 1600px) {
  .dj-shell,
  .dj-header__inner,
  .dj-about-hero__overlay {
    width: min(1400px, calc(100vw - 120px));
  }

  .dj-hero h1 {
    font-size: 70px;
  }

  .dj-platform__grid,
  .dj-cities__grid {
    gap: 110px;
  }
}

/* 2026-06-24 content-density and mobile refinement. */
.dj-project__icon {
  display: none;
}

.dj-project h3 {
  margin-top: 0;
}

.dj-assurance__icon,
.dj-assurance__icon img {
  width: 48px;
  height: 48px;
}

@media (max-width: 860px) {
  body {
    min-width: 0;
  }

  .dj-shell,
  .dj-header__inner,
  .dj-about-hero__overlay {
    width: calc(100vw - 32px);
  }

  .dj-header,
  .dj-header__inner {
    height: auto;
    min-height: 58px;
  }

  .dj-header__inner {
    padding: 10px 0;
    gap: 12px;
  }

  .dj-logo__image {
    width: 132px;
    height: 38px;
  }

  .dj-nav {
    gap: 16px;
    overflow-x: auto;
    font-size: 14px;
  }

  .dj-header__cta {
    display: none;
  }

  .dj-hero {
    height: auto;
    min-height: 430px;
  }

  .dj-hero__content {
    min-height: 430px;
    padding: 56px 0 70px;
  }

  .dj-hero h1 {
    max-width: 100%;
    font-size: 34px;
  }

  .dj-hero p:not(.dj-kicker) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
  }

  .dj-hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  .dj-btn {
    height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .dj-section {
    padding: 44px 0;
  }

  .dj-section-title h2,
  .dj-platform h2,
  .dj-download h2,
  .dj-about-intro h2,
  .dj-standard h2,
  .dj-cities h2 {
    font-size: 26px;
  }

  .dj-timeline-carousel {
    padding: 0 0 48px;
  }

  .dj-timeline-viewport {
    overflow-x: auto;
    margin: -18px 0;
    padding: 18px 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .dj-timeline-viewport.has-left-mask {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .dj-timeline-viewport.has-right-mask {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .dj-timeline-viewport.has-left-mask.has-right-mask {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .dj-time {
    flex-basis: calc(100vw - 34px);
    min-height: 168px;
    padding: 22px 20px;
    box-shadow: none;
  }

  .dj-time:hover {
    box-shadow: none;
    transform: none;
  }

  .dj-timeline-arrow {
    top: auto;
    bottom: 0;
    width: 38px;
    height: 38px;
    font-size: 24px;
    line-height: 38px;
    box-shadow: none;
    transform: none;
  }

  .dj-timeline-arrow--prev {
    left: calc(50% - 44px);
  }

  .dj-timeline-arrow--next {
    right: calc(50% - 44px);
  }

  .dj-timeline-arrow:hover:not(:disabled) {
    transform: scale(1.04);
  }

  .dj-assurance,
  .dj-advantages,
  .dj-projects,
  .dj-platform__grid,
  .dj-cities__grid,
  .dj-download__inner,
  .dj-about-intro__card,
  .dj-standard__grid,
  .dj-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dj-assurance__item,
  .dj-project,
  .dj-advantage {
    min-height: 0;
    padding: 18px;
    border-radius: 10px;
  }

  .dj-platform__image,
  .dj-map {
    width: 100%;
  }

  .dj-platform__image,
  .dj-platform__image img {
    height: 58vw;
    min-height: 220px;
  }

  .dj-stats,
  .dj-footer__contact,
  .dj-footer__features {
    grid-template-columns: 1fr;
  }

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

  .dj-footer__features,
  .dj-footer__bottom {
    grid-column: 1;
  }

  .dj-footer__bottom {
    justify-content: flex-start;
    min-height: 0;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .dj-footer__qr {
    justify-self: start;
  }
}
