
/* ================================================
   Lightview design system: hybrid navy / silver
   Navy is the brand world (hero, CTA, footer).
   Platinum-silver light surfaces carry reading.
   ================================================ */

:root {
  /* Navy ramp (firm color) */
  --navy-950: #0b1830;
  --navy-900: #102240;
  --navy-800: #16304f;
  --navy-600: #2c4a76;
  --navy-link: #1c3a66;

  /* Silver / platinum neutrals, tinted toward navy */
  --bg: #f3f5f8;
  --surface: #fcfdfe;
  --panel: #eceff4;
  --silver-300: #c5cdd9;
  --silver-150: #dfe3ea;

  /* Legacy variable names kept so existing inline styles inherit the new system */
  --text-main: #1b2740;
  --text-muted: #46556c;
  --text-soft: #596679;
  --border-subtle: #d9dee6;
  --bg-dark: var(--navy-900);
  --primary-color: var(--navy-link);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* Dark (navy) contexts re-map the same variables so
   inline styles in the HTML adapt automatically. */
.hero,
.cta-section,
footer {
  --text-main: #eef1f6;
  --text-muted: #aab6c9;
  --text-soft: #8a96ab;
  --border-subtle: rgba(170, 182, 201, 0.25);
  --primary-color: #c9d2e0;
}

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  min-height: 100vh;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 1rem;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.95rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.05rem;
}

/* Correct heading level, smaller visual weight (keeps document outline valid) */
h2.as-h3, h3.as-h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

h2.as-h4, h3.as-h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-main);
  line-height: 1.75;
  max-width: 70ch;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--navy-600);
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header & navigation: light platinum, sticky */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(252, 253, 254, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  padding: 0.9rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--navy-900);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-900);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy-900);
}

/* Phone number rendered as a navy pill */
.nav-links > li:last-child > a[href^="tel"] {
  background: var(--navy-900);
  color: #eef1f6 !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links > li:last-child > a[href^="tel"]:hover {
  background: var(--navy-800);
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  min-width: 290px;
  list-style: none;
  margin-top: 0.5rem;
  padding: 0.6rem 0;
  box-shadow: 0 12px 32px rgba(11, 24, 48, 0.10);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--panel);
  color: var(--navy-900);
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-900);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ================================================
   Hero: the navy brand world
   ================================================ */
.hero {
  padding: 150px 0 88px;
  text-align: center;
  margin-top: 60px;
  background: linear-gradient(168deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
}

.hero.small {
  padding: 124px 0 64px;
}

.hero h1 {
  color: #f2f4f8;
  margin-bottom: 0.75rem;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero .kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 1.25rem;
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--silver-300);
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-style: italic;
}

/* Split-path cards (homepage hero) */
.split-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.path-card {
  display: block;
  background: rgba(238, 241, 246, 0.07);
  border: 1px solid rgba(197, 205, 217, 0.35);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.path-card:hover {
  background: rgba(238, 241, 246, 0.13);
  border-color: var(--silver-300);
  transform: translateY(-2px);
}

.path-card h2,
.path-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #f2f4f8;
  margin-bottom: 0.3rem;
}

.path-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.path-card.business {
  background: var(--silver-150);
  border-color: var(--silver-150);
}

.path-card.business:hover {
  background: #eef1f6;
  border-color: #eef1f6;
}

.path-card.business h2,
.path-card.business h3 {
  color: var(--navy-900);
}

.path-card.business p {
  color: #4d5a6e;
}

/* Hero facts strip: quiet inline statements, not stat cards */
.hero-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.25rem;
  margin: 3rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(170, 182, 201, 0.25);
  max-width: 760px;
}

.hero-facts span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-facts strong {
  color: var(--silver-300);
  font-weight: 600;
}

/* ================================================
   Buttons
   ================================================ */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border: 1.5px solid var(--navy-900);
  border-radius: 6px;
  background: transparent;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn:hover {
  background: var(--navy-900);
  color: #eef1f6;
}

.btn-primary {
  background: var(--navy-900);
  color: #eef1f6;
  border-color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #ffffff;
}

/* Buttons sitting on navy invert to silver */
.hero .btn-primary,
.cta-section .btn-primary {
  background: var(--silver-150);
  border-color: var(--silver-150);
  color: var(--navy-900);
}

.hero .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--navy-950);
}

/* ================================================
   Sections
   ================================================ */
section {
  padding: 84px 0;
  border-top: 1px solid var(--border-subtle);
}

section:first-of-type,
.hero {
  border-top: none;
}

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

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  border-color: var(--silver-300);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.card-icon {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  filter: grayscale(1);
  opacity: 0.5;
}

/* Practice areas as numbered editorial rows (homepage) */
.practice-rows {
  max-width: 880px;
  margin: 0 auto;
}

