/* Global styles */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* Header & Navigation */
header {
  border-bottom: 1px solid #e5e7eb;
  background-color: #f7f9fc;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.nav-left { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 52px; }
.nav-brand-text { font-weight: 700; font-size: 1rem; color: #0a2342; letter-spacing: 0.08em; }

.nav-links { display: flex; gap: 1.25rem; font-weight: 500; font-size: 0.95rem; }
.nav-links a { color: #0b2443; position: relative; padding-bottom: 0.15rem; }
.nav-links a:hover, .nav-links a.active { color: #f4b52a; }
.nav-links a.active::after, .nav-links a:hover::after {
  content: ""; position: absolute; left: 0; bottom: -0.1rem; width: 100%;
  height: 2px; background-color: #f4b52a; border-radius: 999px;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0a2342, #123f6d);
  color: #ffffff;
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; opacity: 0.8; margin-bottom: 0.5rem; }
.hero h1 { font-size: 2.6rem; margin: 0.2rem 0 0.75rem; }
.hero p { font-size: 1.02rem; max-width: 34rem; opacity: 0.95; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.8rem; }
.badge { font-size: 0.78rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.35); padding: 0.35rem 0.75rem; opacity: 0.9; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0.5rem; padding: 0.7rem 1.4rem;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
}

.btn-primary { background-color: #f4b52a; color: #0a2342; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.65); color: #ffffff; }

.hero-quote { font-size: 0.82rem; opacity: 0.85; margin-top: 1rem; }

/* Sections */
section { padding: 3.5rem 0; }
.section-header { margin-bottom: 2rem; }
.section-kicker { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: #64748b; margin-bottom: 0.35rem; }
.section-title { font-size: 2rem; color: #0a2342; margin: 0; }
.section-subtitle { margin-top: 0.4rem; color: #4b5563; font-size: 0.98rem; }

/* Cards & grids */
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.card {
  border-radius: 0.85rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}
.card h3 { margin-top: 0; font-size: 1.02rem; color: #0a2342; }
.card p { margin-bottom: 0.7rem; font-size: 0.92rem; color: #4b5563; }
.card ul { padding-left: 1.1rem; margin: 0.5rem 0 0; font-size: 0.9rem; color: #4b5563; }
.card ul li + li { margin-top: 0.15rem; }

/* Two-column layout */
.two-col { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 2rem; align-items: start; }

/* Small stat blocks */
.stats-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.2rem; }
.stat {
  padding: 0.8rem 0.9rem;
  border-radius: 0.7rem;
  background-color: #f7f9fc;
  border: 1px dashed #d1d5db;
  font-size: 0.86rem;
}
.stat strong { display: block; font-size: 1rem; color: #0a2342; }

/* Requested: set these lines to true black */
.stat-detail-black { color: #000000; }

/* Table */
.workflow-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.9rem; }
.workflow-table th, .workflow-table td { text-align: left; padding: 0.65rem 0.55rem; border-bottom: 1px solid #e5e7eb; }
.workflow-table th { background-color: #f7f9fc; color: #0a2342; font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 2rem; }
.contact-card {
  border-radius: 0.85rem;
  border: 1px solid #e5e7eb;
  padding: 1.4rem 1.3rem;
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}
.contact-item { margin-bottom: 0.6rem; font-size: 0.95rem; }
.contact-item span { font-weight: 600; color: #0a2342; }

form label { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; color: #374151; }
form input, form textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
}
form textarea { min-height: 120px; resize: vertical; }
form input:focus, form textarea:focus { outline: none; border-color: #0f5bd7; box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25); }

/* Footer */
footer { background-color: #0a2342; color: #e5e7eb; padding: 1.6rem 0; margin-top: 2rem; font-size: 0.85rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; align-items: center; }
.footer-right { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-right a { color: #e5e7eb; opacity: 0.9; }
.footer-right a:hover { opacity: 1; }

/* Utilities */
.highlight { color: #f4b52a; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .two-col, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 2.2rem; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .navbar { align-items: flex-start; }
  .nav-links { display: none; flex-direction: column; margin-top: 0.75rem; background-color: #f7f9fc; padding: 0.5rem 0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { gap: 1.6rem; }
  .cards-grid { grid-template-columns: minmax(0, 1fr); }
  footer .footer-inner { flex-direction: column; align-items: flex-start; }
}
