/* ============================================================
   NOVA HOME — Videomart Broadcast
   Dark Tech Design System
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
.nova-home-body * { box-sizing: border-box; margin: 0; padding: 0; }
.nova-home-body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #060912;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
.nova-home-body a { text-decoration: none; color: inherit; }
.nova-home-body img { max-width: 100%; display: block; }

/* --- Design Tokens ----------------------------------------- */
:root {
  --bg:           #060912;
  --bg-alt:       #08010;
  --surface:      rgba(255,255,255,0.03);
  --surface-hover:rgba(255,255,255,0.06);
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(111,75,241,0.4);
  --accent:       #6f4bf1;
  --accent-light: #a78bfa;
  --accent-glow:  rgba(111,75,241,0.2);
  --cyan:         #38bdf8;
  --text:         #e2e8f0;
  --text-muted:   #64748b;
  --text-subtle:  #94a3b8;
  --radius:       14px;
  --radius-lg:    20px;
  --shadow-glow:  0 0 40px rgba(111,75,241,0.15);
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

/* --- Container --------------------------------------------- */
.nh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Animations -------------------------------------------- */
/* .nh-js adicionado pelo JS ao body — fallback: conteúdo sempre visível */
.nh-js [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.nh-js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="80"]  { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="160"] { transition-delay: 160ms; }
[data-delay="180"] { transition-delay: 180ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="240"] { transition-delay: 240ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="320"] { transition-delay: 320ms; }
[data-delay="360"] { transition-delay: 360ms; }
[data-delay="420"] { transition-delay: 420ms; }
[data-delay="450"] { transition-delay: 450ms; }

/* ============================================================
   HEADER
   ============================================================ */
.nh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nh-header.scrolled {
  background: rgba(6,9,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nh-logo { display: flex; align-items: center; }
.nh-logo-img { height: 40px; width: auto; }

.nh-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.nh-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nh-nav a {
  color: var(--text-subtle);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nh-nav a:hover { color: var(--text); background: var(--surface); }
.nh-nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px;
}
.nh-nav-cta:hover { opacity: .85; background: var(--accent) !important; }
.nh-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nh-menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.nh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.nh-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.nh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}
.nh-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(111,75,241,.35) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.nh-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,.2) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: blobFloat 15s ease-in-out infinite alternate-reverse;
}
.nh-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,.25) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: blobFloat 10s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.08); }
}
.nh-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.nh-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,75,241,.1);
  border: 1px solid rgba(111,75,241,.3);
  color: var(--accent-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.nh-badge-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .7; transform: scale(1.3); }
}
.nh-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.nh-gradient-text {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nh-hero-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.nh-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.nh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nh-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px rgba(111,75,241,.4);
}
.nh-btn-primary:hover {
  background: #7c5af5;
  box-shadow: 0 0 50px rgba(111,75,241,.6);
  transform: translateY(-2px);
  color: #fff;
}
.nh-btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.nh-btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.nh-btn-outline {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid var(--border-accent);
}
.nh-btn-outline:hover {
  background: rgba(111,75,241,.1);
  transform: translateY(-2px);
}

