/* WFM Solutions — enterprise/corporate theme */

:root {
  --navy: #0b2545;
  --navy-dark: #081a33;
  --steel: #3e6d9c;
  --steel-light: #6f96c2;
  --gold: #c9a45c;
  --gray-bg: #f5f7fa;
  --gray-border: #e1e6ec;
  --text-dark: #1c2b3a;
  --text-muted: #5a6b7d;
  --white: #ffffff;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--steel); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo span { color: var(--gold); }

.nav-links { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 700;
}
.nav-cta:hover { background: #d9b876; text-decoration: none; }

/* Mobile nav toggle (kept simple, no JS dependency) */
.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 90px 24px;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; }
.hero-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 { font-size: 44px; line-height: 1.2; margin: 0 0 20px; max-width: 720px; }
.hero p.lead { font-size: 19px; color: #cfd9e6; max-width: 640px; margin: 0 0 32px; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: #d9b876; text-decoration: none; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); margin-left: 14px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 24px;
}
.page-hero h1 { margin: 0 0 10px; font-size: 34px; }
.page-hero p { color: #cfd9e6; max-width: 680px; margin: 0; font-size: 17px; }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--gray-bg); }
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow {
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 30px; margin: 0 0 14px; color: var(--navy); }
.section-head p { color: var(--text-muted); margin: 0; }

/* Grids / cards */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 28px;
}
.card h3 { color: var(--navy); font-size: 19px; margin: 14px 0 10px; }
.card p { color: var(--text-muted); font-size: 15px; margin: 0; }
.card .icon-badge {
  width: 42px; height: 42px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  font-weight: 700;
}

.stats { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.stat { text-align: center; flex: 1; min-width: 140px; }
.stat .num { font-size: 36px; font-weight: 800; color: var(--navy); }
.stat .label { color: var(--text-muted); font-size: 14px; margin-top: 6px; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.two-col.reverse { grid-template-columns: 0.9fr 1.1fr; }

/* Founder headshot */
.founder-header { display: flex; align-items: center; gap: 20px; }
.founder-header img.headshot {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gray-bg);
  box-shadow: 0 0 0 1px var(--gray-border);
  flex-shrink: 0;
}
.founder-header .eyebrow { margin-bottom: 6px; }
.founder-header h2 { margin: 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  color: var(--navy);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
}

blockquote {
  border-left: 3px solid var(--gold);
  margin: 0;
  padding-left: 20px;
  font-style: italic;
  color: var(--navy);
}

.timeline { border-left: 2px solid var(--gray-border); padding-left: 28px; margin-left: 6px; }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item::before {
  content: "";
  position: absolute; left: -34px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--steel); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--steel);
}
.timeline-item h4 { margin: 0 0 4px; color: var(--navy); font-size: 16px; }
.timeline-item .meta { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 { margin: 0 0 12px; font-size: 28px; }
.cta-band p { color: #cfd9e6; margin: 0 0 28px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info .item { margin-bottom: 22px; }
.contact-info .label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--steel); font-weight: 700; margin-bottom: 4px; }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }
form.contact-form label { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #b7c3d1;
  padding: 48px 24px 24px;
  font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { color: var(--white); font-size: 15px; margin: 0 0 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a { color: #b7c3d1; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #8b98a8; }

/* Table (services page) */
table.compare { width: 100%; border-collapse: collapse; margin-top: 10px; }
table.compare th, table.compare td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--gray-border); font-size: 14px; }
table.compare th { color: var(--navy); background: var(--gray-bg); }

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 32px; }
}
