/* MavenPro Services LLC — site-v2 */
:root {
  --navy: #0b1f3a;
  --navy-light: #14335c;
  --navy-soft: #1a3a5c;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: #ccfbf1;
  --gold: #c9a227;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.05);
  --shadow: 0 10px 25px -5px rgb(15 23 42 / 0.08), 0 4px 6px -4px rgb(15 23 42 / 0.05);
  --shadow-lg: 0 20px 40px -10px rgb(15 23 42 / 0.12);
  --max: 1120px;
  --header-h: 72px;
  --focus: 0 0 0 3px rgb(13 148 136 / 0.45);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal); }
ul { list-style: none; }
strong { font-weight: 650; }

:focus-visible { outline: none; box-shadow: var(--focus); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--navy); color: var(--white); padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.container-narrow { width: min(100% - 2rem, 720px); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.35rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--gray-50); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgb(255 255 255 / 0.45); }
.btn-ghost:hover { background: rgb(255 255 255 / 0.12); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.875rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--navy); font-weight: 800;
}
.logo:hover { color: var(--navy); text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white; display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 800; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .brand { font-size: 1.05rem; letter-spacing: -0.02em; }
.logo-text .legal { font-size: 0.68rem; font-weight: 550; color: var(--gray-500); letter-spacing: 0.01em; }

.nav-desktop { display: none; align-items: center; gap: 0.15rem; }
.nav-desktop a {
  padding: 0.5rem 0.75rem; color: var(--gray-700); font-weight: 500;
  font-size: 0.92rem; text-decoration: none; border-radius: 8px;
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] {
  color: var(--navy); background: var(--gray-50);
}
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--gray-200);
  border-radius: 10px; background: var(--white); cursor: pointer; color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }

.nav-mobile {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 0.5rem 0 1.25rem; border-top: 1px solid var(--gray-100);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0.5rem; color: var(--gray-800); font-weight: 550;
  text-decoration: none; border-radius: 8px;
}
.nav-mobile a:hover, .nav-mobile a[aria-current="page"] { background: var(--gray-50); color: var(--navy); }
.nav-mobile .btn { margin-top: 0.5rem; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */
.hero {
  position: relative; color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgb(11 31 58 / 0.92) 0%, rgb(11 31 58 / 0.75) 45%, rgb(13 148 136 / 0.55) 100%),
    url("../images/hero.jpg") center / cover no-repeat;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem;
  padding: 3.5rem 0 4rem;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; padding: 5rem 0; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgb(255 255 255 / 0.12); border: 1px solid rgb(255 255 255 / 0.2);
  color: #e0f2f1; font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15; letter-spacing: -0.03em; font-weight: 800;
  margin-bottom: 1rem;
}
.hero h1 span { color: #5eead4; }
.hero-lead {
  font-size: 1.08rem; color: rgb(226 232 240 / 0.92);
  max-width: 36rem; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  font-size: 0.88rem; color: rgb(203 213 225 / 0.95);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust svg { width: 16px; height: 16px; color: #5eead4; flex-shrink: 0; }

.hero-panel {
  background: rgb(255 255 255 / 0.97); color: var(--gray-800);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero-panel h2 {
  font-size: 1.1rem; color: var(--navy); margin-bottom: 0.35rem; font-weight: 700;
}
.hero-panel > p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; }
.hero-panel dl {
  display: grid; gap: 0.75rem;
  border-top: 1px solid var(--gray-100); padding-top: 1rem;
}
.hero-panel dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); font-weight: 650; }
.hero-panel dd { font-size: 0.95rem; color: var(--gray-800); font-weight: 550; }
.hero-panel a { color: var(--teal-dark); text-decoration: none; font-weight: 600; }
.hero-panel a:hover { text-decoration: underline; }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--white); }
.section-header { max-width: 640px; margin-bottom: 2.5rem; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-label {
  display: inline-block; color: var(--teal-dark); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-navy .section-label { color: #5eead4; }
.section-header h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem); color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.75rem;
}
.section-navy .section-header h2 { color: var(--white); }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-navy .section-header p { color: rgb(203 213 225 / 0.95); }

/* Cards / grids */
.grid-3 {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-4 {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-soft), #e0f2fe);
  color: var(--teal-dark); display: grid; place-items: center;
  margin-bottom: 1rem; font-size: 1.25rem; font-weight: 700;
}
.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 700; }
.card p { color: var(--gray-600); font-size: 0.95rem; }
.card ul { margin-top: 0.85rem; }
.card li {
  position: relative; padding-left: 1.15rem; color: var(--gray-700);
  font-size: 0.9rem; margin-bottom: 0.4rem;
}
.card li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
}

/* Process steps */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.35rem 1.25rem 1.35rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: white; font-weight: 700; font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.4rem; }
.step p { color: var(--gray-600); font-size: 0.92rem; }

