/*=====================================================
  HIQBYTE — Design System
  Architecture-first engineering. Business-aware execution.

  Fonts:   Space Grotesk (display) · Inter (body) · JetBrains Mono (accents)
  Palette: Deep space base + indigo/teal intelligence accents
=====================================================*/

/*-----------------------------------------------------
  1. Tokens
-----------------------------------------------------*/
:root {
  /* Color */
  --hiq-bg-base:       #04050E;
  --hiq-bg-surface:    #080C1A;
  --hiq-bg-card:       #0D1224;
  --hiq-bg-card-hover: #111735;

  --hiq-accent-1:      #6366F1;  /* electric indigo — intelligence */
  --hiq-accent-2:      #05DAC3;  /* logo teal — data/bytes */
  --hiq-accent-glow:   rgba(99, 102, 241, 0.25);
  --hiq-teal-glow:     rgba(5, 218, 195, 0.18);

  --hiq-text-primary:  #F1F5F9;
  --hiq-text-muted:    #94A3B8;
  --hiq-text-faint:    #64748B;

  --hiq-border:        rgba(148, 163, 184, 0.10);
  --hiq-border-strong: rgba(148, 163, 184, 0.22);

  --hiq-gradient:      linear-gradient(135deg, #6366F1 0%, #05DAC3 100%);
  --hiq-gradient-soft: linear-gradient(135deg, rgba(99,102,241,.14) 0%, rgba(5,218,195,.10) 100%);

  /* Type */
  --hiq-ff-display: 'Space Grotesk', sans-serif;
  --hiq-ff-body:    'Inter', sans-serif;
  --hiq-ff-mono:    'JetBrains Mono', monospace;

  /* Rhythm */
  --hiq-section-pad: clamp(72px, 10vw, 130px);
  --hiq-container:   1200px;
  --hiq-radius:      16px;
  --hiq-radius-lg:   24px;

  /* Motion */
  --hiq-ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --hiq-speed:       0.45s;
}

/*-----------------------------------------------------
  2. Reset & base
-----------------------------------------------------*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--hiq-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--hiq-text-muted);
  background-color: var(--hiq-bg-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--hiq-accent-1); color: #fff; }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--hiq-speed) var(--hiq-ease); }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--hiq-ff-display);
  color: var(--hiq-text-primary);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--hiq-container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

/* Focus visibility — accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--hiq-accent-2);
  outline-offset: 3px;
}

/* Reduced motion — kill all animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*-----------------------------------------------------
  3. Shared atoms
-----------------------------------------------------*/

/* Mono section label — "// SERVICES" style */
.hiq-label {
  font-family: var(--hiq-ff-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hiq-accent-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hiq-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hiq-accent-2);
  display: inline-block;
}

.hiq-section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}
.hiq-section-title .grad {
  background: var(--hiq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hiq-section-sub {
  max-width: 560px;
  font-size: 17px;
  color: var(--hiq-text-muted);
}

.hiq-section-head { margin-bottom: clamp(40px, 6vw, 64px); }
.hiq-section-head.center { text-align: center; }
.hiq-section-head.center .hiq-section-sub { margin-inline: auto; }
.hiq-section-head.center .hiq-label::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--hiq-accent-2);
  display: inline-block;
}

/* Buttons */
.hiq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hiq-ff-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 32px;
  border-radius: 999px;
  transition: transform var(--hiq-speed) var(--hiq-ease), box-shadow var(--hiq-speed) var(--hiq-ease), background var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease), color var(--hiq-speed) var(--hiq-ease);
  will-change: transform;
}
.hiq-btn i { font-size: 13px; transition: transform var(--hiq-speed) var(--hiq-ease); }
.hiq-btn:hover i { transform: translateX(4px); }

.hiq-btn--primary {
  background: var(--hiq-gradient);
  color: #fff;
  box-shadow: 0 8px 32px var(--hiq-accent-glow);
}
.hiq-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(99, 102, 241, 0.45);
}

.hiq-btn--ghost {
  color: var(--hiq-text-primary);
  border: 1px solid var(--hiq-border-strong);
  background: rgba(148, 163, 184, 0.04);
}
.hiq-btn--ghost:hover {
  border-color: var(--hiq-accent-2);
  color: var(--hiq-accent-2);
  transform: translateY(-2px);
}

