/* ========== Sitemap Page ========== */
body.sitemap-page {
  background: #f5f6f8;
}

.sitemap-banner .page-banner-bg {
  background-color: #12121e;
}

.sitemap-main {
  background:
    linear-gradient(180deg, #f5f6f8 0%, #ffffff 62%, #f5f6f8 100%);
  padding: 56px 0 72px;
}

.sitemap-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #eceef1;
  border-left: 4px solid #f0a500;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(10, 10, 20, 0.06);
}

.sitemap-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #d69f0d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sitemap-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #f0a500;
}

.sitemap-intro h2 {
  color: #111827;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
  margin-bottom: 8px;
}

.sitemap-intro p {
  max-width: 780px;
  color: #5d6572;
  font-size: 0.96rem;
}

.sitemap-language-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.sitemap-lang-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  color: #4b5563;
  background: #ffffff;
  font-size: 0.83rem;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sitemap-lang-pill:hover {
  color: #111827;
  border-color: rgba(240, 165, 0, 0.5);
  background: #fff8e7;
  transform: translateY(-1px);
}

.sitemap-lang-pill.is-active {
  color: #101820;
  border-color: #f0a500;
  background: #f0a500;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
  gap: 18px;
}

.sitemap-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e6e8ea;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(10, 10, 20, 0.055);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sitemap-card:hover {
  border-color: rgba(240, 165, 0, 0.46);
  box-shadow: 0 18px 36px rgba(10, 10, 20, 0.09);
  transform: translateY(-2px);
}

.sitemap-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(240, 165, 0, 0.25);
  color: #101820;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.sitemap-card h2 .icon {
  width: 22px;
  height: 22px;
  color: #d69f0d;
  flex: 0 0 auto;
}

.sitemap-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sitemap-card a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  color: #2c3138;
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sitemap-card a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #f0a500;
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.13);
  flex: 0 0 auto;
}

.sitemap-card a:hover {
  color: #c88b00;
  transform: translateX(3px);
}

.sitemap-stats {
  margin-top: 24px;
  padding: 28px;
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(8, 8, 16, 0.98), rgba(23, 29, 42, 0.98) 68%, rgba(54, 40, 10, 0.98)),
    #080810;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(10, 10, 20, 0.16);
}

.sitemap-stats h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.35rem;
  text-align: center;
}

.sitemap-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
}

.sitemap-stat-item {
  padding: 18px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.sitemap-stat-number {
  color: #f0a500;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
}

.sitemap-stat-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .sitemap-main {
    padding: 38px 0 56px;
  }

  .sitemap-intro {
    flex-direction: column;
    padding: 18px;
  }

  .sitemap-language-links {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sitemap-card {
    padding: 16px;
  }

  .sitemap-card a {
    width: 100%;
  }

  .sitemap-stats {
    padding: 22px 14px;
  }
}
