/* ============================================================================
   SENTINEL INTEGRITY GROUP - MASTER STYLESHEET
   Government contractor aesthetic - Palantir meets Bloomberg
   ============================================================================ */

/* Color Palette */
:root {
  --void-black: #0A0A0A;
  --sentinel-gold: #C8A431;
  --recovery-green: #00C9A7;
  --graphite: #1C1C1C;
  --light-gold: #E8D48B;
  --critical-red: #FF4136;
  --white: #FFFFFF;
  --gold-green-gradient: linear-gradient(135deg, #C8A431 0%, #00C9A7 100%);
  --gold-to-green: linear-gradient(90deg, #C8A431 0%, #00C9A7 100%);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-subtle: rgba(200, 164, 49, 0.2);
  --border-green: rgba(0, 201, 167, 0.2);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--void-black);
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ============================================================================
   NAVIGATION & HEADER
   ============================================================================ */

header {
  background-color: var(--graphite);
  border-bottom: 1px solid rgba(200, 164, 49, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-svg {
  width: 40px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-text h1 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 1.5px;
  font-weight: 700;
}

.logo-text p {
  margin: 0;
  font-size: 0.65rem;
  color: var(--sentinel-gold);
  letter-spacing: 1.5px;
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-green-gradient);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--white);
}

nav a.active::after {
  width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  background: linear-gradient(135deg, var(--void-black) 0%, var(--graphite) 50%, var(--void-black) 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200, 164, 49, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 201, 167, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 80px;
  height: 84px;
  margin: 0 auto 2rem;
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero p.subheading {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .tagline {
  font-size: 0.95rem;
  color: var(--recovery-green);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* ============================================================================
   STAT CARDS & GRIDS
   ============================================================================ */

.stat-bar {
  background: linear-gradient(90deg, rgba(200, 164, 49, 0.05) 0%, rgba(0, 201, 167, 0.05) 100%);
  border: 1px solid rgba(200, 164, 49, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  background: var(--gold-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================================================
   CAPABILITY CARDS
   ============================================================================ */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.capability-card {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.capability-card.fraud {
  border-color: var(--sentinel-gold);
  box-shadow: inset 0 0 20px rgba(200, 164, 49, 0.05);
}

.capability-card.fraud:hover {
  box-shadow: inset 0 0 20px rgba(200, 164, 49, 0.1),
              0 0 40px rgba(200, 164, 49, 0.2);
  transform: translateY(-4px);
}

.capability-card.recovery {
  border-color: var(--recovery-green);
  box-shadow: inset 0 0 20px rgba(0, 201, 167, 0.05);
}

.capability-card.recovery:hover {
  box-shadow: inset 0 0 20px rgba(0, 201, 167, 0.1),
              0 0 40px rgba(0, 201, 167, 0.2);
  transform: translateY(-4px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.capability-card ul, .capability-card ol {
  list-style: none;
  margin: 1.5rem 0;
}

.capability-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.capability-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sentinel-gold);
  font-weight: bold;
}

.capability-card.recovery li::before {
  color: var(--recovery-green);
}

/* ============================================================================
   GENERIC LIST STYLING (for lists outside capability-card / tier-features)
   ============================================================================ */

section ul:not(.capability-card ul):not(.tier-features):not(nav ul) {
  list-style: none;
  margin: 1rem 0;
}

section ul:not(.capability-card ul):not(.tier-features):not(nav ul) li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

section ul:not(.capability-card ul):not(.tier-features):not(nav ul) li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sentinel-gold);
  font-weight: bold;
}

/* ============================================================================
   TWO-COLUMN LAYOUT
   ============================================================================ */

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.column-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.column-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================================
   SECTION STYLING
   ============================================================================ */

section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

section.alternate {
  background: linear-gradient(135deg, var(--graphite) 0%, var(--void-black) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   STEP CARDS & PROCESS
   ============================================================================ */

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-green-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 30px rgba(200, 164, 49, 0.1);
  transform: translateY(-4px);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin-bottom: 1rem;
  color: var(--white);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================================================
   DASHBOARD MOCKUP
   ============================================================================ */

.dashboard-mockup {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(200, 164, 49, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  overflow-x: auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 164, 49, 0.15);
  padding-bottom: 1.5rem;
}

.dashboard-header h3 {
  margin: 0;
  color: var(--white);
}

.dashboard-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-stat {
  background: rgba(200, 164, 49, 0.08);
  border: 1px solid rgba(200, 164, 49, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.dashboard-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gold-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.dashboard-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.chart-container {
  background: rgba(200, 164, 49, 0.05);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
}

.chart-title {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 150px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--sentinel-gold) 0%, rgba(200, 164, 49, 0.6) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 10px;
}

.bar.high {
  height: 100%;
}

.bar.medium {
  height: 65%;
}

.bar.low {
  height: 35%;
}

.donut-chart {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(
    var(--sentinel-gold) 0deg 216deg,
    var(--recovery-green) 216deg 360deg
  );
  position: relative;
  margin: 0 auto;
}

.donut-chart::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--void-black);
  border-radius: 50%;
}

.donut-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  justify-content: center;
}

.donut-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.donut-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.donut-color.gold {
  background: var(--sentinel-gold);
}

.donut-color.green {
  background: var(--recovery-green);
}

@media (max-width: 768px) {
  .dashboard-charts {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   TIER PRICING
   ============================================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tier-card {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(200, 164, 49, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tier-card.featured {
  border-color: var(--sentinel-gold);
  box-shadow: 0 0 30px rgba(200, 164, 49, 0.15);
}

.tier-card:hover {
  box-shadow: 0 0 30px rgba(200, 164, 49, 0.1);
  transform: translateY(-4px);
}

.tier-name {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.tier-price {
  font-size: 2rem;
  background: var(--gold-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tier-price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.tier-features {
  list-style: none;
  margin: 1.5rem 0;
}

.tier-features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--recovery-green);
  font-weight: bold;
}

/* ============================================================================
   DATA SOURCES ROW (Homepage - Powered By National Data)
   ============================================================================ */

.data-sources-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.data-source-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  transition: all 0.3s ease;
}

.data-source-item:hover {
  transform: translateY(-4px);
}

.data-source-item:hover .data-source-icon {
  color: var(--sentinel-gold);
  border-color: var(--sentinel-gold);
  background: rgba(200, 164, 49, 0.08);
}

.data-source-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1.5px solid rgba(200, 164, 49, 0.3);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: rgba(200, 164, 49, 0.7);
  transition: all 0.3s ease;
}

.data-source-icon svg {
  width: 36px;
  height: 36px;
}

.data-source-label {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.data-source-sub {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .data-sources-row {
    gap: 1.5rem;
  }
  .data-source-item {
    width: 100px;
  }
  .data-source-icon {
    width: 52px;
    height: 52px;
  }
  .data-source-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================================================
   DATA SOURCES / INVENTORY
   ============================================================================ */

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.inventory-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.inventory-item:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 20px rgba(200, 164, 49, 0.15);
}

.inventory-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.inventory-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================================
   FRAUD VECTORS / LIFECYCLE
   ============================================================================ */

.lifecycle-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stage-box {
  background: linear-gradient(135deg, rgba(200, 164, 49, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
  border: 1px solid rgba(200, 164, 49, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.stage-box h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.stage-box p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

.fraud-matrix {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  overflow-x: auto;
}

.fraud-matrix h4 {
  margin-bottom: 1.5rem;
}

.vector-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.vector-item {
  border-left: 3px solid var(--sentinel-gold);
  padding-left: 1rem;
}

.vector-item h5 {
  color: var(--light-gold);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.vector-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================================
   ARCHITECTURE & LAYERS
   ============================================================================ */

.architecture {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 12px;
  padding: 3rem;
  margin: 2rem 0;
}

.architecture-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.layer-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.layer {
  background: linear-gradient(90deg, rgba(200, 164, 49, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
  border: 1px solid rgba(200, 164, 49, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.layer h4 {
  color: var(--light-gold);
  margin-bottom: 0.5rem;
}

.layer p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

/* ============================================================================
   COMPARISON / DIFFERENTIATION
   ============================================================================ */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 12px;
  padding: 2rem;
}

.comparison-card h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.comparison-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--recovery-green);
  font-weight: bold;
  font-size: 1.1rem;
}

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

/* ============================================================================
   CONTACT FORM
   ============================================================================ */

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

input, textarea, select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 164, 49, 0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--sentinel-gold);
  box-shadow: 0 0 15px rgba(200, 164, 49, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  max-width: 900px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 164, 49, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
}

.info-block h4 {
  color: var(--sentinel-gold);
  margin-bottom: 0.75rem;
}

.info-block p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.info-block a {
  color: var(--recovery-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--light-gold);
}

/* ============================================================================
   CTA BUTTONS
   ============================================================================ */

.cta-button, button[type="submit"] {
  background: var(--gold-green-gradient);
  color: var(--void-black);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover, button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(200, 164, 49, 0.4);
}

.cta-button:active, button[type="submit"]:active {
  transform: translateY(-1px);
}

.cta-container {
  text-align: center;
  margin: 2rem 0;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background: var(--graphite);
  border-top: 1px solid rgba(200, 164, 49, 0.1);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--light-gold);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--sentinel-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 164, 49, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
  section {
    padding: 2rem 1rem;
  }

  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 4rem 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p.subheading {
    font-size: 1rem;
  }

  .capabilities-grid {
    gap: 1.5rem;
  }

  nav ul {
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .logo-text h1 {
    font-size: 0.85rem;
  }

  nav ul {
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  section {
    padding: 1.5rem;
  }

  .stat-bar {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .capability-card {
    padding: 1.5rem;
  }
}
