/* 旭海农业科技 — 品牌主题（配色贴近 logo：叶绿 + 麦穗金） */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@500;600;700&display=swap');

:root {
  --xh-leaf: #3d8b3a;
  --xh-leaf-deep: #2a6b32;
  --xh-leaf-soft: #6fad4a;
  --xh-wheat: #d4a017;
  --xh-wheat-light: #e8c04a;
  --xh-soil: #1e3a28;
  --xh-ink: #243528;
  --xh-muted: #5a6b5e;
  --xh-paper: #f3f6ef;
  --xh-mist: #e7eee3;
  --xh-white: #ffffff;
  --xh-line: rgba(45, 90, 50, 0.12);

  --thm-font: "Noto Sans SC", "PingFang SC", sans-serif;
  --heading-font: "Noto Serif SC", "Songti SC", serif;
  --special-font: "Noto Serif SC", serif;
  --thm-color: var(--xh-muted);
  --thm-base: var(--xh-leaf);
  --thm-base-rgb: 61, 139, 58;
  --thm-primary: var(--xh-wheat);
  --thm-primary-rgb: 212, 160, 23;
  --thm-black: var(--xh-soil);
  --thm-black-rgb: 30, 58, 40;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--thm-font);
  color: var(--xh-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(107, 173, 74, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(212, 160, 23, 0.1), transparent 50%),
    linear-gradient(180deg, #f7faf4 0%, var(--xh-paper) 40%, #eef3ea 100%);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--xh-soil);
  font-weight: 600;
  line-height: 1.35;
}

a { color: var(--xh-leaf-deep); transition: color .2s ease; }
a:hover { color: var(--xh-wheat); }

/* —— Header —— */
.xh-topbar {
  background: var(--xh-soil);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  padding: 8px 0;
}
.xh-topbar a { color: rgba(255,255,255,.85); }
.xh-topbar a:hover { color: var(--xh-wheat-light); }
.xh-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.xh-topbar__social { display: flex; gap: 14px; }
.xh-topbar__meta { display: flex; gap: 20px; flex-wrap: wrap; }

.xh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 250, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--xh-line);
}
.xh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.xh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: var(--xh-soil) !important;
}
.xh-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.xh-brand__name {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.xh-brand__sub {
  display: block;
  font-family: var(--thm-font);
  font-size: 11px;
  font-weight: 400;
  color: var(--xh-muted);
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.xh-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.xh-menu a {
  display: block;
  padding: 8px 14px;
  color: var(--xh-ink);
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none !important;
  position: relative;
}
.xh-menu a:hover,
.xh-menu a.is-active {
  color: var(--xh-leaf-deep);
  background: rgba(61, 139, 58, 0.08);
}
.xh-menu a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--xh-leaf), var(--xh-wheat));
  border-radius: 2px;
}
.xh-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: var(--xh-soil) !important;
  white-space: nowrap;
}
.xh-phone__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--xh-leaf), var(--xh-leaf-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(42, 107, 50, 0.28);
}
.xh-phone__label {
  display: block;
  font-size: 11px;
  color: var(--xh-muted);
  line-height: 1.2;
}
.xh-phone__num {
  display: block;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--xh-soil);
  line-height: 1.2;
}
.xh-burger {
  display: none;
  border: 0;
  background: transparent;
  font-size: 22px;
  color: var(--xh-soil);
  padding: 8px;
  cursor: pointer;
}

/* —— Buttons —— */
.xh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.xh-btn--primary {
  background: linear-gradient(135deg, var(--xh-leaf-soft), var(--xh-leaf-deep));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(42, 107, 50, 0.28);
}
.xh-btn--primary:hover {
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(42, 107, 50, 0.35);
}
.xh-btn--ghost {
  background: rgba(255,255,255,.14);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.xh-btn--ghost:hover {
  background: rgba(255,255,255,.24);
  color: #fff !important;
}
.xh-btn--wheat {
  background: linear-gradient(135deg, var(--xh-wheat-light), var(--xh-wheat));
  color: var(--xh-soil) !important;
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.3);
}
.thm-btn {
  background: linear-gradient(135deg, var(--xh-leaf-soft), var(--xh-leaf-deep)) !important;
  color: #fff !important;
  border-radius: 4px !important;
}

