:root {
  --bg: #0f0f10;
  --accent: #00a6ff;
  --muted: #cfcfcf;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial;
  background: var(--bg);
  color: var(--white);
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: #0b0b0c;
}

.logo {
  height: 40px;
}

.top-nav a {
  margin-left: 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
}

/* HERO */
.hero {
  position: relative;
  height: 72vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  left: 6%;
  top: 30%;
  max-width: 720px;
}

.hero-overlay h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 12px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--white);
  margin-right: 10px;
}

.btn.primary {
  background: var(--accent);
}

.btn.secondary {
  border: 1px solid var(--accent);
}

/* SECTIONS */
.section {
  padding: 48px 6%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.service {
  background: #111;
  padding: 18px;
  border-radius: 8px;
}

.why-list li {
  margin-bottom: 8px;
}

/* FORMS */
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input,
form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #1a1a1a;
  color: var(--white);
}

/* FOOTER */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #070707;
}

.portal-login {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

/* PORTAL PAGE */
.portal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0b0b0c;
}

.portal-container {
  text-align: center;
  max-width: 400px;
}

.portal-form input {
  width: 100%;
  margin-bottom: 12px;
}

.portal-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
