/* ==========================================================================
   MINERCORE HOME TEST (/test/) — PREMIUM CORPORATE PROTOTYPE
   Enterprise standard: clean, professional, non-distracting.
   ========================================================================== */

:root {
  --ht-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ht-primary: #0066ff;
  --ht-primary-hover: #0052cc;
  --ht-dark-navy: #091322;
  --ht-deep-navy: #050d1a;
  --ht-text-main: #0f172a;
  --ht-text-muted: #334155;
  --ht-text-light: #475569;
  --ht-border: #e2e8f0;
  --ht-border-subtle: #f1f5f9;
  --ht-card-bg: #ffffff;
  --ht-section-bg: #f8fafc;
  --ht-radius-sm: 6px;
  --ht-radius-md: 10px;
  --ht-radius-lg: 16px;
  --ht-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --ht-shadow-md: 0 4px 14px rgba(15, 23, 42, 0.06);
  --ht-shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.ht-page {
  font-family: var(--ht-font);
  color: var(--ht-text-main);
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

.ht-page *,
.ht-page *::before,
.ht-page *::after {
  box-sizing: border-box;
}

.ht-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   SHARED SECTION HEADERS & BUTTONS
   -------------------------------------------------------------------------- */
/* ==========================================================================
   Trust Assurances Strip
   ========================================================================== */
.ht-trust-strip {
  padding: 0;
  background: #ffffff;
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
}

.ht-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.ht-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border-right: 1px solid #e8edf3;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.ht-trust-card:last-child {
  border-right: none;
}

.ht-trust-card:hover {
  background: #f9fafc;
}

/* Icon — no background, no border, pure color */
.ht-trust-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--ht-primary, #0066ff);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.ht-trust-card:hover .ht-trust-card__icon {
  transform: scale(1.12) translateY(-2px);
  color: var(--ht-primary-hover, #0052cc);
}

.ht-trust-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.ht-trust-card__content {
  width: 100%;
}

.ht-trust-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 7px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ht-trust-card__desc {
  font-size: 0.78rem;
  line-height: 1.58;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tablet: 3-col grid */
@media (max-width: 1024px) {
  .ht-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ht-trust-card {
    padding: 28px 18px;
    border-bottom: 1px solid #e8edf3;
  }

  /* Remove bottom border from last row (cards 4,5) */
  .ht-trust-card:nth-child(4),
  .ht-trust-card:nth-child(5) {
    border-bottom: none;
  }

  /* Remove right border from every 3rd card */
  .ht-trust-card:nth-child(3n) {
    border-right: none;
  }

  /* Restore last-child rule */
  .ht-trust-card:last-child {
    border-right: none;
  }
}

/* Mobile: 2-col grid */
@media (max-width: 680px) {
  .ht-trust-strip {
    border-top: none;
  }

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

  .ht-trust-card {
    padding: 24px 16px;
    border-bottom: 1px solid #e8edf3;
    border-right: 1px solid #e8edf3;
  }

  /* 2-col: remove right on even cards */
  .ht-trust-card:nth-child(2n) {
    border-right: none;
  }

  /* last card full width if odd count */
  .ht-trust-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-bottom: none;
  }

  .ht-trust-card:nth-child(4),
  .ht-trust-card:nth-child(5) {
    border-bottom: none;
  }

  .ht-trust-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .ht-trust-card__icon svg {
    width: 23px;
    height: 23px;
  }

  .ht-trust-card__title {
    font-size: 0.85rem;
    white-space: normal;
  }

  .ht-trust-card__desc {
    font-size: 0.75rem;
  }
}



.ht-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--ht-border-subtle);
}

.ht-section-header {
  margin-bottom: 32px;
}

.ht-section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.ht-section-header--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.ht-section-sub {
  display: inline-block;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--ht-primary);
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  line-height: 1.35;
}

.ht-section-subline {
  font-size: var(--text-md);
  color: var(--ht-text-muted);
  margin: 4px 0 0;
}

.ht-section-header__aside {
  font-size: var(--text-base);
  color: var(--ht-text-muted);
  margin: 0;
}

.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  padding: 10px 20px;
  border-radius: var(--ht-radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.ht-btn--primary {
  background: var(--ht-primary);
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.25);
}

.ht-btn--primary:hover {
  background: var(--ht-primary-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.ht-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.ht-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Featured Products Section Header & Actions */
.ht-products__title {
  font-size: clamp(1.75rem, 2.6vw, 2.35rem) !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
  text-align: center;
  margin: 0 0 12px;
}

.ht-products__title:last-child {
  margin-bottom: 0;
}

.ht-products__subline {
  font-size: 1.02rem;
  color: var(--ht-text-muted, #64748b);
  line-height: 1.7;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.ht-products__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 32px;
}

[dir="rtl"] .ht-products__action {
  justify-content: flex-start;
}

.ht-btn--outline-sm {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  padding: 8px 22px;
  background: #ffffff;
  color: var(--ht-primary) !important;
  border: 1.5px solid var(--ht-primary);
  border-radius: var(--ht-radius-sm);
  transition: all 0.2s ease;
}

.ht-btn--outline-sm:hover {
  background: var(--ht-primary);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.2);
}

/* Batch Shipping Notice Banner */
.ht-batch-notice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 36px;
  padding: 20px 24px;
  background: #f0fdf4;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-inline-start: 5px solid #059669;
  border-radius: 14px;
  box-shadow: 0 4px 20px -2px rgba(16, 185, 129, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  width: 100%;
}

.ht-batch-notice__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  flex-shrink: 0;
  margin-top: 2px;
}

.ht-batch-notice__icon {
  width: 22px;
  height: 22px;
}

.ht-batch-notice__content {
  flex: 1;
  min-width: 0;
  padding-inline-end: 28px;
}

.ht-batch-notice__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #14532d;
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.ht-batch-notice__desc {
  font-size: 0.92rem;
  line-height: 1.72;
  color: #166534;
  margin: 0;
}

.ht-batch-notice__desc p {
  margin: 0 0 12px;
  line-height: 1.72;
}

.ht-batch-notice__desc p:last-child {
  margin-bottom: 0;
}

.ht-batch-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 14px 0 16px;
}

.ht-batch-step {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
}

.ht-batch-step strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #14532d;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ht-batch-step p {
  margin: 0 !important;
  font-size: 0.83rem !important;
  line-height: 1.5 !important;
  color: #166534 !important;
}

.ht-batch-notice__subtitle {
  font-size: 0.98rem;
  font-weight: 700;
  color: #14532d;
  margin: 16px 0 6px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .ht-batch-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .ht-batch-steps {
    grid-template-columns: 1fr;
  }
}

