/* ============================================================
   Vers Homepage — dgvers.com brand #ed1b24
   ============================================================ */

:root {
  --vers-brand: #ed1b24;
  --vers-brand-dark: #c4151c;
  --vers-brand-light: rgba(237, 27, 36, 0.08);
  --vers-gold: #c9a962;
  --vers-text: #19352d;
  --vers-muted: rgba(0, 0, 0, 0.55);
  --vers-radius: 16px;
  --vers-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --vers-shadow-hover: 0 16px 48px rgba(237, 27, 36, 0.12);
  --vers-hero-height: min(88vh, 820px);
  --vers-mobile-gutter: 20px;
}

/* ============================================================
   Hero Carousel — Premium 门窗
   ============================================================ */
.vers-hero-carousel {
  margin-top: 0;
  min-height: var(--vers-hero-height);
  overflow: hidden;
  background: #0e1014;
}

.vers-hero-slider,
.vers-hero-slider .slick-list,
.vers-hero-slider .slick-track,
.vers-hero-slider .item {
  height: var(--vers-hero-height);
  min-height: 520px;
}

.vers-hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.vers-hero-slide--alt {
  background-position: center 30%;
}

.vers-hero-slide--focus {
  background-position: 70% center;
  transform: scale(1.02);
}

.vers-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.45) 48%, rgba(8, 10, 14, 0.25) 100%),
    linear-gradient(0deg, rgba(8, 10, 14, 0.55) 0%, transparent 42%);
  pointer-events: none;
}

.vers-hero-overlay--warm {
  background:
    linear-gradient(115deg, rgba(18, 12, 10, 0.78) 0%, rgba(30, 18, 14, 0.42) 50%, rgba(8, 10, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 10, 14, 0.5) 0%, transparent 40%);
}

.vers-hero-overlay--deep {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(237, 27, 36, 0.12) 0%, transparent 55%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.5) 55%, rgba(8, 10, 14, 0.35) 100%);
}

.vers-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--vers-hero-height);
  padding: 140px 0 160px;
  max-width: 720px;
}

.vers-hero-content--center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.vers-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vers-gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.vers-hero-title {
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.15;
}

.vers-hero-title-main {
  display: block;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.vers-hero-title-sub {
  display: block;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
}

.vers-hero-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  line-height: 1.6;
}

.vers-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vers-btn-primary,
.vers-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vers-btn-primary {
  background: var(--vers-brand);
  color: #fff;
  border: 2px solid var(--vers-brand);
  box-shadow: 0 8px 24px rgba(237, 27, 36, 0.35);
}

.vers-btn-primary:hover {
  background: var(--vers-brand-dark);
  border-color: var(--vers-brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(237, 27, 36, 0.45);
}

.vers-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.vers-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Controls */
.vers-hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
}

.vers-hero-arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.vers-hero-arrow:hover {
  background: var(--vers-brand);
  border-color: var(--vers-brand);
  transform: scale(1.05);
}

.vers-hero-dots {
  pointer-events: auto;
  display: flex;
  align-items: center;
  min-height: 20px;
}

.vers-hero-dots .slick-dots {
  position: static;
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vers-hero-dots .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.vers-hero-dots .slick-dots li button {
  width: 36px;
  height: 3px;
  padding: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 0;
  border: none;
  transition: all 0.35s ease;
}

.vers-hero-dots .slick-dots li button::before {
  display: none;
}

.vers-hero-dots .slick-dots li.slick-active button {
  width: 56px;
  background: linear-gradient(90deg, var(--vers-brand), var(--vers-gold));
}

/* Stats glass bar */
.vers-hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

.vers-hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding: 22px 32px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.vers-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.vers-hero-stat strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--vers-gold);
}

.vers-hero-stat strong span {
  font-size: 16px;
  margin-left: 2px;
}

.vers-hero-stat em {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.vers-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

.vers-hero-stats-text {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-align: center;
}

.vers-hero-stats-text strong {
  color: var(--vers-brand);
  font-weight: 700;
  font-size: 18px;
  margin: 0 4px;
}

/* Slick fade fix */
.vers-hero-slider .slick-slide {
  outline: none;
}

.vers-hero-slider .slick-slide > div {
  height: 100%;
}

/* ---- Shared section headings ---- */
.vers-section-head {
  margin-bottom: 28px;
}

.vers-section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vers-gold);
  margin-bottom: 14px;
}

.vers-section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--vers-text);
  line-height: 1.15;
  margin: 0;
}

.vers-section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--vers-brand), var(--vers-gold));
  border-radius: 2px;
  margin-top: 14px;
}