/* Scroll reveal primitives — JS adds .in-view.
   Hiding is scoped to html.hiq-js so content stays visible if JS never loads. */
.hiq-js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--hiq-ease), transform 0.8s var(--hiq-ease);
}
.hiq-js .reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/*-----------------------------------------------------
  4. Header
-----------------------------------------------------*/
.hiq-topbar {
  border-bottom: 1px solid var(--hiq-border);
  background: var(--hiq-bg-base);
  position: relative;
  z-index: 60;
}
.hiq-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  font-size: 13px;
  font-family: var(--hiq-ff-mono);
  color: var(--hiq-text-faint);
}
.hiq-topbar-inner i { color: var(--hiq-accent-2); margin-right: 7px; font-size: 12px; }
.hiq-topbar-social { display: flex; gap: 18px; }
.hiq-topbar-social a { color: var(--hiq-text-faint); font-size: 13px; }
.hiq-topbar-social a:hover { color: var(--hiq-accent-2); }

.hiq-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 5, 14, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hiq-border);
  transition: background var(--hiq-speed) var(--hiq-ease), box-shadow var(--hiq-speed) var(--hiq-ease);
}
.hiq-header.scrolled {
  background: rgba(4, 5, 14, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.hiq-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 32px;
}
.hiq-logo img { height: 40px; width: auto; }

.hiq-nav { display: flex; align-items: center; gap: 36px; }
.hiq-nav a {
  font-family: var(--hiq-ff-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--hiq-text-muted);
  position: relative;
  padding: 6px 0;
}
.hiq-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--hiq-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--hiq-speed) var(--hiq-ease);
}
.hiq-nav a:hover, .hiq-nav a.active { color: var(--hiq-text-primary); }
.hiq-nav a:hover::after, .hiq-nav a.active::after { transform: scaleX(1); }

.hiq-header-cta { display: flex; align-items: center; gap: 18px; }
.hiq-header-cta .hiq-btn { padding: 11px 26px; font-size: 14px; }

/* Hamburger */
.hiq-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hiq-burger span {
  width: 26px;
  height: 2px;
  background: var(--hiq-text-primary);
  border-radius: 2px;
  transition: transform var(--hiq-speed) var(--hiq-ease), opacity var(--hiq-speed) var(--hiq-ease);
}

/* Mobile drawer */
.hiq-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 85vw);
  background: var(--hiq-bg-surface);
  border-left: 1px solid var(--hiq-border);
  z-index: 100;
  padding: 32px 28px;
  transform: translateX(100%);
  transition: transform 0.5s var(--hiq-ease);
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}
.hiq-drawer.open { transform: translateX(0); }
.hiq-drawer-head { display: flex; justify-content: space-between; align-items: center; }
.hiq-drawer-head img { height: 34px; width: auto; }
.hiq-drawer-close { color: var(--hiq-text-muted); font-size: 20px; padding: 6px; }
.hiq-drawer-close:hover { color: var(--hiq-accent-2); }
.hiq-drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.hiq-drawer-nav a {
  font-family: var(--hiq-ff-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--hiq-text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--hiq-border);
}
.hiq-drawer-nav a:hover, .hiq-drawer-nav a.active { color: var(--hiq-accent-2); }
.hiq-drawer-contact { font-size: 14px; display: flex; flex-direction: column; gap: 10px; }
.hiq-drawer-contact a { color: var(--hiq-text-muted); }
.hiq-drawer-contact a:hover { color: var(--hiq-accent-2); }
.hiq-drawer-contact i { color: var(--hiq-accent-2); width: 20px; }

.hiq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 8, 0.7);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hiq-overlay.show { opacity: 1; pointer-events: auto; }

/*-----------------------------------------------------
  5. Hero
-----------------------------------------------------*/
.hiq-hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 12vh, 140px) 0;
}

#hiq-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* gradient glow floor */
.hiq-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -340px;
  transform: translateX(-50%);
  width: 1100px;
  height: 520px;
  background: radial-gradient(ellipse at center, var(--hiq-accent-glow) 0%, rgba(5,218,195,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hiq-hero-content { position: relative; z-index: 2; max-width: 820px; }

.hiq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--hiq-ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hiq-accent-2);
  border: 1px solid rgba(5, 218, 195, 0.25);
  background: rgba(5, 218, 195, 0.05);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: heroFade 0.9s var(--hiq-ease) both;
}
.hiq-hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hiq-accent-2);
  animation: pulse 2.2s ease-in-out infinite;
}

