/* Global dark/navy and gold styling for WorkSpeaks™ */
:root {
  /* Primary brand colors */
  --ink: #051F3E; /* deep navy */
  --gold: #FFD700; /* warm metallic gold */
  --paper: #f7f4ef; /* light parchment for lighter sections */
  --line: #173c69; /* soft divider line on dark backgrounds */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: system-ui, Inter, Arial, sans-serif;
  background: var(--ink);
  color: #fff;
  line-height: 1.5;
}

a {
  color: var(--gold);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid var(--line);
}

header .bar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
}

header a.logo-name {
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
}

header nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
}

header nav a {
  color: var(--gold);
  font-weight: 600;
}

.logo img {
  height: 32px;
}

/* Hero section */
.hero {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  /* Dark overlay for background image */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 31, 62, 0.92);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--gold);
}

.hero p {
  font-size: 20px;
  margin-bottom: 24px;
  color: #e0e4ed;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  margin-right: 12px;
  transition: background 0.2s;
}

.btn:hover {
  background: #ffe37a;
}

.btn.secondary {
  background: #fff3b0;
  color: var(--ink);
}

/* Services section */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.services h2 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}

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

.service {
  background: #0c2a4e;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.service h3 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
}

.service p {
  color: #dcd8d1;
  font-size: 16px;
}

/* Trust markers section */
.trust {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.trust h2 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}

.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0;
}

.trust-list li {
  background: #0c2a4e;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  color: #dcd8d1;
  font-size: 16px;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

footer a {
  color: var(--gold);
}