/* ---- About section ---- */
.vers-about-section {
  overflow: hidden;
}

.vers-about-media {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.vers-about-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.vers-about-media-main {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border-radius: 20px;
  background: url(../image/index_about_img.png) no-repeat center;
  background-size: cover;
  box-shadow: 0 24px 64px rgba(25, 53, 45, 0.14);
}

.vers-about-media-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 169, 98, 0.35);
  pointer-events: none;
}

.vers-about-float {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.vers-about-float--top {
  right: -6%;
  top: 10%;
  width: 38%;
}

.vers-about-float--bottom {
  left: -8%;
  bottom: -6%;
  width: 58%;
}

.vers-about-media:hover .vers-about-float--top {
  transform: translateY(-6px);
}

.vers-about-media:hover .vers-about-float--bottom {
  transform: translateY(4px);
}

.vers-about-seal {
  position: absolute;
  right: -12px;
  bottom: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--vers-brand) 0%, var(--vers-brand-dark) 100%);
  border: 3px solid var(--vers-gold);
  box-shadow: 0 12px 32px rgba(237, 27, 36, 0.35);
  color: #fff;
  text-align: center;
}

.vers-about-seal-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.vers-about-seal-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 2px;
  opacity: 0.92;
}

.vers-about-text {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.85;
  color: var(--vers-muted);
  margin: 28px 0 32px;
}

.vers-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--vers-brand);
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(237, 27, 36, 0.28);
  transition: all 0.3s ease;
}

.vers-about-cta i {
  transition: transform 0.3s ease;
}

.vers-about-cta:hover {
  background: var(--vers-brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(237, 27, 36, 0.38);
}

.vers-about-cta:hover i {
  transform: translateX(4px);
}

.vers-about-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(237, 27, 36, 0.04) 0%, rgba(201, 169, 98, 0.08) 100%);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 14px;
}

.vers-about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vers-about-stat strong {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  color: var(--vers-brand);
}

.vers-about-stat strong small {
  font-size: 0.55em;
  margin-left: 2px;
}

.vers-about-stat em {
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.06em;
  color: var(--vers-muted);
}

.vers-about-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(201, 169, 98, 0.45);
}

/* ---- Services section ---- */
.vers-services-section {
  z-index: 1;
}

.vers-services-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(270deg, rgba(201, 169, 98, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.vers-services-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.vers-services-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.vers-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.vers-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vers-brand), var(--vers-gold));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.vers-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 27, 36, 0.15);
  box-shadow: 0 20px 48px rgba(237, 27, 36, 0.1);
}

.vers-service-card:hover::before {
  opacity: 1;
}

.vers-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.18) 0%, rgba(201, 169, 98, 0.06) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  transition: background 0.35s ease, transform 0.35s ease;
}

.vers-service-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.vers-service-card:hover .vers-service-icon {
  background: linear-gradient(145deg, var(--vers-brand) 0%, var(--vers-brand-dark) 100%);
  transform: scale(1.05);
}

.vers-service-card:hover .vers-service-icon img {
  filter: brightness(0) invert(1);
}

.vers-service-title {
  margin: 28px 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--vers-text);
  line-height: 1.3;
  transition: color 0.25s ease;
}

.vers-service-card:hover .vers-service-title {
  color: var(--vers-brand);
}

.vers-service-desc {
  flex: 1;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--vers-muted);
}

.vers-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vers-brand);
  transition: gap 0.25s ease;
}

.vers-service-card:hover .vers-service-link {
  gap: 10px;
}

.vers-service-card-hit {
  z-index: 2;
}

.vers-services-footer {
  margin-top: 56px;
  text-align: center;
}

.vers-services-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--vers-text);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vers-services-all:hover {
  background: var(--vers-brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(237, 27, 36, 0.3);
}

.vers-services-all i {
  transition: transform 0.3s ease;
}

.vers-services-all:hover i {
  transform: translateX(4px);
}

/* ---- General homepage polish ---- */
.title-one h2 {
  position: relative;
  display: inline-block;
}

.title-one h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--vers-brand);
  border-radius: 2px;
  margin-top: 12px;
}

/* ---- News section: 新闻洞察 ---- */
.vers-news-section {
  position: relative;
  z-index: 1;
}

.vers-news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}

.vers-news-header .vers-section-title::after {
  margin-top: 12px;
}

.vers-news-subtitle {
  font-size: 16px;
  color: var(--vers-muted);
  margin: 0;
  max-width: 420px;
  line-height: 1.65;
  padding-top: 8px;
}