.ht-batch-notice__close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22, 101, 52, 0.07);
  border: 1px solid rgba(22, 101, 52, 0.14);
  color: #166534;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  line-height: 1;
}

.ht-batch-notice__close:hover {
  background: rgba(22, 101, 52, 0.16);
  color: #14532d;
  transform: scale(1.08);
}

.ht-batch-notice__close:active {
  transform: scale(0.95);
}

@media (max-width: 640px) {
  .ht-batch-notice {
    padding: 16px 16px 18px;
    gap: 14px;
    margin-top: 28px;
    border-radius: 12px;
    border-inline-start-width: 4px;
  }

  .ht-batch-notice__icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .ht-batch-notice__icon {
    width: 19px;
    height: 19px;
  }

  .ht-batch-notice__content {
    padding-inline-end: 20px;
  }

  .ht-batch-notice__title {
    font-size: 0.96rem;
    margin-bottom: 6px;
  }

  .ht-batch-notice__desc {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .ht-batch-notice__close {
    top: 12px;
    inset-inline-end: 12px;
    width: 26px;
    height: 26px;
  }
}

.ht-btn--blue-full {
  width: 100%;
  background: var(--ht-primary);
  color: #ffffff !important;
  padding: 10px 16px;
}

.ht-btn--blue-full:hover {
  background: var(--ht-primary-hover);
}

.ht-btn--blue-sm {
  background: var(--ht-primary);
  color: #ffffff !important;
  font-size: var(--text-sm);
  padding: 8px 16px;
}

.ht-btn--blue-sm:hover {
  background: var(--ht-primary-hover);
}

.ht-btn--dark-outline {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.35);
  font-size: var(--text-sm);
  padding: 8px 16px;
}

.ht-btn--dark-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.ht-btn--dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
}

