/* ═══════════════════════════════════════════════════════════
   ht-styles.css — Shared stylesheet for the /hometest ecosystem
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES (light default) ── */
:root {
  --ht-bg:       #ffffff;
  --ht-bg2:      #f9fafb;
  --ht-card:     #ffffff;
  --ht-el:       #f3f4f6;
  --ht-el2:      #e5e7eb;
  --ht-fg1:      #0b1220;
  --ht-fg2:      #1f2937;
  --ht-fg3:      #374151;
  --ht-fg4:      #4b5563;
  --ht-fg5:      #6b7280;
  --ht-b1:       rgba(0,0,0,.07);
  --ht-b2:       rgba(0,0,0,.12);
  --ht-b3:       rgba(0,0,0,.18);
  --ht-g:        #059669;
  --ht-g-hi:     #047857;
  --ht-g-fg:     #ffffff;
  --ht-g-sub:    rgba(5,150,105,.08);
  --ht-g-brd:    rgba(5,150,105,.22);
  --ht-g-glow:   rgba(5,150,105,.2);
  --ht-g-grid:   rgba(5,150,105,.05);
  --ht-radius:   12px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ht-bg:       #0a0c12;
    --ht-bg2:      #050709;
    --ht-card:     #0d1117;
    --ht-el:       #111827;
    --ht-el2:      #1f2937;
    --ht-fg1:      #f9fafb;
    --ht-fg2:      #e5e7eb;
    --ht-fg3:      #9ca3af;
    --ht-fg4:      #6b7280;
    --ht-fg5:      #4b5563;
    --ht-b1:       rgba(255,255,255,.06);
    --ht-b2:       rgba(255,255,255,.1);
    --ht-b3:       rgba(255,255,255,.15);
    --ht-g:        #34d399;
    --ht-g-hi:     #4ade80;
    --ht-g-fg:     #052e16;
    --ht-g-sub:    rgba(52,211,153,.12);
    --ht-g-brd:    rgba(52,211,153,.25);
    --ht-g-glow:   rgba(52,211,153,.35);
    --ht-g-grid:   rgba(52,211,153,.05);
  }
}

/* ── GLOBAL RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--ht-bg); color: var(--ht-fg1); }

/* ════════════════════════════════════════
   SERVICES DROPDOWN NAVIGATION
   ════════════════════════════════════════ */

.ht-nav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ht-nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ht-fg2);
  cursor: pointer;
  padding: 0;
  transition: color .15s;
  white-space: nowrap;
}

body.home-page-body .ht-nav-drop-btn {
  color: inherit;
}

.ht-nav-drop-btn svg {
  width: 12px;
  height: 12px;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.ht-nav-drop:hover .ht-nav-drop-btn,
.ht-nav-drop.is-open .ht-nav-drop-btn {
  color: var(--ht-fg1);
}

.ht-nav-drop:hover .ht-nav-drop-btn svg,
.ht-nav-drop.is-open .ht-nav-drop-btn svg {
  transform: rotate(180deg);
}

.ht-nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--ht-card);
  border: 1px solid var(--ht-b2);
  border-radius: 14px;
  padding: 6px;
  min-width: 230px;
  box-shadow: 0 16px 48px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index: 200;
  list-style: none;
  margin: 0;
}

.ht-nav-drop:hover .ht-nav-drop-menu,
.ht-nav-drop.is-open .ht-nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Small arrow notch */
.ht-nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--ht-card);
  border-top: 1px solid var(--ht-b2);
  border-left: 1px solid var(--ht-b2);
}

.ht-nav-drop-menu li { margin: 0; }

.ht-nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--ht-fg2);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.ht-nav-drop-menu a:hover {
  background: var(--ht-g-sub);
  color: var(--ht-g-hi);
}

.ht-drop-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ht-el);
  border: 1px solid var(--ht-b1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ht-g-hi);
  transition: background .15s, border-color .15s;
}

.ht-nav-drop-menu a:hover .ht-drop-icon {
  background: var(--ht-g-sub);
  border-color: var(--ht-g-brd);
}

.ht-drop-icon svg { width: 15px; height: 15px; }

