/* CSS Custom Properties for Brand Colors */
:root {
  --pgp-white: #ffffff;
  --pgp-light: #f8f9fa;
  --pgp-peach: #ffb183;
  --pgp-charcoal: #1e252c;
  --pgp-green: #87b8a6;
  --pgp-yellow: #fff9a6;

  --bg: var(--pgp-light);
  --text: #1e252c;
  --muted: #666;
  --card: var(--pgp-white);
  --border: #e9ecef;
  --shadow: 0 4px 20px rgba(30, 37, 44, 0.08);
}

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

body {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-top: 80px;
}

.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--pgp-charcoal);
  color: white;
  z-index: 1000;
  padding: 12px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.floating-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-primary {
  font-size: 18px;
  font-weight: 400;
  color: white;
}

.nac-title {
  text-decoration: none;
  color: white;
}

.footer-collab {
  color: var(--pgp-green);
  text-decoration: none;
}

.logo-secondary {
  font-size: 12px;
  font-weight: 300;
  color: var(--pgp-green);
}

.logo {
  display: flex;
  gap: 10px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: var(--pgp-green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--pgp-green);
  color: white;
}

.nav-link.primary {
  background: var(--pgp-yellow);
  color: var(--pgp-charcoal);
  font-weight: 500;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header {
  background: var(--pgp-charcoal);
  color: white;
  padding: 60px 20px 40px;
  text-align: center;
  margin: -80px 0 60px 0;
}

.page-title {
  font-size: 48px;
  font-weight: 300;
  color: white;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--pgp-green);
}

.lead-section {
  background: white;
  padding: 50px;
  border-radius: 12px;
  margin-bottom: 60px;
  border-left: 5px solid var(--pgp-yellow);
  box-shadow: var(--shadow);
  text-align: center;
}

.evidence-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 14px;
  background: var(--pgp-charcoal);
  color: var(--pgp-yellow);
  border: 2px solid var(--pgp-charcoal);
  margin-bottom: 30px;
}

.lead-statement {
  font-size: 28px;
  font-weight: 300;
  color: var(--pgp-charcoal);
  line-height: 1.6;
}

.findings-section {
  background: white;
  padding: 50px;
  border-radius: 12px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}

.findings-section h2 {
  font-size: 36px;
  color: var(--pgp-charcoal);
  margin-bottom: 40px;
  font-weight: 400;
  text-align: center;
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.finding-card {
  background: var(--pgp-light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.finding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 37, 44, 0.1);
  border-left: 5px solid var(--pgp-green);
}

.statistic {
  font-size: 48px;
  font-weight: 300;
  color: var(--pgp-peach);
  margin-bottom: 15px;
  display: block;
}

.finding-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--pgp-charcoal);
  line-height: 1.6;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.evidence-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--pgp-green);
}

.evidence-card h3 {
  color: var(--pgp-charcoal);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
}

.evidence-card p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 15px;
}

.evidence-citation {
  font-style: italic;
  color: var(--pgp-green);
  font-size: 14px;
  font-weight: 300;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.roi-section {
  background: var(--pgp-green);
  color: white;
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
}

.roi-section h3 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
}

.roi-section p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.roi-link {
  background: var(--pgp-yellow);
  color: var(--pgp-charcoal);
  padding: 18px 45px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.roi-link:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 249, 166, 0.3);
}

.footer {
  background: var(--pgp-charcoal);
  color: white;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: 80px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--pgp-green);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--pgp-yellow);
}

.footer-text {
  color: var(--pgp-green);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}

.nac-partnership {
  color: var(--pgp-yellow);
  font-size: 14px;
  font-weight: 400;
}

.nac-partnership-footer {
  color: var(--pgp-yellow);
  text-decoration: none;
}

@media (max-width: 768px) {
  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .findings-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .statistic {
    font-size: 36px;
  }

  .lead-statement {
    font-size: 24px;
  }

  .findings-section,
  .evidence-card,
  .lead-section {
    padding: 30px;
  }

  .roi-section {
    padding: 40px 30px;
  }

  .page-title {
    font-size: 36px;
  }
}