.ht-btn--dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Icon Pills */
.ht-icon-blue    { background: #eff6ff; color: #2563eb; }
.ht-icon-cyan    { background: #ecfeff; color: #0891b2; }
.ht-icon-emerald { background: #ecfdf5; color: #059669; }
.ht-icon-sky     { background: #f0f9ff; color: #0284c7; }
.ht-icon-indigo  { background: #eef2ff; color: #4f46e5; }
.ht-icon-amber   { background: #fffbeb; color: #d97706; }
.ht-icon-teal    { background: #f0fdfa; color: #0d9488; }
.ht-icon-rose    { background: #fff1f2; color: #e11d48; }

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.ht-hero {
  position: relative;
  background-color: #06070a;
  background-image: 
    linear-gradient(180deg, #06070a 0%, rgba(6, 7, 10, 0.88) 15%, rgba(6, 7, 10, 0.82) 50%, rgba(6, 7, 10, 0.9) 85%, #06070a 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(14, 165, 233, 0.07) 0%, transparent 70%),
    var(--ht-hero-bg);
  background-position: center center;
  background-size: 100% 100%, 100% 100%, cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 72px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-hero--custom-bg {
  background-color: #06070a;
  background-image: 
    linear-gradient(180deg, #06070a 0%, rgba(6, 7, 10, 0.88) 15%, rgba(6, 7, 10, 0.82) 50%, rgba(6, 7, 10, 0.9) 85%, #06070a 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(14, 165, 233, 0.07) 0%, transparent 70%),
    var(--ht-hero-bg);
  background-position: center center;
  background-size: 100% 100%, 100% 100%, cover;
  background-repeat: no-repeat;
}

:root {
  --ht-header-total-height: 102px;
  --ht-trust-total-height: 196px;
}
body.admin-bar {
  --ht-header-total-height: 134px;
}

@media (min-width: 1025px) {
  :is(.ht-hero.ht-hero--custom-bg, .ht-hero) {
    min-height: calc(100vh - var(--ht-header-total-height, 102px) - var(--ht-trust-total-height, 196px)) !important;
    min-height: calc(100dvh - var(--ht-header-total-height, 102px) - var(--ht-trust-total-height, 196px)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: clamp(32px, 4vh, 60px) !important;
    padding-bottom: clamp(32px, 4vh, 60px) !important;
    box-sizing: border-box !important;
  }

  :is(.ht-hero.ht-hero--custom-bg, .ht-hero) .ht-container {
    width: 100% !important;
    max-width: 1320px !important;
  }

  :is(.ht-hero.ht-hero--custom-bg, .ht-hero) .ht-hero__grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
  }

  :is(.ht-hero.ht-hero--custom-bg, .ht-hero) .ht-hero__product-img {
    max-height: clamp(380px, 50vh, 520px) !important;
  }

  .ht-trust-strip {
    min-height: 196px !important;
    box-sizing: border-box !important;
  }

  .ht-trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .ht-trust-card {
    min-height: 194px !important;
    padding: 28px 16px !important;
    border-bottom: none !important;
    border-right: 1px solid #e8edf3 !important;
    box-sizing: border-box !important;
  }

  .ht-trust-card:last-child {
    border-right: none !important;
  }
}

.ht-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.ht-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.75) 0%, rgba(6, 7, 10, 0.96) 100%);
  z-index: 1;
}

.ht-hero .ht-container {
  max-width: 1320px;
}

.ht-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.ht-hero__content {
  max-width: 680px;
}

.ht-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ht-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.ht-hero__title {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.ht-hero__desc {
  font-size: var(--text-md);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 720px;
}

.ht-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-sm);
  color: #e2e8f0;
  font-weight: var(--fw-medium);
}

.ht-badge-icon {
  width: 16px;
  height: 16px;
  color: #38bdf8;
  flex-shrink: 0;
}

/* Batch Sales Timer (Miner Batch Timer) inside Hero */
.ht-hero__timer {
  margin-top: 10px;
  margin-bottom: 22px;
}

.ht-hero__timer .mbt-banner,
.ht-hero__timer .mbt-banner--hero,
.ht-hero__timer .mbt--hero {
  max-width: 460px;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.ht-hero__timer .mbt-hero-topline {
  border-bottom: none !important;
  padding: 0 0 6px 0 !important;
}

.ht-hero__timer .mbt-digit-block {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 7px 6px !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
}

.ht-hero__timer .mbt-digit-block:hover {
  border-color: rgba(56, 189, 248, 0.45) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

.ht-hero__timer .mbt-digit-value,
.ht-hero__timer .mbt-digits-sec .mbt-digit-value {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.ht-hero__timer .mbt-digit-label {
  color: #94a3b8 !important;
  font-size: 0.62rem !important;
}

.ht-hero__timer .mbt-hero-note,
.ht-hero__timer .mbt-hero-content p,
.ht-hero__timer .mbt-hero-content .mbt-hero-note {
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  color: #94a3b8 !important;
  opacity: 1 !important;
  text-shadow: none !important;
  border-top: none !important;
  padding-left: 0 !important;
  margin-top: 8px !important;
}

.ht-hero__timer .mbt-hero-note * {
  color: #94a3b8 !important;
}

.ht-hero__timer .mbt-hero-content .mbt-hero-note:before {
  background: #38bdf8 !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
}

.ht-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.ht-hero__actions .ht-btn--primary {
  font-size: var(--text-md);
  padding: 12px 26px;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
}

.ht-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ht-hero__image-card {
  position: relative !important;
  width: 100% !important;
  max-width: 580px !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.ht-hero__product-img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  max-height: 460px !important;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.65)) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ht-hero__product-img:hover {
  transform: translateY(-4px) scale(1.02) !important;
}

.ht-hero__tag {
  display: none !important;
}

/* ==========================================================================
   2. COMPANY AT A GLANCE (KPI BAR)
   ========================================================================== */
.ht-kpis {
  background: #ffffff;
}

.ht-kpis__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.ht-kpi-card {
  background: linear-gradient(145deg, #ffffff 0%, #eef7ff 100%);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 14px 12px;
  text-align: left;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  box-shadow: 0 3px 10px rgba(15, 62, 105, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ht-kpis__grid .ht-kpi-card:nth-child(4n + 1) {
  background: linear-gradient(145deg, #ffffff 0%, #eaf5ff 100%);
  border-color: #d4e8fb;
}

.ht-kpis__grid .ht-kpi-card:nth-child(4n + 2) {
  background: linear-gradient(145deg, #ffffff 0%, #eafaf5 100%);
  border-color: #d2eee4;
}

.ht-kpis__grid .ht-kpi-card:nth-child(4n + 3) {
  background: linear-gradient(145deg, #ffffff 0%, #f2efff 100%);
  border-color: #e2dcfa;
}

.ht-kpis__grid .ht-kpi-card:nth-child(4n) {
  background: linear-gradient(145deg, #ffffff 0%, #fff6e8 100%);
  border-color: #f5e3c6;
}

.ht-kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 78, 135, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: #94c9f5;
}

.ht-kpi-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin: 0;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-kpi-card__icon svg {
  width: 18px;
  height: 18px;
}

.ht-kpi-card__value {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  line-height: 1.2;
  margin-bottom: 4px;
}

.ht-kpi-card.is-counting {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.1);
}

.ht-kpi-card__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--ht-text-muted);
}

.ht-card-link {
  color: inherit;
  text-decoration: none !important;
  cursor: pointer;
}

.ht-card-link:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 3px;
}

/* ==========================================================================
   3. EXPLORE PRODUCTS
   ========================================================================== */
.ht-products {
  background: var(--ht-section-bg);
  padding-bottom: 84px;
}

.ht-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ht-product-card {
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ht-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ht-shadow-md);
  border-color: #cbd5e1;
}

.ht-product-card__thumb {
  background: #f1f5f9;
  padding: 24px;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-product-card__thumb img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ht-product-card:hover .ht-product-card__thumb img {
  transform: scale(1.05);
}

.ht-product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ht-product-card__title {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0 0 6px;
}

.ht-product-card__desc {
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  line-height: 1.4;
  margin: 0 0 14px;
  min-height: 32px;
}

.ht-product-card__specs {
  background: #f8fafc;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-sm);
  padding: 10px 12px;
  margin-bottom: 16px;
  margin-top: auto;
}

.ht-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-base);
  color: var(--ht-text-main);
  margin-bottom: 4px;
}

.ht-spec-sub {
  display: flex;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--ht-text-muted);
}

/* ==========================================================================
   4. BUY DIRECT & CORPORATE IDENTITY
   ========================================================================== */
.ht-direct-identity {
  background: #ffffff;
}

.ht-direct-identity__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
}

.ht-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ht-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.ht-feature-card:hover {
  border-color: #94a3b8;
}

.ht-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ht-feature-icon svg {
  width: 18px;
  height: 18px;
}

.ht-feature-card h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0 0 2px;
}

.ht-feature-card p {
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  margin: 0;
}

/* Corporate Identity Card */
.ht-identity-card {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: var(--ht-radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: var(--ht-shadow-md);
  border: 1px solid #1e293b;
}

.ht-identity-card__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  margin: 0 0 20px;
  color: #ffffff;
}

.ht-identity-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ht-identity-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.ht-check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
  margin-top: 2px;
}

.ht-identity-list strong {
  display: block;
  font-size: var(--text-base);
  color: #ffffff;
}

.ht-identity-list span {
  display: block;
  font-size: var(--text-sm);
  color: #94a3b8;
}

.ht-identity-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ht-identity-trust-text {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: #38bdf8;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   5. WHAT WE ENGINEER
   ========================================================================== */
.ht-engineer {
  background: var(--ht-section-bg);
}

.ht-engineer__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.ht-chip-card {
  background: #091322;
  border: 1px solid #1e293b;
  border-radius: var(--ht-radius-lg);
  overflow: hidden;
  box-shadow: var(--ht-shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-chip-card img {
  width: 100%;
  height: auto;
  display: block;
}

.ht-engineer__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ht-eng-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ht-eng-card:hover {
  transform: translateY(-2px);
  border-color: #94a3b8;
}

.ht-eng-card--full {
  grid-column: 1 / -1;
}

.ht-eng-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ht-eng-card__icon svg {
  width: 17px;
  height: 17px;
}

.ht-eng-card h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0 0 2px;
}

.ht-eng-card p {
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  margin: 0;
}

/* ==========================================================================
   6. INTELLIGENT MINING process technology (Dark High-Tech Section)
   ========================================================================== */
.ht-arch {
  position: relative;
  overflow: hidden;
  background-color: #06070a;
  background-image: 
    linear-gradient(180deg, #06070a 0%, rgba(6, 7, 10, 0.9) 15%, rgba(6, 7, 10, 0.84) 50%, rgba(6, 7, 10, 0.92) 85%, #06070a 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(14, 165, 233, 0.07) 0%, transparent 70%),
    url('../images/tech/arch-bg.jpg');
  background-position: center center;
  background-size: 100% 100%, 100% 100%, cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 80px 0 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Disabled old dot texture */
.ht-arch::before {
  display: none;
}

/* Top Laser Glowing Accent Bar */
.ht-arch::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(840px, 85%);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.9), rgba(14, 165, 233, 0.8), transparent);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5), 0 0 6px rgba(56, 189, 248, 0.8);
  pointer-events: none;
}

.ht-section-header--light h2 {
  color: #ffffff;
  font-size: var(--text-3xl);
  font-weight: var(--fw-semibold);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.ht-section-header--light p {
  color: #94a3b8;
  font-size: var(--text-md);
  margin: 0;
}

/* Full Width process technology Section Header & Prose */
.ht-arch-header-full {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 40px !important;
  text-align: left;
}

.ht-arch-header-full h2,
.ht-arch-title {
  font-size: clamp(1.75rem, 2.6vw, 2.35rem) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
  text-align: center;
  margin-bottom: 24px;
}

.ht-arch-prose {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ht-arch-prose p {
  color: #94a3b8 !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  margin: 0 !important;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* Top Subsystems 4-Card Grid */
.ht-eng-subsystems {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 44px;
}

.ht-eng-card--dark {
  background: rgba(10, 12, 16, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 12px !important;
  padding: 18px 16px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ht-eng-card--dark:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
  background: rgba(16, 20, 28, 0.95) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.ht-eng-card--dark h4 {
  font-size: var(--text-base) !important;
  font-weight: var(--fw-semibold) !important;
  color: #ffffff !important;
  margin: 0 0 4px !important;
}

.ht-eng-card--dark p {
  font-size: 0.82rem !important;
  color: #94a3b8 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Icon badge styling */
.ht-eng-card__icon.ht-icon-blue {
  background: rgba(255, 255, 255, 0.05);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25);
}
.ht-eng-card__icon.ht-icon-teal {
  background: rgba(255, 255, 255, 0.05);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.25);
}
.ht-eng-card__icon.ht-icon-cyan {
  background: rgba(255, 255, 255, 0.05);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.25);
}
.ht-eng-card__icon.ht-icon-sky {
  background: rgba(255, 255, 255, 0.05);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

/* process technology Diagram */
.ht-arch-diagram {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 44px;
}

.ht-arch-inputs,
.ht-arch-outputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ht-arch-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: #f1f5f9;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ht-arch-inputs .ht-arch-pill:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(16, 20, 28, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
  transform: translateX(5px);
}

.ht-arch-outputs .ht-arch-pill:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(16, 20, 28, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
  transform: translateX(-5px);
}

.ht-arch-pill svg {
  width: 17px;
  height: 17px;
  color: #38bdf8;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.4));
}

.ht-arch-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ht-ai-module {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-ai-module__glow {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 65%);
  filter: blur(14px);
  animation: ht-pulse-glow 3.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.ht-ai-module__ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
  animation: ht-spin 30s linear infinite;
}

.ht-ai-module__ring-inner {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px dotted rgba(255, 255, 255, 0.2);
  animation: ht-spin-reverse 20s linear infinite;
}

.ht-ai-module__core {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #18202f 0%, #0d121c 45%, #06080c 80%, #020305 100%);
  border: 2px solid rgba(56, 189, 248, 0.75);
  box-shadow: 
    0 0 35px rgba(56, 189, 248, 0.3),
    inset 0 0 25px rgba(0, 0, 0, 0.9),
    inset 0 2px 4px rgba(255, 255, 255, 0.25),
    0 16px 36px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  z-index: 2;
  overflow: hidden;
}

/* Glass specular reflection across the top half */
.ht-ai-module__core::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 80%, transparent 100%);
  border-radius: 172px 172px 0 0;
  pointer-events: none;
}

.ht-ai-module__chip-icon {
  color: #e0f2fe;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.95));
  margin-bottom: 6px;
  line-height: 1;
}

.ht-ai-module__chip-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.ht-ai-module__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ht-ai-line1 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7dd3fc;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8);
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
}

.ht-ai-line2 {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 20px rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 1.15;
}

@keyframes ht-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ht-spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes ht-pulse-glow {
  from { transform: scale(0.95); opacity: 0.55; }
  to { transform: scale(1.08); opacity: 1; }
}

/* Bottom KPI Row */
.ht-arch-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ht-arch-kpi {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ht-arch-kpi__icon {
  font-size: var(--text-xl);
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.4));
}

.ht-arch-kpi strong {
  display: block;
  font-size: var(--text-base);
  color: #ffffff;
  font-weight: var(--fw-semibold);
}

.ht-arch-kpi span {
  display: block;
  font-size: var(--text-sm);
  color: #94a3b8;
}

.ht-arch-tag {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: #38bdf8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  padding: 7px 16px;
  border-radius: 20px;
}

/* ==========================================================================
   6B. 3nm ASIC Technology (White Showcase Section)
   ========================================================================== */
.ht-chip-tech {
  background: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ht-chip-tech__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 52px;
}

.ht-chip-tech__content {
  display: flex;
  flex-direction: column;
}

.ht-chip-tech__header {
  margin-bottom: 18px;
}

.ht-chip-tech__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary, #0284c7);
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ht-chip-tech__title {
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin: 0;
}

.ht-chip-tech__desc p {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 28px;
}

.ht-chip-tech__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ht-chip-tech__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ht-chip-tech__highlight-item:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.ht-chip-tech__highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--brand-primary, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ht-chip-tech__highlight-icon svg {
  width: 18px;
  height: 18px;
}

.ht-chip-tech__highlight-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.ht-chip-tech__highlight-item span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

.ht-chip-tech__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-chip-tech__img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #ffffff;
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.ht-chip-tech__img-wrap:hover {
  transform: translateY(-4px);
}

.ht-chip-tech__img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 16px 32px rgba(15, 23, 42, 0.12));
}

/* Mobile & Tablet Responsiveness: Title -> Image -> Content */
@media (max-width: 991px) {
  .ht-chip-tech {
    padding: 52px 0;
  }

  .ht-chip-tech__grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .ht-chip-tech__content {
    display: contents;
  }

  .ht-chip-tech__header {
    order: 1;
    text-align: left;
    margin-bottom: 8px;
  }

  .ht-chip-tech__badge {
    margin-left: 0;
    margin-right: auto;
  }

  .ht-chip-tech__title {
    text-align: left;
  }

  .ht-chip-tech__media {
    order: 2;
    width: 100%;
  }

  .ht-chip-tech__img-wrap {
    max-width: 440px;
    margin: 0 auto;
    padding: 4px;
  }

  .ht-chip-tech__desc {
    order: 3;
    width: 100%;
  }

  .ht-chip-tech__desc p {
    text-align: left;
    margin-bottom: 22px;
  }

  .ht-chip-tech__highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   6C. CUSTOM MINING SOLUTIONS (Dark Technical Showcase Section - Image Left)
   ========================================================================== */
.ht-custom-mining {
  position: relative;
  overflow: hidden;
  background-color: #06070a;
  background-image: 
    linear-gradient(180deg, #06070a 0%, rgba(6, 7, 10, 0.88) 15%, rgba(6, 7, 10, 0.82) 50%, rgba(6, 7, 10, 0.9) 85%, #06070a 100%),
    radial-gradient(ellipse 90% 70% at 25% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 70%),
    url('../images/tech/opt-tech-bg.jpg');
  background-position: center center;
  background-size: 100% 100%, 100% 100%, cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-custom-mining__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.ht-custom-mining__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-custom-mining__img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 0.3s ease;
}

.ht-custom-mining__img-wrap:hover {
  transform: translateY(-4px);
}

.ht-custom-mining__img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(2, 132, 199, 0.2));
}

.ht-custom-mining__content {
  display: flex;
  flex-direction: column;
}

.ht-custom-mining__header {
  margin-bottom: 18px;
}

.ht-custom-mining__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ht-custom-mining__title {
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin: 0;
}

.ht-custom-mining__desc p {
  font-size: 1.02rem;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0 0 16px;
}

.ht-custom-mining__desc p:last-of-type {
  margin-bottom: 0;
}

.ht-custom-mining__slogan {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-inline-start: 3px solid var(--brand-primary, #0284c7);
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  margin: 20px 0 28px;
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
}

.ht-custom-mining__slogan svg {
  width: 20px;
  height: 20px;
  color: #38bdf8;
  flex-shrink: 0;
}

.ht-custom-mining__cta .ht-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand-primary, #0284c7);
  color: #ffffff !important;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--ht-radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

.ht-custom-mining__cta .ht-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  color: #ffffff !important;
}

.ht-custom-mining__cta .ht-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.ht-custom-mining__cta .ht-btn:hover svg {
  transform: translateX(3px);
}

/* Mobile Responsiveness: Title -> Image -> Content -> Button */
@media (max-width: 991px) {
  .ht-custom-mining {
    padding: 52px 0;
  }

  .ht-custom-mining__grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .ht-custom-mining__content {
    display: contents;
  }

  .ht-custom-mining__header {
    order: 1;
    text-align: left;
    margin-bottom: 8px;
  }

  .ht-custom-mining__badge {
    margin-left: 0;
    margin-right: auto;
  }

  .ht-custom-mining__title {
    text-align: left;
  }

  .ht-custom-mining__media {
    order: 2;
    width: 100%;
  }

  .ht-custom-mining__img-wrap {
    max-width: 440px;
    margin: 0 auto;
    padding: 4px;
  }

  .ht-custom-mining__desc {
    order: 3;
    width: 100%;
  }

  .ht-custom-mining__desc p {
    text-align: left;
  }

  .ht-custom-mining__slogan {
    text-align: left;
    justify-content: flex-start;
    border-left: 3px solid var(--brand-primary, #0284c7);
    border-top: none;
    border-radius: 0 10px 10px 0;
    margin: 18px 0 20px;
  }

  .ht-custom-mining__cta {
    order: 4;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 4px;
  }

  .ht-custom-mining__cta .ht-btn {
    width: auto;
    max-width: none;
  }
}



/* ==========================================================================
   7. MANUFACTURING & QUALITY CONTROL
   ========================================================================== */
.ht-qc {
  background: #ffffff;
}

.ht-qc-steps-wrap {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.ht-qc-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 850px;
  position: relative;
}

.ht-qc-steps::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--ht-border);
  z-index: 0;
}

