/*
Theme Name: Northbeam Technologies
Theme URI: https://northbeam-tech.com
Author: Northbeam Technologies
Description: Lightweight company theme for Northbeam Technologies.
Version: 1.0.0
Text Domain: northbeam-technologies
*/

:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --primary: #2563eb;
  --card: #ffffff;
  --line: #e2e8f0;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container { width: min(1100px, 92%); margin: 0 auto; }
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo img { height: 44px; width: auto; }
nav a, .menu a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}
nav a:hover, nav a.active, .current-menu-item > a { color: var(--primary); }

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.hero { padding: 72px 0 44px; }
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
}
.hero p { color: var(--muted); font-size: 18px; max-width: 760px; }
.btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.metric {
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  padding: 16px;
}
.metric strong { display: block; font-size: 24px; }

section { padding: 36px 0; }
h1, h2, h3 { margin-top: 0; }
p, li { line-height: 1.65; }

.list-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.tag {
  font-size: 13px;
  background: #e0edff;
  color: #1e40af;
  border-radius: 999px;
  padding: 6px 10px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }

.cta {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 20px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

footer {
  margin-top: 36px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