.hiq-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  margin-bottom: 26px;
  animation: heroFade 0.9s var(--hiq-ease) 0.15s both;
}
.hiq-hero-title .grad {
  background: var(--hiq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hiq-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 640px;
  margin-bottom: 40px;
  animation: heroFade 0.9s var(--hiq-ease) 0.3s both;
}

.hiq-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: heroFade 0.9s var(--hiq-ease) 0.45s both;
}

.hiq-hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--hiq-ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hiq-text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hiq-hero-scroll::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--hiq-accent-2), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.55); opacity: 0.5; }
}

/*-----------------------------------------------------
  6. Stats
-----------------------------------------------------*/
.hiq-stats { padding-bottom: var(--hiq-section-pad); }
.hiq-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  background: var(--hiq-bg-surface);
  overflow: hidden;
}
.hiq-stat {
  padding: 42px 28px;
  text-align: center;
  border-right: 1px solid var(--hiq-border);
  transition: background var(--hiq-speed) var(--hiq-ease);
}
.hiq-stat:last-child { border-right: none; }
.hiq-stat:hover { background: var(--hiq-bg-card); }
.hiq-stat-num {
  font-family: var(--hiq-ff-mono);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--hiq-text-primary);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.hiq-stat-num .suffix { color: var(--hiq-accent-2); }
.hiq-stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--hiq-text-faint);
}

/*-----------------------------------------------------
  7. About split
-----------------------------------------------------*/
.hiq-about { padding-block: var(--hiq-section-pad); }
.hiq-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hiq-about-visual { position: relative; }
.hiq-about-visual img {
  border-radius: var(--hiq-radius-lg);
  border: 1px solid var(--hiq-border);
  filter: saturate(0.85);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hiq-about-visual::before {
  content: "";
  position: absolute;
  inset: -22px auto auto -22px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--hiq-accent-1);
  border-left: 2px solid var(--hiq-accent-1);
  border-radius: 24px 0 0 0;
  opacity: 0.6;
}
.hiq-about-visual::after {
  content: "";
  position: absolute;
  inset: auto -22px -22px auto;
  width: 120px;
  height: 120px;
  border-bottom: 2px solid var(--hiq-accent-2);
  border-right: 2px solid var(--hiq-accent-2);
  border-radius: 0 0 24px 0;
  opacity: 0.6;
}

.hiq-about-text p { margin-bottom: 18px; }
.hiq-checks { margin: 28px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.hiq-checks li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--hiq-text-primary);
  font-size: 15.5px;
  font-weight: 500;
}
.hiq-checks li i {
  color: var(--hiq-accent-2);
  font-size: 14px;
  margin-top: 5px;
  flex-shrink: 0;
}

/*-----------------------------------------------------
  8. Process — How we work
-----------------------------------------------------*/
.hiq-process {
  padding-block: var(--hiq-section-pad);
  background: var(--hiq-bg-surface);
  border-block: 1px solid var(--hiq-border);
}
.hiq-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
}
/* connecting line */
.hiq-process-grid::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  border-top: 1px dashed var(--hiq-border-strong);
  z-index: 0;
}
.hiq-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.hiq-step-num {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hiq-ff-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--hiq-accent-2);
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border-strong);
  transition: transform var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease), box-shadow var(--hiq-speed) var(--hiq-ease);
}
.hiq-step:hover .hiq-step-num {
  transform: translateY(-5px) scale(1.06);
  border-color: var(--hiq-accent-2);
  box-shadow: 0 10px 30px var(--hiq-teal-glow);
}
.hiq-step h4 { font-size: 18px; margin-bottom: 8px; }
.hiq-step p { font-size: 13.5px; line-height: 1.6; color: var(--hiq-text-faint); }

/*-----------------------------------------------------
  9. Services — bento grid
-----------------------------------------------------*/
.hiq-services { padding-block: var(--hiq-section-pad); }
.hiq-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hiq-bento--four { grid-template-columns: repeat(4, 1fr); }
.hiq-card {
  position: relative;
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease), box-shadow var(--hiq-speed) var(--hiq-ease);
}
.hiq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hiq-gradient-soft);
  opacity: 0;
  transition: opacity var(--hiq-speed) var(--hiq-ease);
  pointer-events: none;
}
.hiq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--hiq-accent-glow);
}
.hiq-card:hover::before { opacity: 1; }
.hiq-card > * { position: relative; z-index: 1; }

