/* =========================
   Base / Reset
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b1220;
  color: #e5e7eb;
  line-height: 1.6;
}

/* =========================
   Layout
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.container.narrow {
  max-width: 760px;
}

.content-section {
  padding: 4rem 1.5rem;
}

/* =========================
   Header
========================= */
.site-header {
  background: #0b1220;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner,
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  max-height: 100px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-image {
    max-height: 65px;
  }
}

.logo-text strong {
  font-size: 1.1rem;
  display: block;
}

.logo-text span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.logo-text small {
  font-size: 0.75rem;
  opacity: 0.6;
}

nav a {
  color: #e5e7eb;
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

/* =========================
   Hero (Homepage)
========================= */
.hero {
  background:
    linear-gradient(135deg, #0b1220 0%, #0f1b33 100%),
    url("../images/hero-bg.svg");
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subhead {
  max-width: 600px;
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #22d3ee;
  color: #0b1220;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* =========================
   Page Hero (Interior Pages)
========================= */
.page-hero {
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #0b1220 0%, #0f1b33 100%);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero .subtitle,
.page-subhead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* =========================
   Value Props
========================= */
.value-props {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-props h3 {
  margin-bottom: 0.5rem;
}

/* =========================
   Services
========================= */
.services {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.service h2 {
  margin-bottom: 0.75rem;
}

.service p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.service ul,
.checklist {
  list-style: none;
  padding-left: 0;
}

.service ul li,
.checklist li {
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.service ul li::before {
  content: "–";
  left: 0;
  position: absolute;
  color: #22d3ee;
}

.checklist li::before {
  content: "✓";
  left: 0;
  position: absolute;
  color: var(--accent-color, #22d3ee);
}

/* =========================
   Services CTA
========================= */
.services-cta {
  margin-top: 5rem;
  padding: 4rem 1.5rem;
  text-align: center;
  background: rgba(255,255,255,0.02);
}

.services-cta h2 {
  margin-bottom: 1rem;
}

.services-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}

/* =========================
   Footer
========================= */
.site-footer {
  margin-top: 5rem;
  padding: 2rem 0;
  background: #0b1220;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-meta {
  font-size: 0.8rem;
  opacity: 0.5;
  text-align: right;
}

/* =========================
   Contact Form
========================= */
.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.form-group input,
.form-group textarea {
  background: #0f1b33;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e5e7eb;
  padding: 0.6rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22d3ee;
}

/* =========================
   Honeypot
========================= */
.hp-field {
  display: none !important;
}

