/* 首页 —— PREMIUM 设计，scoped under .home-page，压过 Bootstrap / 主题默认 */
.home-page,
.home-page * { box-sizing: border-box; }

.home-page {
  --brand: #16698d;
  --brand-hover: #0f5573;
  --brand-deep: #125a78;
  --accent: #2d8fc7;
  --accent-hover: #16698d;
  --text: #586667;
  --text-dark: #333;
  --text-soft: #777;
  --text-muted: #888;
  --border: #e8ecef;
  --border-light: #eef2f4;
  --surface: #fff;
  --surface-muted: #fafbfc;
  --surface-tint: #f8fbfd;
  --page-bg: #f4f7f8;
  --banner-deep: #0c2430;
  --eyebrow: #8aa3ad;
  --pill-border: rgba(255, 255, 255, 0.35);
  --pill-bg: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 4px 20px rgba(12, 36, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(12, 36, 48, 0.08);
  --shadow-lg: 0 12px 32px rgba(12, 36, 48, 0.1);

  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  background: var(--page-bg);
}

.home-page a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}
.home-page a:hover { color: var(--brand-hover); }

/* ══════════════════════════════════════════
   Banner — 与线上一致：450px 轮播 + 底部按钮
   ══════════════════════════════════════════ */
.home-page .home-banner {
  position: relative;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0;
}

.home-page .home-banner .carousel {
  position: relative;
  margin-bottom: 0;
}

.home-page .home-banner .carousel-inner {
  height: 450px;
  overflow: hidden;
  background: #fff;
}

.home-page .home-banner .item {
  height: 450px;
  overflow: hidden;
  background: #fff;
}

.home-page .home-banner .item > img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  display: block;
  vertical-align: top;
}

.home-page .home-banner .carousel-indicators {
  bottom: 10px;
  z-index: 15;
  margin-bottom: 0;
}

.home-page .home-banner .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: 1px 4px;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0);
}

.home-page .home-banner .carousel-indicators .active {
  width: 10px;
  height: 10px;
  margin: 1px 4px;
  background-color: #fff;
}

.home-page .home-banner .carousel-control {
  display: none;
}

.home-page .home-banner .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 320px;
  bottom: auto;
  width: auto;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: left;
  text-shadow: none;
  z-index: 10;
}

.home-page .home-banner .carousel-caption .btn-primary {
  background-color: #337ab7;
  border-color: #2e6da4;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.42857143;
}

.home-page .home-banner .carousel-caption .btn-primary:hover,
.home-page .home-banner .carousel-caption .btn-primary:focus {
  background-color: #286090;
  border-color: #204d74;
  color: #fff;
  text-decoration: none;
}

.home-page .banner-overlay {
  position: absolute;
  inset: 0;

  pointer-events: none;
  z-index: 1;
}

.home-page .banner-hero {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

/* NO glass box — only re-enable clicks on container */
.home-page .banner-hero .container {
  pointer-events: auto;
}

.home-page .banner-hero h1 {
  margin: 0 0 12px !important;
  padding: 0 !important;
  font-size: 38px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.02em;
  border: 0 !important;
  background: none !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.home-page .banner-tagline {
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 560px;
}

.home-page .banner-kw {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.home-page .banner-kw span {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  background: var(--pill-bg);
}

.home-page .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Buttons ── */
.home-page .home-btn {
  display: inline-block;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.home-page .home-btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--brand) 100%);
  color: #fff !important;
  border: 1px solid var(--brand);
  box-shadow: 0 4px 14px rgba(22, 105, 141, 0.22);
}

.home-page .home-btn-primary:hover {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-hover) 100%);
  border-color: var(--brand-hover);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(22, 105, 141, 0.28);
}

.home-page .home-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.home-page .home-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.home-page .home-btn-outline {
  background: transparent;
  color: var(--brand) !important;
  border: 1px solid var(--brand);
}

.home-page .home-btn-outline:hover {
  background: var(--brand);
  color: #fff !important;
}

.home-page .home-btn-banner {
  display: inline-block;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none !important;
  background: var(--accent);
  color: #fff !important;
  border: 1px solid var(--accent);
  transition: all 0.2s ease;
}

.home-page .home-btn-banner:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
}