.hiq-card--wide { grid-column: span 2; }

.hiq-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--hiq-accent-2);
  background: rgba(5, 218, 195, 0.08);
  border: 1px solid rgba(5, 218, 195, 0.18);
  margin-bottom: 24px;
}
.hiq-card h3 { font-size: 21px; margin-bottom: 12px; }
.hiq-card p { font-size: 14.5px; line-height: 1.65; }
.hiq-card-tag {
  font-family: var(--hiq-ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hiq-text-faint);
  display: block;
  margin-bottom: 14px;
}

/*-----------------------------------------------------
  10. CTA banner
-----------------------------------------------------*/
.hiq-cta { padding-block: clamp(40px, 6vw, 70px); }
.hiq-cta-box {
  position: relative;
  border-radius: var(--hiq-radius-lg);
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 120% at 20% 0%, rgba(99,102,241,0.35), transparent 55%),
    radial-gradient(ellipse 80% 120% at 80% 100%, rgba(5,218,195,0.28), transparent 55%),
    var(--hiq-bg-card);
  border: 1px solid var(--hiq-border-strong);
}
.hiq-cta-box h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 16px; }
.hiq-cta-box p { max-width: 520px; margin: 0 auto 34px; font-size: 16.5px; }

/*-----------------------------------------------------
  11. Portfolio cards
-----------------------------------------------------*/
.hiq-portfolio { padding-block: var(--hiq-section-pad); }
.hiq-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hiq-work-grid--two { grid-template-columns: repeat(2, 1fr); }

.hiq-work-card {
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  overflow: hidden;
  transition: transform var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease), box-shadow var(--hiq-speed) var(--hiq-ease);
}
.hiq-work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 218, 195, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.hiq-work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--hiq-bg-surface);
}
.hiq-work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--hiq-ease);
}
.hiq-work-card:hover .hiq-work-thumb img { transform: scale(1.05); }
.hiq-work-body { padding: 26px 26px 30px; }
.hiq-work-body .hiq-card-tag { margin-bottom: 10px; color: var(--hiq-accent-2); }
.hiq-work-body h3 { font-size: 20px; margin-bottom: 10px; }
.hiq-work-body p { font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.hiq-work-link {
  font-family: var(--hiq-ff-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--hiq-text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hiq-work-link i { font-size: 12px; transition: transform var(--hiq-speed) var(--hiq-ease); }
.hiq-work-link:hover { color: var(--hiq-accent-2); }
.hiq-work-link:hover i { transform: translateX(4px); }

/* Filter tabs (portfolio page) */
.hiq-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.hiq-filter-btn {
  font-family: var(--hiq-ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hiq-text-muted);
  border: 1px solid var(--hiq-border-strong);
  border-radius: 999px;
  padding: 9px 22px;
  transition: all var(--hiq-speed) var(--hiq-ease);
}
.hiq-filter-btn:hover { color: var(--hiq-accent-2); border-color: var(--hiq-accent-2); }
.hiq-filter-btn.active {
  background: var(--hiq-gradient);
  color: #fff;
  border-color: transparent;
}
.hiq-work-card.is-hidden { display: none; }

/*-----------------------------------------------------
  12. Testimonials
-----------------------------------------------------*/
.hiq-testimonials {
  padding-block: var(--hiq-section-pad);
  background: var(--hiq-bg-surface);
  border-block: 1px solid var(--hiq-border);
}
.hiq-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.hiq-quote-card {
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease);
}
.hiq-quote-card:hover { transform: translateY(-5px); border-color: rgba(99, 102, 241, 0.35); }
.hiq-quote-card .quote-mark {
  font-family: var(--hiq-ff-display);
  font-size: 48px;
  line-height: 1;
  color: var(--hiq-accent-1);
  opacity: 0.85;
}
.hiq-quote-card blockquote {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--hiq-text-primary);
  font-weight: 400;
}
.hiq-quote-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.hiq-quote-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--hiq-border-strong);
}
.hiq-quote-author strong {
  display: block;
  font-family: var(--hiq-ff-display);
  font-size: 15px;
  color: var(--hiq-text-primary);
}
.hiq-quote-author span { font-size: 13px; color: var(--hiq-text-faint); }