/* —— Hero —— */
.xh-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--xh-soil);
}
.xh-hero__media {
  position: absolute;
  inset: 0;
}
.xh-hero__media video,
.xh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.xh-hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.xh-hero__media video {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
}
.xh-hero__media video.is-ready {
  opacity: 1;
}
.xh-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 40, 28, 0.25) 0%, rgba(20, 40, 28, 0.55) 45%, rgba(18, 36, 26, 0.88) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 160, 23, 0.18), transparent 55%);
}
.xh-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 9vh;
  color: #fff;
}
.xh-hero__brand {
  font-family: var(--heading-font);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.xh-hero__brand span {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, var(--xh-wheat-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.xh-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  margin: 0 0 14px;
  color: rgba(255,255,255,.95);
  letter-spacing: 0.06em;
}
.xh-hero__desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  margin: 0 0 28px;
}
.xh-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@keyframes xh-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.xh-hero__content > * {
  animation: xh-rise .9s ease both;
}
.xh-hero__content > *:nth-child(2) { animation-delay: .12s; }
.xh-hero__content > *:nth-child(3) { animation-delay: .22s; }
.xh-hero__content > *:nth-child(4) { animation-delay: .32s; }

/* —— Sections —— */
.xh-section {
  padding: 88px 0;
  position: relative;
}
.xh-section--tight { padding: 64px 0; }
.xh-section--mist { background: var(--xh-mist); }
.xh-section--soil {
  background:
    linear-gradient(135deg, rgba(30,58,40,.96), rgba(42,107,50,.92)),
    url('/assets/images/backgrounds/cta-1-bg-1.jpg') center/cover;
  color: #fff;
}
.xh-section--soil h2,
.xh-section--soil h3 { color: #fff; }

.xh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--xh-leaf);
  margin-bottom: 12px;
}
.xh-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--xh-leaf), var(--xh-wheat));
}
.xh-section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 16px;
}
.xh-section__lead {
  max-width: 640px;
  color: var(--xh-muted);
  margin: 0;
  font-size: 16px;
}

/* —— Pillars (技术/鱼苗/成鱼) —— */
.xh-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.xh-pillar {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 280px;
  box-shadow: 0 18px 40px rgba(30, 58, 40, 0.14);
  isolation: isolate;
}
.xh-pillar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  position: absolute;
  inset: 0;
}
.xh-pillar:hover img { transform: scale(1.06); }
.xh-pillar__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(20, 40, 28, 0.88));
  color: #fff;
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 0.12em;
  z-index: 1;
}

/* —— About split —— */
.xh-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.xh-split__visual {
  position: relative;
}
.xh-split__visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(30, 58, 40, 0.16);
}
.xh-split__badge {
  position: absolute;
  left: -16px;
  bottom: 36px;
  background: linear-gradient(145deg, var(--xh-wheat-light), var(--xh-wheat));
  color: var(--xh-soil);
  padding: 18px 22px;
  border-radius: 6px;
  font-family: var(--heading-font);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.35);
}
.xh-split__badge small {
  display: block;
  font-family: var(--thm-font);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: .8;
}
.xh-split__badge strong {
  font-size: 28px;
  letter-spacing: 0.04em;
}
.xh-tagline {
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--xh-leaf-deep);
  margin: 0 0 16px;
}
.xh-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 28px;
}
.xh-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(61, 139, 58, 0.06);
  border: 1px solid var(--xh-line);
  border-radius: 6px;
}
.xh-feature i {
  color: var(--xh-leaf);
  font-size: 22px;
}
.xh-feature h4 {
  margin: 0;
  font-size: 15px;
  font-family: var(--thm-font);
  font-weight: 600;
}
.xh-feature h4 a { color: inherit; text-decoration: none !important; }

/* —— Value strip —— */
.xh-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.xh-value h4 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
}
.xh-value p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.8;
}
.xh-value__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,.12);
  color: var(--xh-wheat-light);
  font-size: 20px;
}

/* —— News —— */
.xh-news-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.xh-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.xh-news-item {
  display: block;
  text-decoration: none !important;
  color: inherit;
  background: var(--xh-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--xh-line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.xh-news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(30, 58, 40, 0.12);
  color: inherit;
}
.xh-news-item__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--xh-mist);
}
.xh-news-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.xh-news-item:hover .xh-news-item__img img { transform: scale(1.05); }
.xh-news-item__body { padding: 20px 22px 24px; }
.xh-news-item__meta {
  font-size: 13px;
  color: var(--xh-muted);
  margin-bottom: 10px;
}
.xh-news-item__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--xh-soil);
}
.xh-company-band {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(61,139,58,.1), rgba(212,160,23,.12)),
    var(--xh-white);
  border: 1px solid var(--xh-line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.xh-company-band i {
  font-size: 42px;
  color: var(--xh-leaf);
}
.xh-company-band h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.xh-company-band p {
  margin: 0;
  color: var(--xh-muted);
}

/* —— Contact —— */
.xh-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.xh-contact__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(30, 58, 40, 0.14);
}
.xh-contact__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.xh-form {
  display: grid;
  gap: 12px;
}
.xh-form input,
.xh-form textarea {
  width: 100%;
  border: 1px solid var(--xh-line);
  background: var(--xh-white);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--xh-ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.xh-form input:focus,
.xh-form textarea:focus {
  border-color: var(--xh-leaf);
  box-shadow: 0 0 0 3px rgba(61, 139, 58, 0.15);
}
.xh-form textarea { min-height: 120px; resize: vertical; }

/* —— Page header —— */
.xh-page-hero {
  position: relative;
  padding: 96px 0 72px;
  background:
    linear-gradient(120deg, rgba(30,58,40,.88), rgba(61,139,58,.72)),
    url('/assets/images/backgrounds/page-header-bg-1-1.jpg') center/cover;
  color: #fff;
  overflow: hidden;
}
.xh-page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 0;
}
.xh-breadcrumb {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.xh-breadcrumb a { color: #fff; text-decoration: none !important; }

/* —— About page —— */
.xh-about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.xh-side-nav {
  position: sticky;
  top: 100px;
  background: var(--xh-white);
  border: 1px solid var(--xh-line);
  border-radius: 8px;
  padding: 12px;
}
.xh-side-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--xh-ink);
  text-decoration: none !important;
  font-weight: 500;
}
.xh-side-nav a:hover { background: rgba(61,139,58,.08); color: var(--xh-leaf-deep); }
.xh-about-content h2 {
  font-size: 28px;
  margin: 36px 0 14px;
  padding-top: 8px;
}
.xh-about-content h2:first-child { margin-top: 0; }
.xh-about-content p { color: var(--xh-muted); margin-bottom: 14px; }
.xh-callout {
  margin-top: 20px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--xh-leaf-deep), var(--xh-soil));
  color: #fff;
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.xh-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(61,139,58,.12);
  color: var(--xh-leaf-deep);
  font-weight: 600;
  font-size: 14px;
  margin: 8px 0 12px;
}
.xh-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.xh-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--xh-line);
  color: var(--xh-muted);
}
.xh-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--xh-leaf), var(--xh-wheat));
}
.xh-list strong {
  display: block;
  color: var(--xh-soil);
  margin-bottom: 4px;
}
.xh-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.xh-check-list li {
  padding: 10px 0;
  color: var(--xh-ink);
  font-weight: 500;
}
.xh-check-list i { color: var(--xh-leaf); margin-right: 8px; }