.ht-qc-steps li {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ht-qc-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ht-primary);
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  box-shadow: 0 0 0 4px #ffffff;
  margin-bottom: 8px;
}

.ht-qc-steps li label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  line-height: 1.2;
}

.ht-qc-detail__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.ht-qc-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ht-qc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-sm);
  background: var(--ht-section-bg);
}

.ht-qc-item__icon {
  font-size: var(--text-md);
  line-height: 1;
}

.ht-qc-item h4 {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0 0 2px;
}

.ht-qc-item p {
  font-size: var(--text-xs);
  color: var(--ht-text-muted);
  margin: 0;
}

.ht-qc-lab-card {
  position: relative;
  border-radius: var(--ht-radius-md);
  overflow: hidden;
  box-shadow: var(--ht-shadow-md);
  height: 100%;
  min-height: 240px;
}

.ht-qc-lab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ht-qc-lab-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,19,34,0.3) 0%, rgba(9,19,34,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}

.ht-qc-lab-card__overlay strong {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: #38bdf8;
}

.ht-qc-lab-card__overlay span {
  font-size: var(--text-sm);
  color: #e2e8f0;
}

.ht-qc-lab-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  margin: 8px 0;
}

/* ==========================================================================
   8. INSIDE THE BRAND & FULL TRACEABILITY
   ========================================================================== */