/*-----------------------------------------------------
  13. Footer
-----------------------------------------------------*/
.hiq-footer {
  border-top: 1px solid var(--hiq-border);
  background: var(--hiq-bg-surface);
  padding-top: clamp(56px, 8vw, 90px);
}
.hiq-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 6vw, 70px);
}
.hiq-footer-brand img { height: 38px; width: auto; margin-bottom: 18px; }
.hiq-footer-brand p {
  font-family: var(--hiq-ff-mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--hiq-text-faint);
  max-width: 280px;
}
.hiq-footer h4 {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--hiq-text-primary);
}
.hiq-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.hiq-footer-col a { font-size: 14.5px; color: var(--hiq-text-muted); }
.hiq-footer-col a:hover { color: var(--hiq-accent-2); }
.hiq-footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 14.5px; }
.hiq-footer-contact a { color: var(--hiq-text-muted); }
.hiq-footer-contact a:hover { color: var(--hiq-accent-2); }
.hiq-footer-contact i { color: var(--hiq-accent-2); width: 22px; }
.hiq-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.hiq-footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--hiq-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hiq-text-muted);
  font-size: 14px;
  transition: all var(--hiq-speed) var(--hiq-ease);
}
.hiq-footer-social a:hover {
  color: #fff;
  background: var(--hiq-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}
.hiq-footer-bottom {
  border-top: 1px solid var(--hiq-border);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--hiq-text-faint);
}
.hiq-footer-bottom .legal { display: flex; gap: 26px; }
.hiq-footer-bottom a { color: var(--hiq-text-faint); }
.hiq-footer-bottom a:hover { color: var(--hiq-accent-2); }
.hiq-footer-bottom .year { color: var(--hiq-accent-2); }

/*-----------------------------------------------------
  14. Inner page hero (breadcrumb)
-----------------------------------------------------*/
.hiq-page-hero {
  padding: clamp(70px, 10vw, 120px) 0 clamp(56px, 8vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hiq-border);
}
.hiq-page-hero::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(ellipse at center, var(--hiq-accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hiq-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
  position: relative;
}
.hiq-breadcrumb {
  font-family: var(--hiq-ff-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hiq-text-faint);
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.hiq-breadcrumb a { color: var(--hiq-text-faint); }
.hiq-breadcrumb a:hover { color: var(--hiq-accent-2); }
.hiq-breadcrumb .sep { color: var(--hiq-accent-1); }
.hiq-breadcrumb .current { color: var(--hiq-accent-2); }

/*-----------------------------------------------------
  15. Mission / Vision cards
-----------------------------------------------------*/
.hiq-mv { padding-block: var(--hiq-section-pad); }
.hiq-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.hiq-mv-card {
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: transform var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease);
}
.hiq-mv-card:hover { transform: translateY(-5px); border-color: rgba(99, 102, 241, 0.4); }
.hiq-mv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--hiq-gradient);
}
.hiq-mv-card h3 { font-size: 22px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.hiq-mv-card h3 i { color: var(--hiq-accent-2); font-size: 19px; }
.hiq-mv-card p { font-size: 16px; line-height: 1.75; color: var(--hiq-text-muted); }
.hiq-mv-card p em { color: var(--hiq-text-primary); font-style: normal; font-weight: 500; }

/*-----------------------------------------------------
  16. Team
-----------------------------------------------------*/
.hiq-team { padding-block: var(--hiq-section-pad); }
.hiq-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hiq-team-card {
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  padding: 34px 30px;
  text-align: center;
  transition: transform var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease);
}
.hiq-team-card:hover { transform: translateY(-5px); border-color: rgba(5, 218, 195, 0.35); }
.hiq-team-card .avatar {
  width: 92px; height: 92px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hiq-ff-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background: var(--hiq-gradient);
}
.hiq-team-card h4 { font-size: 18px; margin-bottom: 6px; }
.hiq-team-card .role {
  font-family: var(--hiq-ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hiq-accent-2);
  display: block;
  margin-bottom: 14px;
}
.hiq-team-card p { font-size: 14px; }

/*-----------------------------------------------------
  17. Contact page
-----------------------------------------------------*/
.hiq-contact { padding-block: var(--hiq-section-pad); }
.hiq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.hiq-contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 18px; }
.hiq-contact-info > p { margin-bottom: 36px; }