/* Hero Card */
.nh-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nh-hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-glow), 0 40px 80px rgba(0,0,0,.4);
  animation: floatCard 6s ease-in-out infinite alternate;
}
@keyframes floatCard {
  from { transform: translateY(0px); }
  to   { transform: translateY(-12px); }
}
.nh-hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.nh-traffic-lights { display: flex; gap: 6px; }
.nh-traffic-lights span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.nh-traffic-lights span:nth-child(1) { background: #ff5f57; }
.nh-traffic-lights span:nth-child(2) { background: #ffbd2e; }
.nh-traffic-lights span:nth-child(3) { background: #28c840; }
.nh-hero-card-title {
  font-size: .78rem;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.nh-hero-card-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; }
.nh-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--text-subtle);
}
.nh-status-row span:nth-child(2) { flex: 1; }
.nh-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nh-status-on {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
.nh-status-standby {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}
.nh-status-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--accent-light);
  background: rgba(111,75,241,.15);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(111,75,241,.2);
}
.nh-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.nh-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 3px;
  animation: progressAnim 3s ease-in-out infinite alternate;
}
@keyframes progressAnim {
  from { width: 55%; }
  to   { width: 78%; }
}
.nh-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.nh-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: .5;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.nh-section { padding: 100px 0; }
.nh-section--alt { background: rgba(255,255,255,.015); }
.nh-section--dark {
  background: linear-gradient(135deg, rgba(111,75,241,.08) 0%, rgba(56,189,248,.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nh-section-header { text-align: center; margin-bottom: 64px; }
.nh-section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(111,75,241,.1);
  border: 1px solid rgba(111,75,241,.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.nh-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.nh-section-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   TVPLAY GRID
   ============================================================ */
.nh-tvplay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.nh-tvplay-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nh-tvplay-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.nh-tvplay-card--featured {
  border-color: rgba(111,75,241,.5);
  background: linear-gradient(180deg, rgba(111,75,241,.08) 0%, rgba(111,75,241,.03) 100%);
}
.nh-tvplay-card--ai {
  border-color: rgba(56,189,248,.3);
  background: linear-gradient(180deg, rgba(56,189,248,.06) 0%, rgba(111,75,241,.04) 100%);
}
.nh-tvplay-featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 12px;
  border-radius: 100px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nh-tvplay-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: -4px;
}
.nh-tvplay-tier {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nh-tvplay-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.nh-tvplay-name span {
  color: var(--accent-light);
}
.nh-tvplay-desc {
  font-size: .83rem;
  color: var(--text-subtle);
  line-height: 1.6;
  flex: 1;
}
.nh-tvplay-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nh-tvplay-features li {
  font-size: .78rem;
  color: var(--text-subtle);
  padding-left: 14px;
  position: relative;
}
.nh-tvplay-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.nh-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.nh-card-link:hover { gap: 10px; color: var(--cyan); }
.nh-compare-link { text-align: center; }
.nh-compare-link a {
  font-size: .9rem;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(167,139,250,.3);
  padding-bottom: 2px;
  transition: var(--transition);
}
.nh-compare-link a:hover { color: var(--cyan); border-color: var(--cyan); }

/* ============================================================
   UTILITÁRIOS GRID
   ============================================================ */
.nh-utils-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.nh-util-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}
.nh-util-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(111,75,241,.1);
}
.nh-util-icon {
  width: 40px; height: 40px;
  color: var(--accent-light);
}
.nh-util-icon svg { width: 100%; height: 100%; }
.nh-util-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}
.nh-util-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.nh-utils-cta { text-align: center; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.nh-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nh-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.nh-service-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.nh-service-icon {
  width: 48px; height: 48px;
  color: var(--accent-light);
  margin-bottom: 20px;
  background: rgba(111,75,241,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.nh-service-icon svg { width: 100%; height: 100%; }
.nh-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.nh-service-card p {
  font-size: .875rem;
  color: var(--text-subtle);
  line-height: 1.7;
}

/* ============================================================
   NÚMEROS
   ============================================================ */
.nh-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  text-align: center;
}
.nh-number-item { position: relative; }
.nh-number-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  height: 60px; width: 1px;
  background: var(--border);
}
.nh-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}
.nh-number-suffix {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--accent-light);
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
  margin-bottom: 4px;
}
.nh-number-label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================================
   PARCEIROS
   ============================================================ */
.nh-partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 16px 0;
}
.nh-partner-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 32px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .04em;
  transition: var(--transition);
}
.nh-partner-item:hover {
  color: var(--text);
  border-color: var(--border-accent);
  background: var(--surface-hover);
}

/* ============================================================
   BLOG
   ============================================================ */
.nh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nh-blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.nh-blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.nh-blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, rgba(111,75,241,.3), rgba(56,189,248,.2));
  background-size: cover;
  background-position: center;
  position: relative;
}
.nh-blog-cat {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
}
.nh-blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.nh-blog-date { font-size: .75rem; color: var(--text-muted); }
.nh-blog-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}
.nh-blog-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-top: 8px;
}
.nh-blog-card:hover .nh-blog-link { color: var(--cyan); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.nh-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.nh-blob-cta1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(111,75,241,.3) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: blobFloat 10s ease-in-out infinite alternate;
}
.nh-blob-cta2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,.2) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  animation: blobFloat 14s ease-in-out infinite alternate-reverse;
}
.nh-cta-inner { position: relative; z-index: 1; }
.nh-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.nh-cta-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.nh-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.nh-cta-phone {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nh-footer {
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.nh-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 60px;
}
.nh-footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.nh-footer-brand p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.nh-footer-links {
  display: flex;
  gap: 60px;
}
.nh-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nh-footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.nh-footer-col a {
  font-size: .85rem;
  color: var(--text-subtle);
  transition: color var(--transition);
}
.nh-footer-col a:hover { color: var(--text); }
.nh-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.nh-footer-bottom .nh-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-muted);
}
.nh-footer-bottom a { transition: color var(--transition); }
.nh-footer-bottom a:hover { color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nh-tvplay-grid { grid-template-columns: repeat(3, 1fr); }
  .nh-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nh-hero-inner { grid-template-columns: 1fr; }
  .nh-hero-visual { display: none; }
  .nh-tvplay-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-utils-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .nh-number-item::after { display: none; }
  .nh-blog-grid { grid-template-columns: 1fr 1fr; }
  .nh-footer-inner { grid-template-columns: 1fr; }
  .nh-footer-links { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 640px) {
  .nh-section { padding: 72px 0; }
  .nh-tvplay-grid { grid-template-columns: 1fr; }
  .nh-utils-grid { grid-template-columns: 1fr 1fr; }
  .nh-services-grid { grid-template-columns: 1fr; }
  .nh-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-blog-grid { grid-template-columns: 1fr; }
  .nh-nav { display: none; }
  .nh-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,9,18,.97);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nh-menu-toggle { display: flex; }
  .nh-hero { padding: 100px 0 60px; }
  .nh-hero-ctas { flex-direction: column; }
  .nh-btn { justify-content: center; }
  .nh-footer-bottom .nh-container { flex-direction: column; gap: 8px; text-align: center; }
}