.ht-inside-trace {
  background: var(--ht-section-bg);
}

.ht-inside-trace__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.ht-inside-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.ht-inside-thumb {
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-sm);
  overflow: hidden;
}

.ht-inside-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.ht-inside-thumb div {
  padding: 8px 10px;
}

.ht-inside-thumb h4 {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  margin: 0 0 2px;
  color: var(--ht-text-main);
}

.ht-inside-thumb p {
  font-size: var(--text-xs);
  color: var(--ht-text-muted);
  margin: 0;
}

/* Traceability 8-Step Flow */
.ht-trace-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ht-trace-step {
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-sm);
  padding: 12px 8px;
  text-align: center;
  transition: transform 0.2s ease;
}

.ht-trace-step:hover {
  transform: translateY(-2px);
  border-color: #94a3b8;
}

.ht-trace-circle {
  font-size: var(--text-xl);
  margin-bottom: 6px;
}

.ht-trace-step span {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  display: block;
  line-height: 1.2;
}

/* Unified Traceability Pipeline Card */
.ht-trace-card {
  background: var(--ht-section-bg);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ht-trace-card__header h4 {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0 0 4px;
}

.ht-trace-card__header p {
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  margin: 0;
}

.ht-trace-card__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

/* ==========================================================================
   9. THREE SERVICES
   ========================================================================== */
.ht-services {
  background: #ffffff;
  padding-bottom: 84px;
}

.ht-services__header {
  text-align: center;
  margin-bottom: 40px;
}

.ht-services__title {
  font-size: clamp(1.75rem, 2.6vw, 2.35rem) !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
  text-align: center;
  margin: 0;
}

.ht-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ht-services__grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ht-services__grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ht-services__grid--cols-1 {
  grid-template-columns: 1fr;
  max-width: 100%;
}

.ht-service-card {
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ht-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ht-shadow-md);
  border-color: #cbd5e1;
}