.hiq-contact-rows { display: flex; flex-direction: column; gap: 22px; margin-bottom: 38px; }
.hiq-contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hiq-contact-row .ic {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--hiq-accent-2);
  background: rgba(5, 218, 195, 0.08);
  border: 1px solid rgba(5, 218, 195, 0.18);
}
.hiq-contact-row span { display: block; font-size: 12.5px; font-family: var(--hiq-ff-mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--hiq-text-faint); }
.hiq-contact-row a, .hiq-contact-row strong {
  font-family: var(--hiq-ff-display);
  font-size: 16.5px;
  font-weight: 500;
  color: var(--hiq-text-primary);
}
.hiq-contact-row a:hover { color: var(--hiq-accent-2); }

.hiq-equity-note {
  border: 1px solid rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.06);
  border-radius: var(--hiq-radius);
  padding: 22px 24px;
  font-size: 14.5px;
  line-height: 1.7;
}
.hiq-equity-note strong { color: var(--hiq-text-primary); display: block; margin-bottom: 6px; font-family: var(--hiq-ff-display); }

.hiq-form-card {
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.hiq-form-card h3 { font-size: 22px; margin-bottom: 8px; }
.hiq-form-card > p { font-size: 14px; margin-bottom: 28px; }
.hiq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hiq-field { display: flex; flex-direction: column; gap: 8px; }
.hiq-field--full { grid-column: 1 / -1; }
.hiq-field label {
  font-family: var(--hiq-ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hiq-text-faint);
}
.hiq-field input,
.hiq-field select,
.hiq-field textarea {
  font-family: var(--hiq-ff-body);
  font-size: 15px;
  color: var(--hiq-text-primary);
  background: var(--hiq-bg-surface);
  border: 1px solid var(--hiq-border-strong);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color var(--hiq-speed) var(--hiq-ease), box-shadow var(--hiq-speed) var(--hiq-ease);
  width: 100%;
}
.hiq-field input::placeholder, .hiq-field textarea::placeholder { color: var(--hiq-text-faint); }
.hiq-field input:focus, .hiq-field select:focus, .hiq-field textarea:focus {
  outline: none;
  border-color: var(--hiq-accent-1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}
.hiq-field select { appearance: none; cursor: pointer; }
.hiq-field textarea { min-height: 140px; resize: vertical; }
.hiq-form-card .hiq-btn { margin-top: 24px; width: 100%; justify-content: center; }

/*-----------------------------------------------------
  17b. Comparison table — Typical Dev Team vs HiQByte
-----------------------------------------------------*/
.hiq-compare {
  border: 1px solid var(--hiq-border-strong);
  border-radius: var(--hiq-radius-lg);
  overflow: hidden;
  background: var(--hiq-bg-card);
}
.hiq-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--hiq-border);
}
.hiq-compare-row:last-child { border-bottom: none; }
.hiq-compare-row > div { padding: 20px 26px; font-size: 14.5px; }
.hiq-compare-row .dim {
  font-family: var(--hiq-ff-display);
  font-weight: 600;
  color: var(--hiq-text-primary);
  border-right: 1px solid var(--hiq-border);
}
.hiq-compare-row .them {
  color: var(--hiq-text-faint);
  border-right: 1px solid var(--hiq-border);
}
.hiq-compare-row .them i { color: #F43F5E; margin-right: 9px; font-size: 12px; }
.hiq-compare-row .us { color: var(--hiq-text-primary); background: rgba(5, 218, 195, 0.03); }
.hiq-compare-row .us i { color: var(--hiq-accent-2); margin-right: 9px; font-size: 12px; }
.hiq-compare-head .them, .hiq-compare-head .us, .hiq-compare-head .dim {
  font-family: var(--hiq-ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding-block: 16px;
}
.hiq-compare-head .them { color: var(--hiq-text-faint); }
.hiq-compare-head .us {
  background: var(--hiq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hiq-compare-tagline {
  text-align: center;
  margin-top: 28px;
  font-family: var(--hiq-ff-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--hiq-text-primary);
}
.hiq-compare-tagline .grad {
  background: var(--hiq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*-----------------------------------------------------
  17c. Service groups
-----------------------------------------------------*/
.hiq-group-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(36px, 5vw, 56px) 0 26px;
}
.hiq-group-head:first-of-type { margin-top: 0; }
.hiq-group-head h3 {
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--hiq-ff-mono);
  font-weight: 700;
  color: var(--hiq-accent-2);
  white-space: nowrap;
}
.hiq-group-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hiq-border-strong);
}

/*-----------------------------------------------------
  17d. Scenario cards — How We Think
-----------------------------------------------------*/
.hiq-scenarios { display: flex; flex-direction: column; gap: 26px; }
.hiq-scenario {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.1fr;
  gap: 0;
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius-lg);
  overflow: hidden;
  transition: transform var(--hiq-speed) var(--hiq-ease), border-color var(--hiq-speed) var(--hiq-ease);
}
.hiq-scenario:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.35); }
.hiq-scenario > div { padding: 30px 28px; }
.hiq-scenario > div + div { border-left: 1px solid var(--hiq-border); }
.hiq-scenario .k {
  font-family: var(--hiq-ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.hiq-scenario .scenario .k { color: var(--hiq-text-faint); }
.hiq-scenario .decision .k { color: var(--hiq-accent-1); }
.hiq-scenario .outcome .k { color: var(--hiq-accent-2); }
.hiq-scenario p { font-size: 14.5px; line-height: 1.65; }
.hiq-scenario .decision p {
  font-family: var(--hiq-ff-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--hiq-text-primary);
}
.hiq-scenario .outcome { background: rgba(5, 218, 195, 0.03); }

/*-----------------------------------------------------
  17e. Stack list (tech depth)
-----------------------------------------------------*/
.hiq-stack-list {
  font-family: var(--hiq-ff-mono);
  font-size: 13.5px;
  line-height: 2;
  color: var(--hiq-text-muted);
}
.hiq-stack-list .sep { color: var(--hiq-accent-1); margin: 0 4px; }

/*-----------------------------------------------------
  17f. Team profile cards (named leadership)
-----------------------------------------------------*/
.hiq-team-card--profile { text-align: left; }
.hiq-team-card--profile .avatar { margin: 0 0 20px; }
.hiq-team-card .avatar--photo { padding: 3px; }
.hiq-team-card .avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.hiq-team-card--profile .punch {
  font-family: var(--hiq-ff-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--hiq-text-primary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: block;
}
.hiq-team-card--profile p { margin-bottom: 18px; }
.hiq-team-highlights { display: flex; flex-direction: column; gap: 9px; }
.hiq-team-highlights li {
  font-family: var(--hiq-ff-mono);
  font-size: 12.5px;
  color: var(--hiq-text-muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hiq-team-highlights li::before {
  content: "▸";
  color: var(--hiq-accent-2);
  font-size: 11px;
}

/*-----------------------------------------------------
  17g. Narrative block + pull quote (approach page)
-----------------------------------------------------*/
.hiq-narrative { max-width: 760px; margin-inline: auto; }
.hiq-narrative-img {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  border-radius: var(--hiq-radius-lg);
  border: 1px solid var(--hiq-border);
  filter: saturate(0.9);
}
.hiq-narrative p { margin-bottom: 20px; font-size: 16.5px; line-height: 1.8; }
.hiq-narrative p strong { color: var(--hiq-text-primary); font-weight: 600; }
.hiq-pullquote {
  border-left: 3px solid;
  border-image: var(--hiq-gradient) 1;
  padding: 6px 0 6px 26px;
  margin: 34px 0;
  font-family: var(--hiq-ff-display);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 600;
  color: var(--hiq-text-primary);
  line-height: 1.45;
}
.hiq-premium-line {
  text-align: center;
  margin-top: 40px;
  font-family: var(--hiq-ff-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--hiq-text-muted);
}
.hiq-premium-line strong { color: var(--hiq-accent-2); font-weight: 500; }

/* Legal pages (privacy / terms) */
.hiq-legal { max-width: 760px; margin-inline: auto; }
.hiq-legal .effective {
  font-family: var(--hiq-ff-mono);
  font-size: 13px;
  color: var(--hiq-text-faint);
  margin-bottom: 32px;
}
.hiq-legal h2 {
  font-size: 21px;
  margin: 38px 0 14px;
}
.hiq-legal p { margin-bottom: 16px; font-size: 15.5px; line-height: 1.75; }
.hiq-legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--hiq-text-muted);
}
.hiq-legal li { margin-bottom: 8px; font-size: 15.5px; }
.hiq-legal a { color: var(--hiq-accent-2); }

/*-----------------------------------------------------
  17h. FAQ accordion (native details/summary)
-----------------------------------------------------*/
.hiq-faq {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hiq-faq details {
  background: var(--hiq-bg-card);
  border: 1px solid var(--hiq-border);
  border-radius: var(--hiq-radius);
  overflow: hidden;
  transition: border-color var(--hiq-speed) var(--hiq-ease);
}
.hiq-faq details[open] { border-color: rgba(99, 102, 241, 0.35); }
.hiq-faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--hiq-ff-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--hiq-text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.hiq-faq summary::-webkit-details-marker { display: none; }
.hiq-faq summary::after {
  content: "+";
  font-family: var(--hiq-ff-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--hiq-accent-2);
  flex-shrink: 0;
  transition: transform var(--hiq-speed) var(--hiq-ease);
}
.hiq-faq details[open] summary::after { transform: rotate(45deg); }
.hiq-faq .faq-a {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hiq-text-muted);
}

/*-----------------------------------------------------
  18. Back to top
-----------------------------------------------------*/
.hiq-top-btn {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--hiq-gradient);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px var(--hiq-accent-glow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity var(--hiq-speed) var(--hiq-ease), transform var(--hiq-speed) var(--hiq-ease);
}
.hiq-top-btn.show { opacity: 1; transform: none; pointer-events: auto; }
.hiq-top-btn:hover { transform: translateY(-3px); }

/*-----------------------------------------------------
  19. Responsive
-----------------------------------------------------*/
@media (max-width: 1024px) {
  .hiq-nav, .hiq-header-cta .hiq-btn { display: none; }
  .hiq-burger { display: flex; }

  .hiq-bento { grid-template-columns: 1fr 1fr; }
  .hiq-card--wide { grid-column: span 2; }

  .hiq-work-grid { grid-template-columns: repeat(2, 1fr); }
  .hiq-process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .hiq-process-grid::before { display: none; }
  .hiq-footer-grid { grid-template-columns: 1fr 1fr; }
  .hiq-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hiq-compare-row { grid-template-columns: 1fr; }
  .hiq-compare-row .dim, .hiq-compare-row .them { border-right: none; border-bottom: 1px solid var(--hiq-border); }
  .hiq-compare-head { display: none; }
  .hiq-compare-row .dim { padding-bottom: 10px; }
  .hiq-compare-row .them::before { content: "Typical dev team — "; font-family: var(--hiq-ff-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
  .hiq-compare-row .us::before { content: "HiQByte — "; font-family: var(--hiq-ff-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--hiq-accent-2); }

  .hiq-scenario { grid-template-columns: 1fr; }
  .hiq-scenario > div + div { border-left: none; border-top: 1px solid var(--hiq-border); }
}

@media (max-width: 768px) {
  .hiq-topbar-social { display: none; }
  .hiq-stats-grid { grid-template-columns: 1fr 1fr; }
  .hiq-stat { border-bottom: 1px solid var(--hiq-border); }
  .hiq-stat:nth-child(even) { border-right: none; }
  .hiq-stat:nth-child(n+3) { border-bottom: none; }

  .hiq-about-grid,
  .hiq-contact-grid,
  .hiq-mv-grid,
  .hiq-quote-grid { grid-template-columns: 1fr; }

  .hiq-about-visual { order: -1; }

  .hiq-bento { grid-template-columns: 1fr; }
  .hiq-card--wide { grid-column: span 1; }
  .hiq-work-grid, .hiq-work-grid--two { grid-template-columns: 1fr; }
  .hiq-process-grid { grid-template-columns: 1fr 1fr; }
  .hiq-team-grid { grid-template-columns: 1fr; }
  .hiq-form-grid { grid-template-columns: 1fr; }

  .hiq-hero { min-height: auto; }
  .hiq-hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hiq-process-grid { grid-template-columns: 1fr; }
  .hiq-stats-grid { grid-template-columns: 1fr; }
  .hiq-stat { border-right: none !important; border-bottom: 1px solid var(--hiq-border) !important; }
  .hiq-stat:last-child { border-bottom: none !important; }
  .hiq-footer-grid { grid-template-columns: 1fr; }
  .hiq-hero-actions .hiq-btn { width: 100%; justify-content: center; }
}