/* —— Blog detail —— */
.xh-article {
  max-width: 820px;
  margin: 0 auto;
  background: var(--xh-white);
  border: 1px solid var(--xh-line);
  border-radius: 10px;
  overflow: hidden;
}
.xh-article__cover {
  aspect-ratio: 16/9;
  background: var(--xh-mist);
}
.xh-article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xh-article__body { padding: 36px 40px 48px; }
.xh-article__meta {
  color: var(--xh-muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.xh-article__title {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 24px;
}
.xh-article__content {
  color: var(--xh-ink);
  font-size: 16px;
  line-height: 1.9;
}
.xh-article__content img { max-width: 100%; height: auto; }

/* —— Footer —— */
.xh-footer {
  background: var(--xh-soil);
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
  position: relative;
  overflow: hidden;
}
.xh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(107,173,74,.18), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212,160,23,.14), transparent 35%);
  pointer-events: none;
}
.xh-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.xh-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none !important;
  color: #fff !important;
}
.xh-footer__logo img { height: 48px; }
.xh-footer__logo span {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
}
.xh-footer h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 18px;
}
.xh-footer ul { list-style: none; padding: 0; margin: 0; }
.xh-footer li { margin-bottom: 10px; }
.xh-footer a { color: rgba(255,255,255,.78); text-decoration: none !important; }
.xh-footer a:hover { color: var(--xh-wheat-light); }
.xh-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 20px;
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.xh-bottom a { color: rgba(255,255,255,.7); }

/* —— Mobile drawer —— */
.xh-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.xh-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.xh-drawer__mask {
  position: absolute;
  inset: 0;
  background: rgba(18, 36, 26, 0.55);
  opacity: 0;
  transition: opacity .25s ease;
}
.xh-drawer.is-open .xh-drawer__mask { opacity: 1; }
.xh-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 86vw);
  background: var(--xh-paper);
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 24px;
  overflow: auto;
}
.xh-drawer.is-open .xh-drawer__panel { transform: translateX(0); }
.xh-drawer__close {
  border: 0;
  background: transparent;
  font-size: 22px;
  color: var(--xh-soil);
  float: right;
  cursor: pointer;
}
.xh-drawer__menu {
  list-style: none;
  padding: 40px 0 0;
  margin: 0;
}
.xh-drawer__menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--xh-line);
  color: var(--xh-soil);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important;
}

.scroll-to-top {
  background: var(--xh-leaf-deep) !important;
}

/* Hide old template chrome when new layout is used */
.page-wrapper > .main-header,
.page-wrapper > .stricky-header,
.preloader { display: none !important; }

/* Responsive */
@media (max-width: 991px) {
  .xh-menu, .xh-phone { display: none; }
  .xh-burger { display: inline-flex; }
  .xh-pillars,
  .xh-news-grid,
  .xh-values,
  .xh-contact,
  .xh-split,
  .xh-about-layout,
  .xh-footer__grid {
    grid-template-columns: 1fr;
  }
  .xh-pillars { margin-top: -32px; }
  .xh-split__visual img { height: 360px; }
  .xh-split__badge { left: 12px; bottom: 12px; }
  .xh-company-band { grid-template-columns: 1fr; }
  .xh-hero { min-height: 78vh; }
  .xh-article__body { padding: 24px 20px 32px; }
  .xh-side-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

@media (max-width: 640px) {
  .xh-brand__name { font-size: 17px; }
  .xh-brand__sub { display: none; }
  .xh-features { grid-template-columns: 1fr; }
  .xh-section { padding: 64px 0; }
  .xh-side-nav { grid-template-columns: 1fr; }
}