.ht-drop-text { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.ht-drop-label { font-weight: 600; font-size: 13px; }
.ht-drop-desc { font-size: 11px; color: var(--ht-fg3); margin-top: 2px; }

/* Override the home-page-body topbar rule that forces all anchors to color:inherit
   (white on a black topbar). Dropdown menu links must always be dark on the white
   card — use !important to beat the styles.css specificity. */
.ht-nav-drop-menu a { color: #1f2937 !important; }
.ht-nav-drop-menu .ht-drop-desc { color: #374151 !important; }
@media (prefers-color-scheme: dark) {
  .ht-nav-drop-menu a { color: #e5e7eb !important; }
  .ht-nav-drop-menu .ht-drop-desc { color: #9ca3af !important; }
}

/* ── Mobile menu section labels ── */
.ht-mmenu-group {
  border-top: 1px solid var(--ht-b1);
  padding-top: 10px;
  margin-top: 6px;
}

.ht-mmenu-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ht-fg5);
  padding: 2px 8px 6px;
}

/* ════════════════════════════════════════
   SHARED PAGE COMPONENTS
   ════════════════════════════════════════ */

/* ── Buttons ── */
.ht-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--ht-g);
  color: var(--ht-g-fg);
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: filter .15s, transform .1s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.ht-btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

.ht-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1.5px solid var(--ht-b3);
  color: var(--ht-fg2);
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .15s, color .15s;
  background: transparent;
}
.ht-btn-ghost:hover { border-color: var(--ht-b2); color: var(--ht-fg1); }

/* ── Kicker label ── */
.ht-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ht-g-hi);
}
.ht-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ht-g);
  flex-shrink: 0;
  animation: ht-dot-pulse 2s ease-in-out infinite;
}
@keyframes ht-dot-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}

/* ── Section header ── */
.ht-sh {
  text-align: center;
  margin-bottom: 56px;
}
.ht-sh .ht-kicker { justify-content: center; margin-bottom: 12px; }
.ht-sh h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0 0 14px;
  line-height: 1.2;
}
.ht-sh p {
  font-size: 17px;
  color: var(--ht-fg4);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ════════════════════════════════════════
   SERVICE PAGE STYLES
   ════════════════════════════════════════ */

/* ── Service Hero ── */
.ht-svc-hero {
  background: var(--ht-bg);
  padding: 80px 64px 72px;
  border-bottom: 1px solid var(--ht-b1);
  position: relative;
  overflow: hidden;
}
.ht-svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ht-g-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--ht-g-grid) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.ht-svc-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ht-svc-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0;
  line-height: 1.1;
}
.ht-svc-hero h1 em {
  font-style: normal;
  color: var(--ht-g-hi);
}
.ht-svc-hero-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ht-fg3);
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}
.ht-svc-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── Breadcrumb ── */
.ht-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ht-fg5);
  margin-bottom: 20px;
}
.ht-breadcrumb a { color: var(--ht-fg4); text-decoration: none; }
.ht-breadcrumb a:hover { color: var(--ht-fg2); }
.ht-breadcrumb svg { width: 12px; height: 12px; flex-shrink: 0; }
.ht-breadcrumb span { color: var(--ht-fg2); }

/* ── Service content layout ── */
.ht-svc-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.ht-svc-main { display: flex; flex-direction: column; gap: 56px; }
.ht-svc-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* ── Rich text sections ── */
.ht-prose h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0 0 16px;
  line-height: 1.2;
}
.ht-prose h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ht-fg2);
  margin: 28px 0 10px;
}
.ht-prose p {
  font-size: 16px;
  color: var(--ht-fg3);
  line-height: 1.75;
  margin: 0 0 16px;
}
.ht-prose ul {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ht-prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ht-fg3);
  line-height: 1.6;
}
.ht-prose ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ht-g);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Highlight card inside prose ── */
.ht-highlight {
  background: var(--ht-g-sub);
  border: 1px solid var(--ht-g-brd);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 24px 0;
}
.ht-highlight-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--ht-g);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ht-g-fg);
}
.ht-highlight-icon svg { width: 18px; height: 18px; }
.ht-highlight-text p {
  margin: 0;
  font-size: 15px;
  color: var(--ht-fg2);
  line-height: 1.6;
}
.ht-highlight-text strong { color: var(--ht-g-hi); }

/* ── Use case grid ── */
.ht-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ht-usecase-card {
  background: var(--ht-card);
  border: 1px solid var(--ht-b1);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ht-usecase-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--ht-g-sub);
  border: 1px solid var(--ht-g-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-g-hi);
}
.ht-usecase-card-icon svg { width: 18px; height: 18px; }
.ht-usecase-card h3 { font-size: 15px; font-weight: 600; color: var(--ht-fg2); margin: 0; }
.ht-usecase-card p  { font-size: 13px; color: var(--ht-fg4); margin: 0; line-height: 1.5; }

