
/* ResQForge Global Styles */
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background-color: #0a0a0a;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  font-family: 'Inter', system-ui, sans-serif;
}
a { transition: color 0.2s ease, background-color 0.2s ease; }
button { cursor: pointer; }
input, textarea {
  border-radius: 0.75rem;
  border: 1px solid #d4d4d4;
  padding: 0.5rem 1rem;
  outline: none;
}
input:focus, textarea:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.4);
}
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.header-fixed {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(10,10,10,0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.btn-primary {
  background-color: #ea580c;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background-color: #c2410c; }
.btn-outline {
  border: 1px solid #d4d4d4;
  color: #171717;
  background-color: #fff;
}
.btn-outline:hover {
  background-color: #fafafa;
}
footer {
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
footer a:hover { color: #fff; }
.stat-box {
  background-color: rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
}
.stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
}
/* CTA Floating Button */
.cta-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #ea580c;
  color: #fff;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}
.cta-float:hover {
  background-color: #c2410c;
}
/* Responsive Tweaks */
@media (max-width: 768px) {
  .section { padding-top: 2rem; padding-bottom: 2rem; }
}
