:root {
  /* Core Colors */
  --pros-green: #16a34a;
  --pros-green-dark: #15803d;
  --pros-green-light: #22c55e;
  --pros-ink: #0f172a;
  --pros-muted: #64748b;
  --pros-border: rgba(15, 23, 42, 0.10);
  --pros-soft: #f8fafc;
  --pros-hero1: #0a1f1a;
  --pros-hero2: #0d2e24;
  
  /* Industrial accent colors */
  --industrial-blue: #0ea5e9;
  --industrial-orange: #f59e0b;
  --industrial-steel: #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--pros-ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.text-pros { color: var(--pros-green) !important; }
.text-muted { color: var(--pros-muted) !important; }
.fw-black { font-weight: 900 !important; }

/* Navigation */
.pros-nav {
  border-bottom: 1px solid var(--pros-border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.navbar-brand {
  letter-spacing: -0.02em;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pros-green), var(--pros-green-light));
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-mark-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 1rem;
}

.nav-link {
  font-weight: 600;
  color: var(--pros-ink) !important;
  opacity: 0.75;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  color: var(--pros-green) !important;
}

.nav-link.active {
  opacity: 1;
  color: var(--pros-green) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--pros-green);
  border-radius: 999px;
}




/* Buttons */
.btn-pros {
  background: var(--pros-green);
  border: 1px solid var(--pros-green);
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.btn-pros:hover {
  background: var(--pros-green-dark);
  border-color: var(--pros-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
  color: #fff;
}

.btn-outline-pros {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  transition: all 0.2s ease;
}

.btn-outline-pros:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #fff;
}

/* Layout */
.page-wrap {
  padding-top: 86px;
  min-height: calc(100vh - 86px);
}

.section {
  padding: 6rem 0;
}

.section-light {
  background: var(--pros-soft);
  border-top: 1px solid var(--pros-border);
  border-bottom: 1px solid var(--pros-border);
}

/* Hero Section */
.hero {
  padding: 7rem 0 5rem;
  background:
    radial-gradient(1200px 500px at 20% 15%, rgba(22, 163, 74, 0.15), transparent 60%),
    radial-gradient(1000px 400px at 80% 25%, rgba(14, 165, 233, 0.12), transparent 55%),
    linear-gradient(135deg, var(--pros-hero1), var(--pros-hero2));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 41px
    );
  pointer-events: none;
  opacity: 0.5;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.hero h1 {
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 900;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 60ch;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Cards */
.pros-card {
  background: #fff;
  border: 1px solid var(--pros-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.pros-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.pros-card.dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
}

.pros-card.dark .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.pros-card.dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Stats/KPI Cards */
.kpi {
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.kpi:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Benefit Cards - Industrial Style */
.benefit-card {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(14, 165, 233, 0.05));
  border: 1.5px solid var(--pros-border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--pros-green), var(--industrial-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  border-color: rgba(22, 163, 74, 0.3);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(14, 165, 233, 0.1));
  border: 1.5px solid rgba(22, 163, 74, 0.2);
  color: var(--pros-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(14, 165, 233, 0.15));
}

.benefit-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pros-green), var(--industrial-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Icon Pills */
.icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(22, 163, 74, 0.1);
  border: 1.5px solid rgba(22, 163, 74, 0.2);
  color: var(--pros-green);
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pros-card:hover .icon-pill {
  transform: scale(1.1);
  background: rgba(22, 163, 74, 0.15);
}

/* Figure Cards */
.figure-card {
  border-radius: 1rem;
  border: 1px solid var(--pros-border);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.figure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.figure-card img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.figure-caption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--pros-muted);
  background: var(--pros-soft);
  border-top: 1px solid var(--pros-border);
}

/* Badges */
.badge-soft {
  background: rgba(22, 163, 74, 0.1) !important;
  color: var(--pros-green) !important;
  border: 1px solid rgba(22, 163, 74, 0.2);
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
}

/* Footer */
.pros-footer {
  background: linear-gradient(180deg, #0a1f1a, #061410);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.pros-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.5), transparent);
}

.footer-title {
  font-weight: 800;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-mini {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-mini:hover {
  color: #fff;
}

/* Typography */
.page-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.display-4 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.display-5 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.display-6 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

/* Dividers */
hr.soft {
  border-top: 1px solid var(--pros-border);
  opacity: 1;
  margin: 2rem 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Form Styling */
.form-control,
.form-select {
  border-radius: 0.75rem;
  border: 1.5px solid var(--pros-border);
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pros-green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--pros-ink);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero {
    padding: 5rem 0 3.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .benefit-value {
    font-size: 2rem;
  }
}

/* Performance optimizations */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}


/* index.css — only styles used by index.html sections */
/* No footer styles here. No nav styles here. */

/* HERO (if you already have hero styles, keep this minimal) */
.hero-mini .badge { margin-bottom: .35rem; }

/* Use case image cards */
.usecase-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

#use-cases .figure-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  display: block;
}

.usecase-body {
  padding: 1rem 1.1rem;
  background: #fff;
  border-top: 1px solid var(--pros-border);
}

/* Card hover motion (if your .figure-card already exists, this just enhances hover) */
.figure-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.figure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
  border-color: rgba(22, 163, 74, 0.28);
}

/* Compact FAQ (index only) */
.faq-container { max-width: 920px; margin: 0 auto; }

.faq-item {
  background: var(--pros-soft);
  margin-bottom: 0.9rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--pros-border);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  color: var(--pros-ink);
  user-select: none;
}

.faq-question:hover {
  background: rgba(22, 163, 74, 0.04);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.25s ease;
  color: var(--pros-green);
  font-weight: 900;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  color: var(--pros-muted);
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 1.25rem 1.1rem;
}

/* Responsive */
@media (max-width: 767px) {
  #use-cases .figure-card img { height: 160px; }
}


/* ============================
   ABOUT PAGE (append-only)
   ============================ */

.about-hero {
  background: #fff;
}

.about-kicker {
  display: inline-flex;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--pros-muted);
  margin-bottom: 0.5rem;
}

.about-title {
  font-family: 'Space Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.about-underline {
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pros-green), var(--industrial-blue));
  margin: 0.75rem 0 1.25rem;
}