/* ══════════════════════════════════════════
   Intro + Stats
   ══════════════════════════════════════════ */
.home-page .home-main {
  background: var(--page-bg);
  padding-bottom: 56px;
}

.home-page .home-main > .container {
  padding-left: 15px;
  padding-right: 15px;
}

.home-page .banner-overlay,
.home-page .banner-hero {
  display: none;
}

.home-page .home-intro {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--surface-tint) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 44px;
  margin-bottom: 0;
  overflow: hidden;
}

.home-page .home-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 50%, var(--brand) 100%);
}

.home-page .home-intro::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 105, 141, 0.05) 0%, transparent 68%);
  pointer-events: none;
}

.home-page .home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 40px 56px;
  align-items: start;
  margin-bottom: 36px;
}

.home-page .home-intro-head {
  position: relative;
  z-index: 1;
}

.home-page .home-intro-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.home-page .home-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 0;
}

.home-page .home-intro h1 {
  margin: 0 0 14px !important;
  padding: 0 !important;
  font-size: 34px !important;
  line-height: 1.28 !important;
  font-weight: 700 !important;
  color: var(--brand) !important;
  letter-spacing: 0.02em;
  border: 0 !important;
  background: none !important;
}

.home-page .home-intro-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
  margin-bottom: 20px;
}

.home-page .home-tagline {
  margin: 0 0 20px !important;
  padding: 0 !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  color: var(--text-soft) !important;
  border: 0 !important;
}

.home-page .home-kw {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page .home-kw span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border: 1px solid rgba(22, 105, 141, 0.18);
  border-radius: 999px;
  background: rgba(22, 105, 141, 0.06);
  color: var(--brand);
}

.home-page .home-intro-body {
  position: relative;
  z-index: 1;
  padding: 6px 0 0 36px;
  border-left: 3px solid var(--border-light);
}

.home-page .home-lead {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  max-width: none;
}

.home-page .home-lead strong {
  color: var(--brand);
  font-weight: 600;
}

.home-page .home-lead a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 105, 141, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-page .home-lead a:hover {
  color: var(--brand-hover);
  border-bottom-color: var(--brand-hover);
}

.home-page .home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.home-page .home-stat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-page .home-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.home-page .home-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-page .home-stat strong {
  display: block;
  font-size: 32px;
  line-height: 1.15;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.home-page .home-stat span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   Section headers
   ══════════════════════════════════════════ */
.home-page .home-body {
  padding: 0 0 56px;
}

.home-page .home-sec {
  padding: 48px 0 0;
}

.home-page .home-sec-head,
.home-page .home-sec-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.home-page .home-sec-head h2,
.home-page .home-sec-bar h2,
.home-page .home-sec-title {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 24px !important;
  line-height: 1.3 !important;
  color: var(--brand) !important;
  font-weight: 700 !important;
  border: 0 !important;
  background: none !important;
}

.home-page .home-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: 6px;
  font-weight: 600;
}

.home-page .home-more {
  font-size: 14px;
  color: var(--text-soft) !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-page .home-more:hover {
  color: var(--brand) !important;
}

.home-page .home-product-wrap {
  padding: 48px 0 0;
}

/* ══════════════════════════════════════════
   Product pillars — gradient top + hover lift
   ══════════════════════════════════════════ */
.home-page .home-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-page .home-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-page .home-pillar:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.home-page .home-pillar-top {
  position: relative;
  padding: 24px 22px 20px;
  background: linear-gradient(160deg, var(--surface-tint) 0%, #eef5f8 100%);
  border-bottom: 1px solid var(--border);
}

.home-page .home-pillar-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.home-page .home-pillar-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-page .home-pillar-head img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}

.home-page .home-pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand) !important;
  line-height: 1.35;
  text-decoration: none !important;
}

.home-page .home-pillar-title:hover {
  color: var(--brand-hover) !important;
}

.home-page .home-pillar-desc {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-page .home-pillar-links {
  list-style: none;
  margin: 0;
  padding: 16px 18px 20px;
  flex: 1;
}

.home-page .home-pillar-links li {
  margin: 0;
}

.home-page .home-pillar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 8px;
  font-size: 14px;
  color: var(--text-dark) !important;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}

