/* =========================================================
   PASQ Systems — Design System
   ========================================================= */

:root {
  --navy: #061C3F;
  --navy-soft: #0E2A54;
  --gold: #C79A2D;
  --gold-soft: #E4C670;
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --text: #2D3748;
  --text-muted: #64748B;
  --light-grey: #E2E8F0;
  --success: #2E8B57;
  --warning: #F59E0B;
  --danger: #DC2626;

  --font-heading: 'Manrope', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-card: 16px;
  --radius-btn: 999px;
  --shadow-card: 0 4px 24px rgba(6, 28, 63, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(6, 28, 63, 0.12);

  --container-width: 1200px;
  --section-y: 120px;
  --section-y-sm: 72px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 16px; color: var(--text); }
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-y-sm) 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-soft { background: var(--bg); }

.kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(199, 154, 45, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--light-grey);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  height: 40px; width: auto;
  border-radius: 8px;
  background: var(--navy);
  padding: 7px;
  box-sizing: content-box;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand-name span { color: var(--gold); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  transition: color 0.2s ease;
}
.primary-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s ease;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 36px; border-radius: 8px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: 1.05rem; }
.footer-tagline { color: var(--gold); font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; margin-bottom: 12px; }
.footer-desc { max-width: 320px; color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-contact { max-width: 320px; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 16px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  margin-top: 4px;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(199,154,45,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
}

/* ---------- Credibility Strip ---------- */
.credibility-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--light-grey);
  padding: 20px 0;
  text-align: center;
}
.credibility-strip-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.credibility-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}
.credibility-item a { color: var(--navy); }
.credibility-item a:hover { color: var(--gold); }
.credibility-strip-sub {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .credibility-strip-row { gap: 12px 20px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 110px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero .lead { color: rgba(255,255,255,0.75); }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-microcopy { margin: 20px 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.hero-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 32px;
}
.hero-panel .stat { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-panel .stat:last-child { border-bottom: none; }
.hero-panel .stat strong { font-family: var(--font-heading); color: var(--gold); font-size: 1.3rem; }

/* ---------- Journey Timeline ---------- */
.journey { position: relative; }
.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
}
.journey-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--light-grey);
  opacity: 0.7;
  z-index: 0;
}
.journey-step { position: relative; z-index: 1; text-align: center; }
.journey-step .num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.05rem;
}
.journey-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0 0 4px;
}
.journey-step-product {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin: 0 0 8px;
}
.journey-step p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,0.7); margin: 0 auto 32px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ---------- Utilities ---------- */
.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(199,154,45,0.12);
  color: var(--gold);
}

.assess-view-details {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.assess-view-details:hover { text-decoration: underline; }

.pasq-journey-nav {
  background: var(--bg);
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.pasq-journey-nav .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.78rem;
}
.pasq-journey-nav a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.pasq-journey-nav a:hover { text-decoration: underline; }
.pasq-journey-nav .sep {
  color: var(--light-grey);
  font-size: 0.7rem;
}
.pasq-journey-nav .current {
  color: var(--text-muted);
  font-weight: 600;
}

/* Shared RAG dot + simple list — sitewide equivalents of the styles
   already used within the (frozen) PASQ Assessment™ tool, needed here
   too now that PASQ Intelligence™ drill-down pages reuse the same
   Red/Amber/Green language. Kept as a separate copy rather than
   editing assessment.css, since that file is frozen. */
.rag-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.rag-dot.rag-red { background: var(--danger); }
.rag-dot.rag-amber { background: var(--warning); }
.rag-dot.rag-green { background: var(--success); }

.assess-list { margin: 0; padding-left: 18px; }
.assess-list li { margin-bottom: 10px; color: var(--text); font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: repeat(3, 1fr); }
  .journey-track::before { display: none; }
  :root { --section-y: 72px; }
}
@media (max-width: 720px) {
  .primary-nav ul { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .container { padding: 0 20px; }
}

/* Mobile nav open state */
.primary-nav.is-open ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 84px;
  left: 0; right: 0;
  background: var(--white);
  padding: 24px 32px;
  gap: 20px;
  border-bottom: 1px solid var(--light-grey);
}