/* ── Sidebar cards ── */
.ht-sidebar-card {
  background: var(--ht-card);
  border: 1px solid var(--ht-b1);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ht-sidebar-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ht-fg4);
}
.ht-sidebar-cta {
  background: var(--ht-g-sub);
  border: 1px solid var(--ht-g-brd);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}
.ht-sidebar-cta h3 { font-size: 17px; font-weight: 700; color: var(--ht-fg1); margin: 0; }
.ht-sidebar-cta p  { font-size: 14px; color: var(--ht-fg4); margin: 0; line-height: 1.55; }

/* ── Service CTA banner ── */
.ht-cta-band {
  background: var(--ht-bg2);
  border-top: 1px solid var(--ht-b1);
  border-bottom: 1px solid var(--ht-b1);
  padding: 72px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.ht-cta-band h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0;
  line-height: 1.2;
  max-width: 600px;
}
.ht-cta-band p {
  font-size: 17px;
  color: var(--ht-fg4);
  max-width: 480px;
  margin: 0;
  line-height: 1.6;
}
.ht-cta-band-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Related services strip ── */
.ht-related { background: var(--ht-bg); padding: 72px 64px; }
.ht-related-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.ht-related-card {
  background: var(--ht-card);
  border: 1px solid var(--ht-b1);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .15s, transform .15s;
}
.ht-related-card:hover { border-color: var(--ht-g-brd); transform: translateY(-2px); }
.ht-related-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ht-g-sub);
  border: 1px solid var(--ht-g-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-g-hi);
}
.ht-related-card-icon svg { width: 20px; height: 20px; }
.ht-related-card h3 { font-size: 16px; font-weight: 600; color: var(--ht-fg2); margin: 0; }
.ht-related-card p  { font-size: 13px; color: var(--ht-fg4); margin: 0; line-height: 1.5; }
.ht-related-card-arrow { margin-top: auto; color: var(--ht-g-hi); display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; }
.ht-related-card-arrow svg { width: 14px; height: 14px; }

/* ════════════════════════════════════════
   BLOG PAGE STYLES
   ════════════════════════════════════════ */

.ht-blog-hero {
  background: var(--ht-bg);
  padding: 72px 64px 60px;
  border-bottom: 1px solid var(--ht-b1);
  position: relative;
  overflow: hidden;
}
.ht-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ht-g-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--ht-g-grid) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.ht-blog-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ht-blog-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0;
  line-height: 1.15;
}
.ht-blog-hero p {
  font-size: 18px;
  color: var(--ht-fg4);
  max-width: 540px;
  margin: 0;
  line-height: 1.6;
}

.ht-blog-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 64px;
}

.ht-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ht-blog-featured {
  grid-column: 1 / -1;
}

.ht-post-card {
  background: var(--ht-card);
  border: 1px solid var(--ht-b1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .15s;
  text-decoration: none;
  color: inherit;
}
.ht-post-card:hover { border-color: var(--ht-g-brd); transform: translateY(-2px); }

.ht-post-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--ht-el);
}
.ht-blog-featured .ht-post-card-img { height: 340px; }

.ht-post-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.ht-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ht-post-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--ht-g-sub);
  color: var(--ht-g-hi);
  border: 1px solid var(--ht-g-brd);
}
.ht-post-date { font-size: 12px; color: var(--ht-fg5); }
.ht-post-readtime { font-size: 12px; color: var(--ht-fg5); }

.ht-post-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0;
  line-height: 1.3;
}
.ht-blog-featured .ht-post-card h2 { font-size: 26px; }

.ht-post-card p {
  font-size: 14px;
  color: var(--ht-fg4);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.ht-blog-featured .ht-post-card p { font-size: 16px; }

.ht-post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.ht-post-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ht-g-hi);
}
.ht-post-card-read svg { width: 14px; height: 14px; }

/* ── Blog post full article ── */
.ht-article-hero {
  background: var(--ht-bg);
  padding: 72px 64px 56px;
  border-bottom: 1px solid var(--ht-b1);
}
.ht-article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ht-article-hero h1 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0;
  line-height: 1.15;
}
.ht-article-hero p {
  font-size: 18px;
  color: var(--ht-fg3);
  line-height: 1.65;
  margin: 0;
}
.ht-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 64px;
}
.ht-article-body .ht-prose h2 { margin-top: 40px; }
.ht-article-body .ht-prose h2:first-child { margin-top: 0; }

