/* ========== HERO ========== */
.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-content { max-width: 750px; }

.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

.hero-stats {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  animation: fadeSlideLeft 1s ease 1s forwards;
}

.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px 32px;
  min-width: 220px;
  transition: all 0.3s ease;
}

.hero-stat:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.service-card:hover::before { height: 100%; }

.service-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-icon::before {
  content: '';
  width: 8px; height: 8px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========== THREAT BAR ========== */
.threat-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.threat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
}

.threat-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.threat-indicator.critical { background: var(--danger); box-shadow: 0 0 10px rgba(239,68,68,0.5); }
.threat-indicator.warning { background: var(--warning); box-shadow: 0 0 10px rgba(245,158,11,0.5); }
.threat-indicator.normal { background: var(--success); box-shadow: 0 0 10px rgba(34,197,94,0.5); }

/* ========== CLIENTS ========== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.client-card:hover { border-color: var(--border-hover); }

.client-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.client-card:hover .client-name { color: var(--accent); }