.practice-row {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 1.75rem;
  align-items: baseline;
  padding: 1.6rem 0.5rem;
  border-top: 1px solid var(--border-subtle);
  color: inherit;
  transition: background 0.2s ease;
}

.practice-row:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.practice-row:hover {
  background: var(--panel);
}

.practice-row .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-soft);
}

.practice-row:hover .num {
  color: var(--navy-600);
}

.practice-row h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.practice-row p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 0;
  max-width: 60ch;
}

.practice-row .go {
  font-size: 1.1rem;
  color: var(--text-soft);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}

.practice-row:hover .go {
  color: var(--navy-900);
  transform: translateX(4px);
}

/* FAQ accordion */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.25s ease;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
}

.faq-question:hover {
  background: var(--panel);
}

.faq-toggle {
  font-size: 1rem;
  color: var(--text-soft);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 1.5rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

.faq-answer-content p {
  color: var(--text-muted);
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--silver-150);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(44, 74, 118, 0.12);
}

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

select option {
  background: var(--surface);
  color: var(--text-main);
}

/* Trust bar (legacy, used on subpages) */
.trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2.5rem 0;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.trust-item {
  flex: 1;
  min-width: 150px;
}

.trust-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-900) !important;
}

.trust-item p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Practice area grid (subpages) */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* CTA section: navy band */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: var(--navy-900);
  border-top: none;
}

.cta-section h2 {
  color: #f2f4f8;
  margin-bottom: 1rem;
}

/* Lists & content */
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

strong {
  color: var(--text-main);
  font-weight: 600;
}

/* Footer: navy-950 */
footer {
  background: var(--navy-950);
  border-top: none;
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  margin-top: 0;
}

footer p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.9rem;
}

footer h4 {
  color: var(--silver-300) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}

footer .brand-text {
  color: #eef1f6;
}

footer a:hover {
  color: #eef1f6 !important;
}

/* Case types */
.case-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.case-type {
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  border-radius: 8px;
}

.case-type h4 {
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.case-type p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Section subtitle */
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Disclaimer */
.disclaimer {
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

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

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  header {
    padding: 0.75rem 0;
  }

  nav {
    height: auto;
  }

  .container {
    padding: 0 18px;
  }

  h2 {
    font-size: 1.55rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 118px 0 56px;
    margin-top: 56px;
  }

  .split-paths {
    grid-template-columns: 1fr;
  }

  .practice-row {
    grid-template-columns: 48px 1fr auto;
    gap: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-6,
  .practice-grid,
  .case-types-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 52px 0;
  }

  .trust-bar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: var(--panel);
    margin-top: 0;
    border: none;
    border-top: 1px solid var(--border-subtle);
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
  }

  .container {
    padding: 0 14px;
  }

  .btn {
    padding: 11px 24px;
    font-size: 0.9rem;
  }

  footer .container > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
}

/* Sticky mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(252, 253, 254, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  padding: 10px 14px;
  z-index: 999;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.mobile-cta-bar .cta-call {
  background: var(--navy-900);
  color: #eef1f6;
  border: 1.5px solid var(--navy-900);
}

.mobile-cta-bar .cta-consult {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .nav-phone {
    display: none !important;
  }
}

/* Scroll animations: only hide content when JS is confirmed running,
   and only for users who have not asked for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .js .fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

/* Silver logo legibility on navy footer */
footer img {
  filter: brightness(2.1);
}


/* Links inside running text are underlined for distinguishability */
main p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================================================
   v3 additions: accessibility, responsive grids
   ================================================ */

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--navy-900);
  color: #eef1f6;
  padding: 10px 18px;
  border-radius: 0 0 6px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  color: #eef1f6;
}

/* Visually hidden (honeypot, SR-only text) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* FAQ questions are real buttons now */
button.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
}

button.faq-question:focus-visible,
.menu-toggle:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--navy-600);
  outline-offset: 2px;
}

/* Responsive grid utilities (replace inline styles) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.grid-2-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 1.5rem;
  text-align: left;
}

/* Light fact strip (Results page), mirrors hero-facts */
.fact-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.fact-strip span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.fact-strip strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-link);
  font-weight: 500;
  margin-right: 0.35rem;
}

@media (max-width: 1024px) {
  .grid-3-cards,
  .chips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid,
  .grid-2-cards,
  .grid-3-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  /* In the mobile menu, show practice-area links inline, always */
  .dropdown-menu {
    display: block;
    position: static;
    background: var(--panel);
    margin-top: 0.25rem;
    border: none;
    border-radius: 8px;
    box-shadow: none;
  }
}

.path-card h2 { text-align: left; }

/* v5 hero contrast */
.hero-facts span { color: #b4bfcf; }
.hero-facts strong { color: #eef1f6; }
.hero .kicker { color: #d3dae4; }

/* v5 centered section copy */
.cta-section p, .hero p { margin-left: auto; margin-right: auto; }