.home-page .home-pillar-links a::after {
  content: "›";
  color: #b0c4cc;
  font-size: 18px;
  line-height: 1;
}

.home-page .home-pillar-links a:hover {
  background: #f0f6f9;
  color: var(--brand) !important;
}

/* ══════════════════════════════════════════
   Application cards
   ══════════════════════════════════════════ */
.home-page .home-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 8px;
}

.home-page .home-app {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-page .home-app:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-page .home-app img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.home-page .home-app span {
  display: block;
  padding: 14px 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.45;
}

.home-page .home-app:hover span {
  color: var(--brand);
}

/* ══════════════════════════════════════════
   Video grid
   ══════════════════════════════════════════ */
.home-page .home-videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-bottom: 0;
}

.home-page .home-sec-videos {
  padding-top: 48px;
  padding-bottom: 8px;
}

.home-page .home-sec-videos .home-sec-head {
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.home-page .home-video {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  transition: box-shadow 0.25s ease;
}

.home-page .home-video:hover {
  box-shadow: var(--shadow-md);
}

.home-page .home-video img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.home-page .home-video p {
  margin: 0;
  padding: 10px 12px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  min-height: 0;
}

.home-page .home-video:hover p {
  color: var(--brand);
}

/* ══════════════════════════════════════════
   DAS guide split — text-indent 2em
   ══════════════════════════════════════════ */
.home-page .home-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}

.home-page .home-guide h2 {
  margin: 0 0 16px !important;
  padding: 0 !important;
  font-size: 22px !important;
  color: var(--brand) !important;
  font-weight: 700 !important;
  border: 0 !important;
  background: none !important;
}

.home-page .home-guide p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  text-indent: 2em;
}

.home-page .home-guide p:last-of-type {
  margin-bottom: 0;
}

.home-page .home-guide p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-page .home-guide-media {
  text-align: center;
}

.home-page .home-guide-media video {
  width: 100%;
  border-radius: 6px;
  background: #000;
}

.home-page .home-guide-cap {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   Why us
   ══════════════════════════════════════════ */
.home-page .home-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
}

.home-page .home-sec-why {
  padding-top: 48px;
  padding-bottom: 8px;
}

.home-page .home-sec-why .home-sec-head {
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.home-page .home-why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 14px 14px;
  text-align: center;
  transition: box-shadow 0.25s ease;
}

.home-page .home-why-card:hover {
  box-shadow: var(--shadow-md);
}

.home-page .home-why-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
  display: block;
}

.home-page .home-why-card h3 {
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 15px !important;
  color: var(--brand) !important;
  font-weight: 700 !important;
  border: 0 !important;
  background: none !important;
}

.home-page .home-why-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
  text-indent: 2em;
}

/* ══════════════════════════════════════════
   News + Updates + FAQ
   ══════════════════════════════════════════ */
.home-page .home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 48px;
}

.home-page .home-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 26px;
}

.home-page .home-panel h2 {
  margin: 0 0 16px !important;
  padding: 0 0 10px !important;
  font-size: 20px !important;
  color: var(--brand) !important;
  font-weight: 700 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border-light) !important;
  background: none !important;
}

.home-page .home-panel h2 + h2 {
  margin-top: 28px !important;
}

.home-page .home-panel ol,
.home-page .home-panel ul {
  margin: 0;
  padding-left: 20px;
}

.home-page .home-panel li {
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.home-page .home-panel li:last-child {
  margin-bottom: 0;
}

/* 公司新闻 — flex 150px thumb */
.home-page .home-news {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.home-page .home-news-thumb {
  flex-shrink: 0;
  width: 150px;
  text-decoration: none !important;
}

.home-page .home-news-thumb img {
  width: 150px;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: block;
}

.home-page .home-news-list {
  flex: 1;
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.home-page .home-news-list li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
}

/* 最近更新 */
.home-page .home-updates ol {
  margin: 0;
  padding-left: 20px;
}

.home-page .home-updates li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.home-page .home-updates li a {
  color: var(--text-dark);
}

.home-page .home-updates li a:hover {
  color: var(--brand);
}

/* FAQ 有序列表 */
.home-page .home-faq-ol {
  margin: 0;
  padding-left: 20px;
}

.home-page .home-faq-ol li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.home-page .home-faq-ol li:last-child {
  margin-bottom: 0;
}

.home-page .home-faq-ol strong {
  color: var(--brand);
  font-weight: 600;
}

/* details/summary FAQ variant (optional markup) */
.home-page .home-faq details {
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.home-page .home-faq details:last-child {
  border-bottom: 0;
}

.home-page .home-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand);
  font-size: 14px;
  list-style: none;
  padding-right: 20px;
  position: relative;
}

.home-page .home-faq summary::-webkit-details-marker {
  display: none;
}

.home-page .home-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--eyebrow);
  font-size: 18px;
  font-weight: 400;
}