.vers-news-grid {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.vers-news-card {
  height: 100%;
  border-radius: var(--vers-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--vers-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.vers-news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 27, 36, 0.12);
  box-shadow: var(--vers-shadow-hover);
}

.vers-news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.vers-news-card-img {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.vers-news-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  transition: opacity 0.35s ease;
}

.vers-news-card:hover .vers-news-card-img::after {
  opacity: 0.85;
}

.vers-news-date {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
  padding: 10px 12px;
  background: rgba(237, 27, 36, 0.95);
  color: #fff;
  border-radius: 10px;
  line-height: 1.1;
  border: 1px solid rgba(201, 169, 98, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.vers-news-date-day {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.vers-news-date-ym {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.vers-news-card-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vers-news-card-body h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--vers-text);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.vers-news-card:hover .vers-news-card-body h4 {
  color: var(--vers-brand);
}

.vers-news-card-intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--vers-muted);
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vers-news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vers-brand);
  transition: gap 0.25s ease;
}

.vers-news-card:hover .vers-news-readmore {
  gap: 10px;
}

.vers-news-section .section-btn {
  position: static;
  margin-top: 48px;
}

.btn-seven .icon {
  background: var(--vers-brand) !important;
}

/* ---- Footer — bright premium multi-column ---- */
@keyframes vers-footer-glass-slide {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 140px 0, -100px 0;
  }
}

@keyframes vers-footer-frame-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-48px, -24px, 0);
  }
}

@keyframes vers-footer-rays-pulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 0.85;
  }
}

.vers-footer {
  position: relative;
  background: linear-gradient(180deg, #faf8f5 0%, #f3efe8 100%);
  overflow: hidden;
  padding: 0;
}

.vers-footer::before {
  display: none;
}

.vers-footer-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 56px,
      rgba(201, 169, 98, 0.07) 56px,
      rgba(201, 169, 98, 0.07) 58px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 72px,
      rgba(25, 53, 45, 0.035) 72px,
      rgba(25, 53, 45, 0.035) 74px
    );
  background-size: 200% 100%, 100% 200%;
  animation: vers-footer-glass-slide 50s linear infinite;
  pointer-events: none;
}

.vers-footer-frames {
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(25, 53, 45, 0.04) 2px, transparent 2px),
    linear-gradient(90deg, rgba(25, 53, 45, 0.04) 2px, transparent 2px);
  background-size: 32px 32px, 32px 32px, 128px 160px, 128px 160px;
  opacity: 0.45;
  animation: vers-footer-frame-drift 70s ease-in-out infinite alternate;
  pointer-events: none;
}

.vers-footer-rays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(201, 169, 98, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 55% 35% at 88% 8%, rgba(237, 27, 36, 0.06) 0%, transparent 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, transparent 42%);
  animation: vers-footer-rays-pulse 9s ease-in-out infinite;
  pointer-events: none;
}

.vers-footer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 244, 238, 0.88) 55%, rgba(243, 239, 232, 0.95) 100%),
    radial-gradient(ellipse at 80% 100%, rgba(237, 27, 36, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.vers-footer-top {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}

.vers-footer-brand-block {
  max-width: 340px;
}

.vers-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.vers-footer-logo img {
  height: 48px;
  width: auto;
  opacity: 0.96;
}

.vers-footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vers-muted);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

.vers-footer-hotline {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(25, 53, 45, 0.06);
}

.vers-footer-hotline > i {
  font-size: 18px;
  color: var(--vers-gold);
  margin-top: 4px;
}

.vers-footer-hotline-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(25, 53, 45, 0.5);
  margin-bottom: 4px;
}

.vers-footer-hotline a {
  font-size: 22px;
  font-weight: 700;
  color: var(--vers-text);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.vers-footer-hotline a:hover {
  color: var(--vers-brand);
}

.vers-footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--vers-text);
  letter-spacing: 0.08em;
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--vers-brand);
  display: inline-block;
}

.vers-footer-links,
.vers-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vers-footer-links li + li,
.vers-footer-contact li + li {
  margin-top: 12px;
}

.vers-footer-links a {
  font-size: 14px;
  color: rgba(25, 53, 45, 0.68);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.vers-footer-links a:hover {
  color: var(--vers-brand);
  padding-left: 4px;
}

.vers-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(25, 53, 45, 0.62);
}