.about-underline.sm {
  width: 64px;
  height: 3px;
  margin: 0.65rem 0 1rem;
}

.about-lead {
  font-size: 1.08rem;
  color: var(--pros-ink);
  max-width: 62ch;
  margin-bottom: 1rem;
}

.about-body {
  color: var(--pros-muted);
  max-width: 70ch;
}

.about-figure {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--pros-border);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  background: #fff;
  position: relative;
  min-height: 320px;
}

.about-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-figure .about-figure-fallback {
  display: none;
}

.about-figure.is-missing .about-figure-fallback {
  display: grid;
  place-items: center;
  padding: 2rem;
  min-height: 320px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.fallback-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: var(--pros-ink);
}

.fallback-sub {
  color: var(--pros-muted);
  font-size: 0.92rem;
}

/* Mission/Vision panels */
.about-panel {
  background: #fff;
  border: 1px solid var(--pros-border);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.about-panel-title {
  font-family: 'Space Grotesk', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.about-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--pros-muted);
}

.about-list li {
  margin-bottom: 0.65rem;
}

.about-list li:last-child {
  margin-bottom: 0;
}

/* Value cards (use your existing pros-card hover) */
.about-value-card {
  padding: 1.6rem;
}

.about-value-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(22, 163, 74, 0.10);
  border: 1px solid rgba(22, 163, 74, 0.20);
  color: var(--pros-green);
  font-size: 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-value-title {
  font-weight: 900;
  letter-spacing: -0.015em;
  color: var(--pros-ink);
}

.about-value-card:hover .about-value-icon {
  transform: translateY(-2px) rotate(3deg) scale(1.05);
  background: rgba(22, 163, 74, 0.14);
}

@media (max-width: 991px) {
  .about-figure { min-height: 260px; }
  .about-figure.is-missing .about-figure-fallback { min-height: 260px; }
}

/* Technology: make the capability cards denser so 3-in-row fits cleanly */
#capabilities .pros-card .text-muted{
  font-size: .95rem;
  line-height: 1.55;
}

#capabilities .pros-card ul{
  padding-left: 1.1rem;
  margin-bottom: 0;
}

#capabilities .pros-card li{
  font-size: .92rem;
  line-height: 1.45;
  margin-bottom: .4rem;
}

#capabilities .pros-card li:last-child{
  margin-bottom: 0;
}