/* Why / split */
.split {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.split-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-height: 520px;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.feature {
  display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start;
}
.feature-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  color: white; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.feature h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.2rem; }
.feature p { color: var(--gray-600); font-size: 0.92rem; }

/* Stats soft — no fake numbers */
.pillars {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: rgb(255 255 255 / 0.08); border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
}
.pillar strong { display: block; font-size: 1.15rem; margin-bottom: 0.35rem; color: #5eead4; }
.pillar span { font-size: 0.9rem; color: rgb(203 213 225 / 0.95); }

/* FAQ */
.faq { display: grid; gap: 0.75rem; max-width: 800px; }
.faq details {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 0;
}
.faq summary {
  cursor: pointer; padding: 1rem 1.15rem; font-weight: 650; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.25rem; color: var(--teal); font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] { border-color: var(--teal); }
.faq .faq-body { padding: 0 1.15rem 1.15rem; color: var(--gray-600); font-size: 0.95rem; }

/* Forms */
.form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 600px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.35rem; }
label .req { color: #dc2626; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
select, textarea {
  width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--gray-300);
  border-radius: 10px; font: inherit; color: var(--gray-800); background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: var(--focus);
}
textarea { min-height: 120px; resize: vertical; }
.help { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.3rem; }
.checkbox-row {
  display: flex; gap: 0.65rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--gray-700); line-height: 1.45;
}
.checkbox-row input { margin-top: 0.25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--teal); flex-shrink: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.75rem; }

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #0f5f5a 100%);
  color: var(--white); padding: 3rem 0 2.75rem;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem); letter-spacing: -0.02em;
  margin-bottom: 0.65rem; font-weight: 800;
}
.page-hero p { color: rgb(203 213 225 / 0.95); max-width: 40rem; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.82rem; color: rgb(148 163 184); margin-bottom: 0.85rem;
}
.breadcrumb a { color: #5eead4; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Contact NAP */
.nap-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.nap-card h3 { color: var(--navy); margin-bottom: 1rem; font-size: 1.1rem; }
.nap-list { display: grid; gap: 1rem; }
.nap-item strong {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 0.25rem;
}
.nap-item p, .nap-item a { color: var(--gray-800); font-weight: 550; text-decoration: none; }
.nap-item a:hover { color: var(--teal-dark); text-decoration: underline; }
.nap-note {
  margin-top: 1.15rem; padding-top: 1rem; border-top: 1px solid var(--gray-200);
  font-size: 0.85rem; color: var(--gray-600);
}

/* Legal prose */
.prose { max-width: 720px; }
.prose h2 { color: var(--navy); font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.prose h3 { color: var(--navy); font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.prose p, .prose li { color: var(--gray-700); margin-bottom: 0.85rem; }
.prose ul { list-style: disc; padding-left: 1.35rem; margin-bottom: 1rem; }
.prose a { color: var(--teal-dark); }
.prose .updated { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1.5rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  color: white; padding: 3.5rem 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.75rem; }
.cta-band p { color: rgb(204 251 241 / 0.9); max-width: 36rem; margin: 0 auto 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Thank you */
.thanks {
  text-align: center; padding: 5rem 0;
}
.thanks-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; font-size: 2rem;
}
.thanks h1 { color: var(--navy); margin-bottom: 0.75rem; }
.thanks p { color: var(--gray-600); max-width: 32rem; margin: 0 auto 1.5rem; }

/* 404 */
.error-page { text-align: center; padding: 5rem 0; }
.error-page .code { font-size: 4rem; font-weight: 800; color: var(--teal); letter-spacing: -0.04em; }
.error-page h1 { color: var(--navy); margin: 0.5rem 0 0.75rem; }

/* Footer */
.site-footer {
  background: #071525; color: rgb(203 213 225 / 0.9); padding: 3.5rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .logo { margin-bottom: 1rem; color: white; }
.footer-brand .logo .legal { color: rgb(148 163 184); }
.footer-brand p { color: rgb(148 163 184); max-width: 28rem; line-height: 1.6; }
.site-footer h4 {
  color: white; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.85rem;
}
.site-footer ul { display: grid; gap: 0.45rem; }
.site-footer a { color: rgb(203 213 225 / 0.9); text-decoration: none; }
.site-footer a:hover { color: #5eead4; }
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgb(148 163 184);
}
.footer-nap { font-size: 0.82rem; color: rgb(148 163 184); line-height: 1.55; }
.footer-nap strong { color: rgb(203 213 225); font-weight: 600; }

/* Utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--gray-600); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.notice {
  background: #fffbeb; border: 1px solid #fde68a; color: #92400e;
  border-radius: var(--radius); padding: 0.9rem 1rem; font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.notice-info {
  background: #f0fdfa; border: 1px solid #99f6e4; color: #115e59;
}
.badge {
  display: inline-block; background: var(--teal-soft); color: var(--teal-dark);
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px;
}