.ht-service-card--link {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

.ht-service-card--link:nth-child(1) {
  background: linear-gradient(145deg, #f8fcff 0%, #eef8ff 100%);
  border-color: #cfe8f8;
}

.ht-service-card--link:nth-child(2) {
  background: linear-gradient(145deg, #f8fffd 0%, #edfdf8 100%);
  border-color: #ccefe4;
}

.ht-service-card--link:hover {
  transform: translateY(-4px);
  border-color: var(--ht-primary);
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.14);
}

.ht-service-card--link:hover .ht-btn {
  background: #0284c7;
  color: #ffffff;
}

.ht-service-card__header {
  margin-bottom: 16px;
}

.ht-service-card__header p {
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  margin: 4px 0 0;
  min-height: 38px;
  line-height: 1.4;
}

/* Service Card Body (Side-by-Side Image + Checklist) */
.ht-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ht-service-card__media {
  flex: none;
  width: 100%;
  border-radius: var(--ht-radius-sm);
  overflow: hidden;
  height: 160px;
  background: #f1f5f9;
}

.ht-services__grid--cols-2 .ht-service-card__media {
  flex: none;
  width: 100%;
  height: 180px;
}

.ht-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ht-service-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.ht-service-checklist li {
  font-size: 0.77rem;
  line-height: 1.3;
  color: var(--ht-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ht-services__grid--cols-2 .ht-service-checklist li {
  font-size: var(--text-base);
}

.ht-check-dot {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ht-check-dot svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Commercial Deployments Card */
.ht-commercial-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ht-comm-block {
  padding: 10px;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-sm);
  background: var(--ht-section-bg);
}

.ht-comm-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.ht-comm-icon svg {
  width: 14px;
  height: 14px;
}

.ht-comm-block h4 {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  margin: 0 0 2px;
  color: var(--ht-text-main);
}

.ht-comm-block p {
  font-size: var(--text-xs);
  color: var(--ht-text-muted);
  margin: 0;
}

/* 1 Column Commercial Card Modifier (Wide Banner) */
.ht-services__grid--cols-1 .ht-service-card--commercial {
  padding: 30px;
}

.ht-services__grid--cols-1 .ht-commercial-blocks {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.ht-services__grid--cols-1 .ht-service-card--commercial .ht-btn {
  max-width: 280px;
  align-self: flex-start;
}

/* ==========================================================================
   10. DISTRIBUTOR NETWORK & Global Warehouse Network
   ========================================================================== */
.ht-network-ops {
  background: var(--ht-section-bg);
}

.ht-network-ops__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.ht-distrib-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ht-distrib-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.ht-distrib-card:hover {
  transform: translateY(-2px);
  border-color: var(--ht-primary);
  box-shadow: var(--ht-shadow-sm);
}

.ht-distrib-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ht-distrib-card__icon svg {
  width: 22px;
  height: 22px;
}

.ht-distrib-card h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0 0 3px;
}

.ht-distrib-card p {
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  margin: 0;
}

.ht-arrow {
  margin-left: auto;
  font-size: var(--text-lg);
  color: var(--ht-primary);
}

/* Distributor Partner Onboarding 3-Step Card */
.ht-distrib-onboarding {
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 20px 22px;
  box-shadow: var(--ht-shadow-sm);
}

.ht-distrib-onboarding__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ht-border-subtle);
}

.ht-distrib-onboarding__header h5 {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0;
}

.ht-distrib-badge {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: #0284c7;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 3px 10px;
  border-radius: 9999px;
}

.ht-distrib-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ht-distrib-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ht-distrib-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--ht-primary);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ht-distrib-step__content h6 {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin: 0 0 2px;
}

.ht-distrib-step__content p {
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  margin: 0;
  line-height: 1.35;
}

/* World Map Card */
.ht-ops-map-card {
  background: #ffffff;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--ht-shadow-sm);
}

.ht-ops-map-wrap {
  width: 100%;
}

.ht-world-map-svg {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.ht-hub-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 14px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-sm);
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
}

.ht-hub-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
}

.ht-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0ea5e9;
}

.ht-dot-hq {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}

.ht-ops-stats-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: var(--ht-radius-sm);
  width: 100%;
}

.ht-ops-stats-num {
  font-size: var(--text-2xl);
  font-weight: var(--fw-semibold);
  color: #0369a1;
  line-height: 1.1;
}

.ht-ops-stats-lbl {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: #0f172a;
  margin-bottom: 0;
}

.ht-ops-quote-link {
  display: block;
  font-size: var(--text-sm);
  color: var(--ht-primary);
  margin-top: 10px;
  text-decoration: none;
  font-weight: var(--fw-semibold);
}

.ht-ops-quote-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   11. COMPACT WARRANTY & AFTER-SALES STRIP
   ========================================================================== */
.ht-warr-strip-section {
  padding: 28px 0;
  background: #ffffff;
}

.ht-warr-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 50%, #eff6ff 100%);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius-md);
  box-shadow: var(--ht-shadow-sm);
}

.ht-warr-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.ht-warr-strip__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ht-warr-strip__text strong {
  display: block;
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--ht-text-main);
  margin-bottom: 2px;
}

.ht-warr-strip__text span {
  display: block;
  font-size: var(--text-sm);
  color: var(--ht-text-muted);
  line-height: 1.35;
}

.ht-warr-strip__divider {
  width: 1px;
  height: 42px;
  background: var(--ht-border);
  flex-shrink: 0;
}

.ht-warr-strip__action {
  flex-shrink: 0;
}

.ht-warr-strip__action .ht-btn {
  white-space: nowrap;
  padding: 10px 20px;
  font-weight: var(--fw-semibold);
}

/* ==========================================================================
   12. OFFICIAL WEBSITE & ANTI-FRAUD SECURITY (LIVE CYBERSECURITY CARD)
   ========================================================================== */
.ht-security {
  background: #ffffff;
  padding: 56px 0;
}