.home-page .home-faq details[open] summary::after {
  content: "−";
}

.home-page .home-faq p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

/* ══════════════════════════════════════════
   Clients — white card + logo grid
   ══════════════════════════════════════════ */
.home-page .home-clients {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 20px 24px;
  margin-top: 48px;
}

.home-page .home-clients .home-sec-head,
.home-page .home-clients .home-sec-bar {
  border-bottom: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.home-page .home-clients .home-sec-title {
  text-align: center;
  width: 100%;
}

.home-page .home-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
  align-items: start;
  text-align: center;
}

.home-page .home-logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 8px;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.home-page .home-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.home-page .home-logo p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.home-page .home-logo a {
  display: block;
  text-decoration: none !important;
}

/* ══════════════════════════════════════════
   Responsive — 991px / 560px
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .home-page .banner-hero h1 {
    font-size: 28px !important;
  }

  .home-page .home-banner .carousel-inner,
  .home-page .home-banner .item,
  .home-page .home-banner .item > img {
    height: 420px;
  }

  .home-page .home-banner .carousel-caption {
    top: 290px;
    padding: 0 15px;
  }

  .home-page .home-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }

  .home-page .home-intro-body {
    padding: 0;
    border-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
  }

  .home-page .home-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .home-pillars,
  .home-page .home-apps,
  .home-page .home-videos,
  .home-page .home-why {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .home-guide {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .home-page .home-guide-media {
    order: -1;
  }

  .home-page .home-split {
    grid-template-columns: 1fr;
  }

  .home-page .home-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-page .home-intro-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .home-page .home-sec-head,
  .home-page .home-sec-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .home-page .home-banner .carousel-inner,
  .home-page .home-banner .item,
  .home-page .home-banner .item > img {
    height: 360px;
  }

  .home-page .home-banner .carousel-caption {
    top: 250px;
    padding: 0 15px;
  }

  .home-page .banner-hero h1 {
    font-size: 24px !important;
  }

  .home-page .banner-tagline {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .home-page .banner-kw {
    margin-bottom: 20px;
  }

  .home-page .banner-kw span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .home-page .home-btn,
  .home-page .home-btn-banner {
    padding: 10px 18px;
    font-size: 13px;
  }

  .home-page .home-intro {
    padding: 36px 0 32px;
  }

  .home-page .home-intro h1 {
    font-size: 26px !important;
  }

  .home-page .home-tagline {
    font-size: 15px !important;
  }

  .home-page .home-intro-actions {
    margin-top: 20px;
  }

  .home-page .home-intro-actions .home-btn {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    justify-content: center;
  }

  .home-page .home-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .home-page .home-stat {
    padding: 20px 16px 18px;
  }

  .home-page .home-stat strong {
    font-size: 26px;
  }

  .home-page .home-pillars,
  .home-page .home-apps,
  .home-page .home-videos,
  .home-page .home-why {
    grid-template-columns: 1fr;
  }

  .home-page .home-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .home-page .home-logo img {
    width: 72px;
    height: 72px;
  }

  .home-page .home-news {
    flex-direction: column;
  }

  .home-page .home-news-thumb,
  .home-page .home-news-thumb img {
    width: 100%;
    max-width: 280px;
  }

  .home-page .home-guide {
    padding: 24px 18px;
  }

  .home-page .home-panel {
    padding: 20px 18px;
  }

  .home-page .home-clients {
    padding: 24px 16px 20px;
  }

  .home-page .home-banner .carousel-indicators {
    bottom: 10px;
  }
}