/* ════════════════════════════════════════
   ABOUT PAGE STYLES
   ════════════════════════════════════════ */

.ht-about-hero {
  background: var(--ht-bg);
  padding: 80px 64px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ht-b1);
}
.ht-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ht-g-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--ht-g-grid) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.ht-about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ht-about-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0;
  line-height: 1.1;
}
.ht-about-hero h1 em { font-style: normal; color: var(--ht-g-hi); }
.ht-about-hero p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ht-fg3);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

.ht-about-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 64px;
}

.ht-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ht-about-split-copy { display: flex; flex-direction: column; gap: 20px; }
.ht-about-split-copy h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--ht-fg1);
  margin: 0;
  line-height: 1.2;
}
.ht-about-split-copy p {
  font-size: 16px;
  color: var(--ht-fg3);
  line-height: 1.75;
  margin: 0;
}

.ht-about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ht-stat-card {
  background: var(--ht-card);
  border: 1px solid var(--ht-b1);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ht-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--ht-g-hi);
  line-height: 1;
  letter-spacing: -.02em;
}
.ht-stat-label {
  font-size: 13px;
  color: var(--ht-fg4);
  line-height: 1.4;
}

.ht-about-values {
  background: var(--ht-bg2);
  border-top: 1px solid var(--ht-b1);
  border-bottom: 1px solid var(--ht-b1);
  padding: 80px 64px;
}
.ht-about-values-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.ht-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ht-value-card {
  background: var(--ht-card);
  border: 1px solid var(--ht-b1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ht-value-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ht-g-sub);
  border: 1px solid var(--ht-g-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-g-hi);
}
.ht-value-card-icon svg { width: 22px; height: 22px; }
.ht-value-card h3 { font-size: 17px; font-weight: 700; color: var(--ht-fg1); margin: 0; }
.ht-value-card p  { font-size: 14px; color: var(--ht-fg4); margin: 0; line-height: 1.65; }

.ht-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--ht-b1);
  border-radius: 14px;
  overflow: hidden;
}
.ht-process-step {
  background: var(--ht-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ht-process-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ht-g-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ht-g-hi);
}
.ht-process-step h3 { font-size: 16px; font-weight: 600; color: var(--ht-fg2); margin: 0; }
.ht-process-step p  { font-size: 13px; color: var(--ht-fg4); margin: 0; line-height: 1.55; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
  .ht-svc-body { grid-template-columns: 1fr; padding: 60px 40px; }
  .ht-svc-sidebar { grid-row: 1; grid-column: 1; display: grid; grid-template-columns: repeat(2, 1fr); }
  .ht-about-split { grid-template-columns: 1fr; gap: 40px; }
  .ht-value-grid { grid-template-columns: repeat(2, 1fr); }
  .ht-process-grid { grid-template-columns: repeat(2, 1fr); }
  .ht-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ht-svc-hero { padding: 56px 24px 48px; }
  .ht-svc-body { padding: 48px 24px; }
  .ht-usecase-grid { grid-template-columns: 1fr; }
  .ht-blog-hero { padding: 56px 24px 48px; }
  .ht-blog-body { padding: 48px 24px; }
  .ht-blog-grid { grid-template-columns: 1fr; }
  .ht-blog-featured { grid-column: 1; }
  .ht-article-body { padding: 40px 24px; }
  .ht-article-hero { padding: 48px 24px 40px; }
  .ht-about-hero { padding: 56px 24px 48px; }
  .ht-about-section { padding: 56px 24px; }
  .ht-about-values { padding: 56px 24px; }
  .ht-value-grid { grid-template-columns: 1fr; }
  .ht-process-grid { grid-template-columns: 1fr; }
  .ht-related { padding: 48px 24px; }
  .ht-related-grid { grid-template-columns: 1fr; }
  .ht-cta-band { padding: 56px 24px; }
  .ht-svc-sidebar { grid-template-columns: 1fr; }
  .ht-about-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ht-svc-hero-actions { flex-direction: column; align-items: flex-start; }
  .ht-cta-band-actions { flex-direction: column; align-items: center; width: 100%; }
  .ht-cta-band-actions .ht-btn-primary,
  .ht-cta-band-actions .ht-btn-ghost { width: 100%; justify-content: center; }
}