.ht-security-card {
  position: relative;
  background-color: #040a16;
  background-image: 
    /* Security Glows: Emerald Trust (top-left) + Cyan Cryptographic (bottom-right) */
    radial-gradient(circle at 12% 18%, rgba(16, 185, 129, 0.16) 0%, rgba(5, 150, 105, 0.04) 40%, transparent 65%),
    radial-gradient(circle at 88% 75%, rgba(14, 165, 233, 0.18) 0%, rgba(56, 189, 248, 0.05) 35%, transparent 65%),
    radial-gradient(ellipse at 50% 10%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    /* Micro Security Mesh Grid (28px) */
    linear-gradient(to right, rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    /* Security Node Dots */
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.16) 1.2px, transparent 1.2px),
    /* Deep Obsidian & Cyber Slate Vault Base Gradient */
    linear-gradient(145deg, #030814 0%, #08162b 50%, #030813 100%);
  background-size: 
    100% 100%,
    100% 100%,
    100% 100%,
    28px 28px,
    28px 28px,
    28px 28px,
    100% 100%;
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: var(--ht-radius-lg);
  padding: 30px 34px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(1, 4, 14, 0.8), 0 0 35px rgba(14, 165, 233, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Dual Emerald-to-Cyan Glowing Security Laser Bar on Top Border */
.ht-security-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.85) 30%, rgba(56, 189, 248, 0.95) 70%, transparent);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.6), 0 0 6px rgba(16, 185, 129, 0.6);
  pointer-events: none;
  z-index: 2;
}