.vers-footer-contact i {
  color: var(--vers-gold);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.vers-footer-contact a {
  color: rgba(25, 53, 45, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vers-footer-contact a:hover {
  color: var(--vers-brand);
}

.vers-footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(201, 169, 98, 0.28);
}

.vers-footer-legal {
  text-align: center;
}

.vers-footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(25, 53, 45, 0.55);
}

.vers-footer-copy {
  margin: 0;
  font-size: inherit;
  color: inherit;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.vers-footer-legal-sep {
  color: rgba(201, 169, 98, 0.65);
  user-select: none;
  flex-shrink: 0;
}

.vers-footer-meta-item {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.vers-footer-meta-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(25, 53, 45, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vers-footer-meta-item a:hover {
  color: var(--vers-brand);
}

.vers-footer-meta-item img {
  display: inline-block;
  width: auto;
  max-width: none;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Scroll progress + legacy back-to-top ---- */
.scroll-top {
  display: none !important;
}

.vers-float-contact {
  display: none !important;
}

.vers-scroll-progress {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9900;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 20px rgba(25, 53, 45, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.vers-scroll-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vers-scroll-progress:hover,
.vers-scroll-progress:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(25, 53, 45, 0.18);
  outline: none;
}

.vers-scroll-progress-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vers-scroll-progress-track {
  stroke: rgba(25, 53, 45, 0.12);
  stroke-width: 3;
}

.vers-scroll-progress-bar {
  stroke: var(--vers-brand, #ed1b24);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.12s linear;
}

.vers-scroll-progress-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--vers-brand, #ed1b24);
  font-size: 24px;
  line-height: 1;
}

body.vers-nav-open .vers-scroll-progress {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .vers-scroll-progress,
  .vers-scroll-progress-bar {
    transition: none !important;
  }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  :root {
    --vers-hero-height: min(78vh, 680px);
    --vers-mobile-gutter: 18px;
  }

  .main-page-wrapper .container {
    padding-left: max(var(--vers-mobile-gutter), env(safe-area-inset-left, 0px)) !important;
    padding-right: max(var(--vers-mobile-gutter), env(safe-area-inset-right, 0px)) !important;
  }

  .vers-hero-content {
    padding: 120px 0 180px;
    max-width: 100%;
  }

  .vers-hero-stats .container {
    padding-left: max(16px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(16px, env(safe-area-inset-right, 0px)) !important;
  }

  .vers-hero-stats-inner {
    padding: 16px 18px;
    margin-bottom: 16px;
    gap: 12px 16px;
  }

  .vers-hero-controls {
    bottom: 130px;
  }

  .vers-hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .vers-hero-stats-inner {
    padding: 16px 20px;
    margin-bottom: 16px;
    gap: 12px 16px;
  }

  .vers-hero-stat-divider:not(.d-none) {
    display: none !important;
  }

  .vers-hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .vers-btn-primary,
  .vers-btn-outline {
    width: 100%;
    max-width: 100%;
  }

  .vers-news-card-img {
    height: 200px;
  }

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

  .vers-about-float--top {
    right: -2%;
    width: 34%;
  }

  .vers-about-float--bottom {
    left: -4%;
    width: 52%;
  }

  .vers-about-seal {
    width: 76px;
    height: 76px;
    right: 8px;
    bottom: 32px;
  }

  .vers-about-seal-num {
    font-size: 24px;
  }

  .vers-about-stats {
    margin-top: 36px;
    padding: 22px 24px;
  }

  .vers-about-stat-divider {
    display: none;
  }

  .vers-services-head {
    margin-bottom: 36px;
  }

  .vers-footer-top {
    padding: 56px 0 36px;
  }
}

@media (max-width: 767px) {
  :root {
    --vers-hero-height: min(72vh, 600px);
    --vers-mobile-gutter: 20px;
  }

  .vers-hero-carousel {
    overflow: hidden;
  }

  .vers-hero-slide--focus {
    transform: none;
  }

  .vers-hero-slider,
  .vers-hero-slider .slick-list,
  .vers-hero-slider .slick-track,
  .vers-hero-slider .item {
    min-height: 480px;
  }

  .vers-hero-content {
    padding: 96px 0 188px;
    align-items: flex-start;
    text-align: left;
  }

  .vers-hero-content--center {
    align-items: flex-start;
    text-align: left;
  }

  .vers-hero-tag {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    margin-bottom: 14px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.5;
  }

  .vers-hero-title-main {
    font-size: clamp(30px, 8.8vw, 40px);
    letter-spacing: 0.03em;
    line-height: 1.2;
  }

  .vers-hero-title-sub {
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: 0.05em;
    line-height: 1.35;
  }

  .vers-hero-sub {
    font-size: 14px;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
  }

  .vers-hero-cta {
    gap: 10px;
  }

  .vers-btn-primary,
  .vers-btn-outline {
    padding: 13px 20px;
    font-size: 14px;
  }

  .vers-hero-stats .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(20px, env(safe-area-inset-right, 0px)) !important;
  }

  .vers-hero-stats-inner {
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    justify-content: flex-start;
    text-align: left;
  }

  .vers-hero-stat {
    align-items: flex-start;
    text-align: left;
  }

  .vers-hero-stat strong {
    font-size: 24px;
  }

  .vers-hero-stats-text {
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
  }

  .vers-hero-controls {
    bottom: 150px;
    gap: 12px;
    padding: 0 20px;
  }

  .vers-hero-arrow.vers-hero-prev,
  .vers-hero-arrow.vers-hero-next {
    display: none;
  }

  .vers-about-section .container,
  .vers-services-section .container,
  .vers-news-section .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(20px, env(safe-area-inset-right, 0px)) !important;
  }

  .vers-news-card-img {
    height: 180px;
  }

  .vers-news-card-body {
    padding: 18px 18px 22px;
  }

  .vers-news-card-body h4 {
    font-size: 17px;
  }

  .vers-about-media {
    margin-top: 24px;
  }

  .vers-about-media-main {
    max-height: 420px;
  }

  .vers-about-text {
    margin: 20px 0 24px;
  }

  .vers-about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .vers-service-card {
    padding: 28px 22px 26px;
  }

  .vers-service-title {
    font-size: 20px;
    margin-top: 22px;
  }

  .vers-footer-top {
    padding: 48px 0 32px;
  }

  .vers-footer-brand-block {
    max-width: 100%;
    margin-bottom: 8px;
  }

  .vers-footer-hotline a {
    font-size: 20px;
  }

  .vers-footer-legal-row {
    gap: 8px 6px;
    font-size: 12px;
  }

  .vers-footer-legal-sep {
    display: none;
  }

  .vers-footer-copy,
  .vers-footer-meta-item {
    white-space: normal;
  }

  .vers-footer-meta-item {
    display: block;
    width: 100%;
  }

  .vers-footer-meta-item a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .vers-scroll-progress {
    width: 44px;
    height: 44px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }

  .vers-scroll-progress-icon {
    font-size: 22px;
  }

  .vers-footer-bottom {
    padding: 20px 0 28px;
  }
}

/* ============================================================
   Vers Preloader — square logo entry animation
   ============================================================ */
.vers-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #faf8f4 0%, #f3efe8 55%, #ede8df 100%);
}

.vers-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.vers-preloader-logo-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vers-preloader-logo {
  position: relative;
  z-index: 2;
  animation: vers-preloader-logo-in 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.vers-preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.vers-preloader-ring--outer {
  inset: 0;
  border-color: rgba(201, 169, 98, 0.35);
  animation: vers-preloader-spin 2.4s linear infinite;
}

.vers-preloader-ring--inner {
  inset: 10px;
  border-top-color: rgba(237, 27, 36, 0.75);
  border-right-color: rgba(237, 27, 36, 0.15);
  animation: vers-preloader-spin 1.4s linear infinite reverse;
}

.vers-preloader-square {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(25, 53, 45, 0.18);
  animation: vers-preloader-square-pulse 1.8s ease-in-out infinite;
}

.vers-preloader-square--a {
  top: 8px;
  left: 8px;
  transform: rotate(45deg);
}

.vers-preloader-square--b {
  right: 8px;
  bottom: 8px;
  transform: rotate(45deg);
  animation-delay: 0.4s;
  border-color: rgba(237, 27, 36, 0.28);
}

.vers-preloader-brand {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #19352d;
  animation: vers-preloader-text-in 0.7s ease 0.25s both;
}

.vers-preloader-tagline {
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(25, 53, 45, 0.55);
  animation: vers-preloader-text-in 0.7s ease 0.4s both;
}

.vers-preloader-progress {
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: rgba(25, 53, 45, 0.08);
  overflow: hidden;
}

.vers-preloader-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #c9a962, #ed1b24);
  animation: vers-preloader-bar 0.9s ease-in-out forwards;
}

@keyframes vers-preloader-logo-in {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-8deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes vers-preloader-text-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vers-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes vers-preloader-square-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: rotate(45deg) scale(0.9);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.05);
  }
}

@keyframes vers-preloader-bar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vers-preloader-logo,
  .vers-preloader-brand,
  .vers-preloader-tagline,
  .vers-preloader-ring,
  .vers-preloader-square,
  .vers-preloader-progress span {
    animation: none !important;
  }

  .vers-preloader-logo,
  .vers-preloader-brand,
  .vers-preloader-tagline {
    opacity: 1;
    transform: none;
  }

  .vers-preloader-progress span {
    width: 100%;
  }
}

