/* FederalNvoy Static Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a2540;
  --navy-light: #1a3a5c;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #60a5fa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --nvoy: #15c0c0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #374151;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #fafafa;
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nvoy);
}

.logo span { color: var(--nvoy); }

.nav { display: flex; gap: 32px; }

.nav a {
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--nvoy);
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--blue-dark); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu a {
  color: var(--gray-600);
  font-weight: 500;
  padding: 8px 0;
}

.mobile-menu.active { display: flex; }

/* Hero Sections */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?w=1920&q=80') center/cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--nvoy); }

.hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--nvoy);
  color: white;
}

.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
}

.btn-secondary:hover { background: rgba(255,255,255,0.2); }

.btn-outline {
  background: transparent;
  color: var(--nvoy);
  border: 2px solid var(--nvoy);
}

.btn-outline:hover {
  background: var(--nvoy);
  color: white;
}

/* Page Hero (smaller) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 64px 0;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 640px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}

/* Benefits Bar */
.benefits-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { color: var(--nvoy); }

.benefit-item h3 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

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

.feature-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.feature-card:hover .feature-icon {
  background: var(--nvoy);
}

.feature-icon svg {
  color: var(--nvoy);
  transition: color 0.2s;
}

.feature-card:hover .feature-icon svg { color: white; }

.feature-card h3 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Segments Grid */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.segment-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-align: center;
  transition: box-shadow 0.2s;
}

.segment-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.segment-icon {
  width: 48px;
  height: 48px;
  background: rgba(10, 37, 64, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.segment-icon svg { color: var(--navy); }

.segment-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.segment-card p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* CTA Section */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col.reverse .col-content { order: 2; }
.two-col.reverse .col-visual { order: 1; }

/* Stats Bar */
.stats-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--nvoy);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Customer Segment Cards */
.segment-full {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 32px;
  transition: box-shadow 0.2s;
}

.segment-full:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.segment-full-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.segment-full-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.segment-full-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segment-full-icon svg { color: var(--nvoy); }

.segment-full h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.segment-full > div:first-child p {
  color: var(--gray-600);
  line-height: 1.7;
}

.use-cases {
  background: var(--gray-50);
  padding: 24px;
  border-radius: 12px;
}

.use-cases h4 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.use-case-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.use-case-item svg {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.use-case-item span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Testimonial */
.testimonial {
  background: var(--navy);
  padding: 56px;
  border-radius: 16px;
  text-align: center;
}

.testimonial-quote {
  color: rgba(96, 165, 250, 0.3);
  margin-bottom: 24px;
}

.testimonial p {
  font-size: 1.25rem;
  color: white;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 24px;
}

.testimonial-author {
  color: #d1d5db;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { color: var(--nvoy); }

.contact-item h3 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--nvoy);
}

.contact-item a:hover { text-decoration: underline; }

.contact-item p { color: var(--gray-600); }

.office-hours {
  background: var(--gray-50);
  padding: 24px;
  border-radius: 12px;
  margin-top: 40px;
}

.office-hours h3 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.office-hours p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact-form-wrap {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--nvoy);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon svg { color: var(--green-500); }

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p { color: var(--gray-600); }

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 16px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  color: var(--gray-600);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content strong { color: var(--navy); }

.contact-box {
  background: var(--gray-50);
  padding: 24px;
  border-radius: 12px;
  color: var(--gray-600);
}

.contact-box strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Platform Feature Sections */
.platform-nav {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}

.platform-nav-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.platform-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}

.platform-nav a:hover { color: var(--nvoy); }

.feature-section {
  padding: 80px 0;
}

.feature-section:nth-child(even) { background: var(--gray-50); }

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-header-icon svg { color: var(--nvoy); }

.feature-header span {
  color: var(--nvoy);
  font-weight: 500;
}

.feature-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.feature-section > .container > .two-col > div:first-child p {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-list-item svg {
  color: var(--green-500);
  flex-shrink: 0;
}

.benefit-list-item span {
  color: var(--gray-700);
}

.feature-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 40px;
  border-radius: 16px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual svg {
  color: rgba(255,255,255,0.2);
}

/* Why FederalNvoy */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.why-card svg {
  color: var(--blue-light);
  margin-bottom: 16px;
}

.why-card h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.875rem;
  color: #d1d5db;
}

/* About Page */
.story-box {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 16px;
}

.story-box h3 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.problem-item svg {
  color: var(--nvoy);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item span { color: var(--gray-600); }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mission-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon svg { color: var(--nvoy); }

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.mission-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 24px;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(10, 37, 64, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg { color: var(--navy); }

.value-card h3 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Footer */
.footer {
  background: var(--navy);
  color: white;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nvoy);
  font-weight: 600;
  transition: gap 0.2s;
}

.link-arrow:hover { gap: 12px; }

/* Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .segments-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  
  .hero h1 { font-size: 2rem; }
  .page-hero h1 { font-size: 2rem; }
  
  .benefits-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-content { order: 1; }
  .two-col.reverse .col-visual { order: 2; }
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .segment-full-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .section { padding: 48px 0; }
  .hero { padding: 48px 0; }
}

@media (max-width: 480px) {
  .segments-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