/* Subtle micro cyber tech grid */
.ht-security-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.ht-sec-ambient-glow {
  position: absolute !important;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ht-security-card > :not(.ht-sec-ambient-glow) {
  position: relative;
  z-index: 1;
}

/* Header Row: Brand Info on Left, CTA on Right */
.ht-sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ht-sec-header--active-mode {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* Security Warning Console (Scam Alert Active Mode) */
.ht-sec-alert-box {
  margin: 0 0 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(220, 38, 38, 0.08) 50%, rgba(15, 23, 42, 0.65) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 0 15px rgba(245, 158, 11, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ht-sec-alert-box__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.ht-sec-alert-box__icon svg {
  width: 18px;
  height: 18px;
}

.ht-sec-alert-box__content {
  flex: 1;
  font-size: var(--text-base);
  color: #f1f5f9;
  line-height: 1.55;
}

.ht-sec-alert-box__content strong {
  color: #fbbf24;
  font-weight: var(--fw-semibold);
}

.ht-sec-alert-box__content a {
  color: #38bdf8;
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.ht-sec-alert-box__content a:hover {
  color: #7dd3fc;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

/* Bottom Action Footer (Scam Alert Active Mode) */
.ht-sec-action-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ht-sec-header__action--inline {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.ht-sec-header__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.ht-security-shield {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(2, 132, 199, 0.1) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
}

.ht-shield-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 18px;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  animation: ht-shield-pulse-anim 3s ease-out infinite;
  pointer-events: none;
}

@keyframes ht-shield-pulse-anim {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.ht-security-shield svg {
  width: 28px;
  height: 28px;
  color: #38bdf8;
  filter: drop-shadow(0 2px 6px rgba(56, 189, 248, 0.6));
}

.ht-sec-header__info {
  flex: 1;
}

.ht-security-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 3px 10px;
  border-radius: 9999px;
}

.ht-live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  position: relative;
  flex-shrink: 0;
}

.ht-live-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #10b981;
  animation: ht-radar-pulse 2s ease-out infinite;
}

@keyframes ht-radar-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.ht-security-tag {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: #38bdf8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ht-sec-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  margin: 0 0 6px;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ht-sec-title u {
  text-decoration-color: #38bdf8;
  text-underline-offset: 3px;
  color: #ffffff;
}

.ht-sec-desc {
  font-size: var(--text-base);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.45;
  max-width: 680px;
}

.ht-sec-header__action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}

.ht-btn--cyber {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  padding: 11px 22px;
  border-radius: var(--ht-radius-sm);
  border: 1px solid #38bdf8;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ht-btn--cyber:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(14, 165, 233, 0.6);
  border-color: #7dd3fc;
}

.ht-sec-safe-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: #94a3b8;
}

.ht-sec-lock-icon {
  font-style: normal;
  font-size: var(--text-sm);
}

/* Symmetrical Panels Body */
.ht-sec-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ht-sec-panel {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ht-radius-md);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.ht-sec-panel--safe {
  border-top: 2.5px solid #10b981;
}

.ht-sec-panel--warn {
  border-top: 2.5px solid #ef4444;
}

.ht-sec-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-sec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ht-sec-dot--green {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.ht-sec-dot--red {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.ht-sec-panel__header h5 {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
}

.ht-sec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ht-sec-list li {
  font-size: var(--text-sm);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}

.ht-sec-list li strong {
  color: #ffffff;
  font-weight: var(--fw-semibold);
}

.ht-sec-icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.6);
  color: #34d399;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
}

.ht-sec-icon-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #f87171;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
}

/* ==========================================================================
   14. ABOUT BRAND & BOTTOM CTA
   ========================================================================== */
.ht-innovate {
  background: var(--ht-section-bg, #f8fafc);
  padding: 80px 0 96px;
  border-top: 1px solid var(--ht-border, #e2e8f0);
}

.ht-innovate__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}

.ht-innovate__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary, #0284c7);
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ht-innovate__title {
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.ht-innovate__lead {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.ht-innovate__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ht-innovate-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.ht-innovate-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.ht-innovate-card__thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.ht-innovate-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ht-innovate-card:hover .ht-innovate-card__thumb img {
  transform: scale(1.06);
}

.ht-innovate-card__body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ht-innovate-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.ht-innovate-card__icon svg {
  width: 22px;
  height: 22px;
}

.ht-innovate-card__icon.ht-icon--blue {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.ht-innovate-card__icon.ht-icon--teal {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.ht-innovate-card__icon.ht-icon--cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.ht-innovate-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}

.ht-innovate-card__desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .ht-innovate__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .ht-innovate {
    padding: 52px 0;
  }

  .ht-innovate__header {
    text-align: left;
    margin-bottom: 32px;
  }

  .ht-innovate__badge {
    margin-left: 0;
    margin-right: auto;
  }

  .ht-innovate__title {
    text-align: left;
  }

  .ht-innovate__lead {
    text-align: left;
  }

  .ht-innovate__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ht-innovate-card__thumb {
    height: 200px;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .ht-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ht-kpis__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ht-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ht-direct-identity__grid {
    grid-template-columns: 1fr;
  }
  .ht-engineer__grid {
    grid-template-columns: 1fr;
  }
  .ht-eng-subsystems {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ht-arch-diagram {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ht-services__grid {
    grid-template-columns: 1fr;
  }
  .ht-network-ops__grid {
    grid-template-columns: 1fr;
  }
  .ht-about-cta__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ht-hero {
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }
  .ht-hero__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .ht-hero__visual {
    order: -1 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .ht-hero__content {
    order: 2 !important;
    width: 100% !important;
  }
  .ht-hero__image-card {
    max-width: 380px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .ht-hero__product-img {
    max-height: 280px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6)) !important;
  }
  .ht-hero__title {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 8px !important;
  }
  .ht-hero__desc {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }
  .ht-hero__badges {
    gap: 6px 12px !important;
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }
  .ht-badge-item {
    font-size: 0.74rem !important;
  }
  .ht-badge-icon {
    width: 14px !important;
    height: 14px !important;
  }
  .ht-hero__timer {
    margin-top: 10px !important;
    margin-bottom: 14px !important;
  }
  .ht-hero__actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .ht-hero__actions .ht-btn {
    width: 100% !important;
    padding: 10px 6px !important;
    font-size: clamp(0.72rem, 3.2vw, 0.84rem) !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  /* Point 2 Mobile: Engineering Subsystems */
  .ht-eng-subsystems {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
  }

  /* Point 3: Vertical QC Timeline on Mobile */
  .ht-qc-steps-wrap {
    overflow-x: visible !important;
    padding-bottom: 0 !important;
    margin-bottom: 28px !important;
  }
  .ht-qc-steps {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    position: relative !important;
    padding-left: 10px !important;
  }
  .ht-qc-steps::before {
    top: 14px !important;
    bottom: 14px !important;
    left: 23px !important;
    right: auto !important;
    width: 2px !important;
    height: auto !important;
  }
  .ht-qc-steps li {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    text-align: left !important;
    width: 100% !important;
    z-index: 1 !important;
  }
  .ht-qc-steps li span {
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }
  .ht-qc-steps li label {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
    color: var(--ht-text-main) !important;
  }

  /* Compact Warranty Strip on Mobile */
  .ht-warr-strip {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    padding: 18px 20px !important;
  }
  .ht-warr-strip__divider {
    width: 100% !important;
    height: 1px !important;
  }
  .ht-warr-strip__action .ht-btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Anti-Fraud Security Card on Tablet & Mobile */
  .ht-security-card {
    padding: 24px 20px !important;
  }
  .ht-sec-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
  }
  .ht-sec-header__brand {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .ht-security-shield {
    width: 46px !important;
    height: 46px !important;
  }
  .ht-security-shield svg {
    width: 24px !important;
    height: 24px !important;
  }
  .ht-sec-title {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
  }
  .ht-sec-desc {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }
  .ht-sec-header__action {
    width: 100% !important;
    align-items: stretch !important;
  }
  .ht-btn--cyber {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 0.86rem !important;
    text-align: center !important;
  }
  .ht-sec-safe-tag {
    justify-content: center !important;
  }
  .ht-sec-body {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .ht-sec-panel {
    padding: 16px 18px !important;
  }
  .ht-sec-list li {
    font-size: 0.78rem !important;
  }
  .ht-sec-alert-box {
    padding: 14px 16px !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }
  .ht-sec-alert-box__content {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }
  .ht-sec-action-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }
  .ht-sec-action-footer .ht-sec-header__action--inline {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .ht-sec-action-footer .ht-btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Point 4: Final CTA on Mobile (100% Primary + Balanced Secondary Grid) */
  .ht-deployment-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .ht-deployment-buttons > .ht-btn--primary {
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 0.95rem !important;
    font-weight: var(--fw-semibold) !important;
    text-align: center !important;
  }
  .ht-deployment-sub-buttons {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .ht-deployment-sub-buttons .ht-btn {
    width: 100% !important;
    padding: 10px 6px !important;
    font-size: clamp(0.7rem, 2.5vw, 0.78rem) !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 640px) {
  .ht-hero__image-card {
    max-width: min(100%, 340px) !important;
  }
  .ht-hero__product-img {
    max-height: 220px !important;
  }
  .ht-container {
    padding: 0 16px;
  }
  .ht-section {
    padding: 44px 0;
  }
  .ht-products,
  .ht-innovate,
  .ht-services {
    padding-bottom: 64px !important;
  }
  .ht-warr-strip-section {
    padding: 20px 0;
  }
  .ht-kpis__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .ht-kpi-card {
    padding: 12px 9px;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 7px;
  }
  .ht-kpi-card__icon {
    width: 30px;
    height: 30px;
  }
  .ht-kpi-card__value {
    font-size: var(--text-base);
  }
  .ht-kpi-card__label {
    font-size: 0.67rem;
  }
  .ht-section-header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ht-btn--outline-sm {
    width: auto;
    white-space: nowrap;
  }
  .ht-products__grid {
    grid-template-columns: 1fr;
  }
  .ht-features-grid {
    grid-template-columns: 1fr;
  }
  .ht-engineer__cards {
    grid-template-columns: 1fr;
  }
  .ht-eng-subsystems {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 24px 0 32px !important;
  }
  .ht-arch {
    padding: 56px 0 !important;
  }
  .ht-arch-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    padding: 16px !important;
  }
  .ht-arch-tag {
    text-align: center !important;
  }
  .ht-qc-detail__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .ht-qc-lab-card {
    order: -1;
    width: 100%;
    min-height: 280px;
  }
  .ht-qc-item {
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 8px;
    text-align: center;
  }
  .ht-qc-item__icon {
    font-size: var(--text-xl);
  }
  .ht-qc-item h4 {
    margin-bottom: 3px;
    line-height: 1.25;
  }
  .ht-qc-item p {
    line-height: 1.3;
  }
  .ht-inside-trace__grid {
    grid-template-columns: 1fr;
  }
  .ht-inside-photos {
    grid-template-columns: 1fr;
  }
  .ht-inside-thumb img {
    height: 190px;
  }
  .ht-trace-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ht-services__header {
    margin-bottom: 24px !important;
  }
  .ht-service-card {
    padding: 20px;
  }
  .ht-service-card__header p {
    min-height: 0;
  }
  .ht-service-card__media,
  .ht-services__grid--cols-2 .ht-service-card__media {
    height: 200px;
  }
  .ht-service-checklist {
    gap: 9px;
  }
  .ht-service-checklist li {
    width: 100%;
    align-items: flex-start;
  }
  .ht-about-box {
    flex-direction: column;
    text-align: center;
  }
  .ht-about-thumb {
    width: 100%;
    height: 230px;
  }
  .ht-about-cta {
    padding: 36px 0 16px !important;
  }
  .ht-ops-map-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .ht-sec-header__brand {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .ht-security-status-badge {
    white-space: normal !important;
  }
  .ht-sec-list li {
    align-items: flex-start !important;
  }
  .ht-sec-icon-check,
  .ht-sec-icon-cross {
    margin-top: 2px !important;
  }
  .ht-deployment-sub-buttons {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}
