/*
Theme Name: OHM Care
Theme URI: https://ohmcare.com
Author: OHM Care Inc.
Author URI: https://ohmcare.com
Description: Official WordPress theme for OHM Care Inc. — professional in-home care services. Cinematic editorial design with dark navy, lime green, and cool white palette. Supports custom service pages, testimonials, and full Customizer content management.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://ohmcare.com
Text Domain: ohm-care
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --navy:     #070d1a;
  --gold:     #d4a017;
  --white:    #f4f4f8;
  --navy-80:  rgba(7, 13, 26, 0.8);
  --navy-95:  rgba(7, 13, 26, 0.95);
  --white-80: rgba(244, 244, 248, 0.8);
  --white-60: rgba(244, 244, 248, 0.6);
  --white-50: rgba(244, 244, 248, 0.5);
  --white-40: rgba(244, 244, 248, 0.4);
  --white-10: rgba(244, 244, 248, 0.1);
  --navy-8:   rgba(7, 13, 26, 0.08);
  --gold-20:  rgba(232, 160, 32, 0.2);
  --gold-50:  rgba(232, 160, 32, 0.5);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 400;
}
.ohm-hero h1 em { white-space: nowrap; }

.ohm-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.ohm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .ohm-container { padding: 0 3rem; } }

.ohm-section { width: 100%; }

.ohm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.ohm-btn-primary:hover { background: var(--white); }

.ohm-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(244,244,248,0.3);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.ohm-btn-outline:hover { background: rgba(244,244,248,0.1); }

/* ============================================
   NAVIGATION
   ============================================ */
.ohm-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.5rem 0;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.ohm-nav.scrolled {
  background: var(--navy-95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-color: var(--gold-20);
}
.ohm-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ohm-nav-logo img { height: 40px; width: auto; }
.ohm-nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-80);
}
@media (min-width: 768px) { .ohm-nav-links { display: flex; } }
.ohm-nav-links a:hover { color: var(--gold); transition: color 0.2s; }
.ohm-nav-right {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .ohm-nav-right { display: flex; } }
.ohm-nav-phone {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-80);
  letter-spacing: 0.05em;
}
.ohm-nav-phone:hover { color: var(--gold); }
.ohm-nav-hamburger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}
@media (min-width: 768px) { .ohm-nav-hamburger { display: none; } }
.ohm-nav-hamburger svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Mobile Menu */
.ohm-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
.ohm-mobile-menu.open { transform: translateX(0); }
.ohm-mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 0.5rem;
}
.ohm-mobile-menu-close svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2; }
.ohm-mobile-menu-logo { height: 64px; width: auto; margin-bottom: 2rem; }
.ohm-mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.ohm-mobile-menu nav a {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.2s;
}
.ohm-mobile-menu nav a:hover { color: var(--gold); }
.ohm-mobile-divider { width: 3rem; height: 1px; background: var(--gold); margin: 1rem 0; }
.ohm-mobile-phone {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.ohm-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.ohm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ohm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(7,13,26,0.8) 100%);
}
.ohm-hero .ohm-container {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}
.ohm-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  width: 100%;
}
.ohm-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  font-weight: 400;
  text-align: center;
}
.ohm-hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.ohm-hero-sub {
  font-size: 1.1rem;
  color: var(--white-80);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  text-transform: none;
  text-align: center;
  max-width: 640px;
}
.ohm-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Scroll indicator */
.ohm-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 1px;
  height: 4rem;
  background: rgba(244,244,248,0.2);
  overflow: hidden;
}
.ohm-scroll-line {
  width: 100%;
  height: 50%;
  background: #d4a017;
  animation: ohm-scroll 2s linear infinite;
}
@keyframes ohm-scroll {
  from { transform: translateY(-100%); }
  to   { transform: translateY(200%); }
}

/* ============================================
   QUOTE / TESTIMONIAL PULL SECTION
   ============================================ */
.ohm-quote-section {
  padding: 8rem 0;
  background: var(--navy);
  text-align: center;
}
.ohm-quote-section blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.4;
}
.ohm-quote-section cite {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.ohm-services-section {
  padding: 8rem 0;
  background: var(--white);
  color: var(--navy);
}
.ohm-services-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 1.25rem;
}
.ohm-services-sub {
  text-align: center;
  color: rgba(7,13,26,.6);
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 auto 4rem;
  line-height: 1.7;
}
.ohm-services-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(7,13,26,.1);
}
@media (max-width: 800px) {
  .ohm-services-cats { grid-template-columns: 1fr; }
}
.ohm-service-cat {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 3rem;
  text-decoration: none;
  color: var(--navy);
  transition: background .3s, color .3s;
  min-height: 18rem;
}
.ohm-service-cat:hover {
  background: var(--navy);
  color: var(--white);
}
.ohm-service-cat h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 1.25rem;
  line-height: 1.2;
  transition: color .3s;
}
.ohm-service-cat p {
  font-weight: 300;
  line-height: 1.7;
  font-size: 1rem;
  color: rgba(7,13,26,.6);
  flex: 1;
  margin: 0 0 2.5rem;
  transition: color .3s;
}
.ohm-service-cat:hover p {
  color: rgba(244,244,248,.6);
}
.ohm-service-cat-cta {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.ohm-approach-section {
  width: 100%;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .ohm-approach-section { flex-direction: row; } }
.ohm-approach-image {
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
@media (min-width: 1024px) { .ohm-approach-image { width: 50%; height: auto; min-height: 100vh; } }
.ohm-approach-image img { width: 100%; height: 100%; object-fit: cover; }
.ohm-approach-content {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}
@media (min-width: 1024px) { .ohm-approach-content { width: 50%; padding: 6rem; } }
.ohm-approach-inner { max-width: 480px; }
.ohm-approach-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 3rem;
}
.ohm-approach-inner p {
  color: var(--white-80);
  font-weight: 300;
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.ohm-how-section {
  padding: 8rem 0;
  background: var(--white);
  overflow: hidden;
}
.ohm-how-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 6rem;
}
.ohm-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .ohm-steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}
/* Horizontal connecting line (desktop only) */
.ohm-steps-line {
  display: none;
}
@media (min-width: 768px) {
  .ohm-steps-line {
    display: block;
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(7,13,26,0.1);
  }
}
.ohm-step {
  flex: 1;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 340px;
}
.ohm-step-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  border: 1px solid var(--gold);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.ohm-step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.ohm-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ohm-step p { color: rgba(7,13,26,0.6); font-weight: 300; line-height: 1.7; font-size: 1.05rem; max-width: 18rem; }

/* ============================================
   STATS SECTION
   ============================================ */
.ohm-stats-section {
  padding: 6rem 0;
  background: var(--navy);
}
.ohm-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) { .ohm-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.ohm-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ohm-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 8vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.ohm-stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-60);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ohm-testimonials-section {
  padding: 8rem 0;
  background: var(--white);
}
.ohm-testimonials-grid {
  display: grid;
  gap: 4rem 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .ohm-testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.ohm-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ohm-testimonial-quote-icon {
  color: var(--gold);
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.ohm-testimonial blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.ohm-testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7,13,26,0.5);
  font-weight: 600;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.ohm-contact-section {
  padding: 8rem 0;
  background: var(--navy);
  color: var(--white);
}
.ohm-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .ohm-contact-grid {
    flex-direction: row;
    gap: 6rem;
    align-items: flex-start;
  }
}
.ohm-contact-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .ohm-contact-left { flex: 0 0 41.6667%; max-width: 41.6667%; } }
.ohm-contact-left h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.ohm-contact-intro {
  font-size: 1.15rem;
  color: var(--white-80);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 420px;
}
.ohm-contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ohm-contact-service-areas {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(244,244,248,0.1);
}
.ohm-contact-service-areas-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.ohm-contact-service-areas-list {
  color: rgba(244,244,248,0.7);
  font-weight: 300;
  line-height: 1.7;
}
.ohm-contact-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
}
.ohm-contact-link-item:hover { color: var(--gold); }
.ohm-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}
.ohm-contact-link-item:hover .ohm-contact-icon {
  background: var(--gold);
  color: var(--navy);
}
.ohm-contact-link-item span {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.ohm-contact-right {
  width: 100%;
}
@media (min-width: 1024px) { .ohm-contact-right { flex: 0 0 58.3333%; max-width: 58.3333%; } }

.ohm-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.ohm-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .ohm-form-row { grid-template-columns: 1fr 1fr; } }
.ohm-form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.ohm-form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  font-weight: 500;
}
.ohm-form-field input,
.ohm-form-field select,
.ohm-form-field textarea {
  background: rgba(244,244,248,0.05);
  border: 1px solid rgba(244,244,248,0.15);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.ohm-form-field input:focus,
.ohm-form-field select:focus,
.ohm-form-field textarea:focus { border-color: var(--gold); }
.ohm-form-field select option { background: var(--navy); }
.ohm-form-field textarea { resize: vertical; min-height: 120px; }
/* Native home-page contact form submit button */
.ohm-form-submit-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.ohm-form-submit-btn:hover:not(:disabled) { background: var(--white); }
.ohm-form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success state */
.ohm-contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(232,160,32,0.3);
  background: rgba(244,244,248,0.05);
  min-height: 360px;
}
.ohm-contact-success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.ohm-contact-success h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.ohm-contact-success p {
  color: var(--white-60);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 360px;
  line-height: 1.7;
}

.wpcf7-submit {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.5rem;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 9999px;
  transition: background 0.2s;
  align-self: flex-start;
  font-family: var(--font-body);
}
.wpcf7-submit:hover { background: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.ohm-footer {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid var(--white-10);
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.ohm-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .ohm-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 0.8fr; } }
.ohm-footer-logo img { height: 64px; width: auto; margin-bottom: 1rem; }
.ohm-footer-tagline { font-size: 0.8rem; color: var(--white-50); font-weight: 300; letter-spacing: 0.05em; }
.ohm-footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.ohm-footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.ohm-footer-col ul li a { font-size: 0.85rem; color: var(--white-60); transition: color 0.2s; }
.ohm-footer-col ul li a:hover { color: var(--gold); }
.ohm-footer-social { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.ohm-footer-social a { color: var(--white-40); transition: color 0.2s; font-size: 1.1rem; }
.ohm-footer-social a:hover { color: var(--gold); }
.ohm-footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.ohm-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--white-10);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .ohm-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.ohm-footer-bottom p { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-40); }
.ohm-footer-bottom-links { display: flex; gap: 1.5rem; }
.ohm-footer-bottom-links a { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-40); transition: color 0.2s; }
.ohm-footer-bottom-links a:hover { color: var(--white); }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.ohm-service-hero {
  min-height: 65vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}
.ohm-service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,160,32,0.05) 0%, transparent 60%);
}
.ohm-service-hero-back {
  position: relative; z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,160,32,0.7);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.ohm-service-hero-back:hover { color: var(--gold); }
.ohm-service-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  max-width: 800px;
  position: relative; z-index: 2;
  margin-bottom: 1.25rem;
}
.ohm-service-hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  margin-bottom: 3rem;
  position: relative; z-index: 2;
}
.ohm-service-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative; z-index: 2;
}

.ohm-service-overview {
  padding: 7rem 0;
  background: var(--white);
}
.ohm-service-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .ohm-service-overview-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.ohm-service-overview h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.ohm-service-overview > .ohm-container .ohm-service-overview-grid > div > p:not(.ohm-eyebrow) {
  font-size: 1.15rem;
  color: rgba(7,13,26,0.7);
  font-weight: 300;
  line-height: 1.8;
}
.ohm-highlights { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1rem; }
.ohm-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ohm-highlight-icon {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ohm-highlight-icon svg { width: 13px; height: 13px; stroke: var(--navy); stroke-width: 3; fill: none; }
.ohm-highlight p { font-size: 1.05rem; color: rgba(7,13,26,0.8); font-weight: 300; line-height: 1.5; }

.ohm-included-section {
  padding: 7rem 0;
  background: var(--navy);
  color: var(--white);
}
.ohm-included-section h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 4rem; }
.ohm-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .ohm-included-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ohm-included-grid { grid-template-columns: repeat(3, 1fr); } }
.ohm-included-card {
  border: 1px solid var(--white-10);
  padding: 2.5rem;
  transition: border-color 0.3s;
}
.ohm-included-card:hover { border-color: var(--gold-50); }
.ohm-included-card-bar {
  width: 2rem; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  transition: width 0.5s;
}
.ohm-included-card:hover .ohm-included-card-bar { width: 3.5rem; }
.ohm-included-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.ohm-included-card:hover h3 { color: var(--gold); }
.ohm-included-card p { font-size: 0.9rem; color: var(--white-50); font-weight: 300; line-height: 1.7; }

.ohm-who-for-section {
  padding: 7rem 0;
  background: var(--white);
}
.ohm-who-for-section h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 4rem; }
.ohm-who-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) { .ohm-who-for-grid { grid-template-columns: 1fr 1fr; } }
.ohm-who-for-card {
  border: 1px solid var(--navy-8);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}
.ohm-who-for-card:hover { border-color: rgba(232,160,32,0.4); background: rgba(232,160,32,0.04); }
.ohm-who-for-quote { font-family: var(--font-heading); font-size: 3rem; color: var(--gold); line-height: 1; font-style: italic; flex-shrink: 0; margin-top: 0.25rem; }
.ohm-who-for-card p { font-size: 1rem; color: rgba(7,13,26,0.7); font-weight: 300; line-height: 1.7; }

.ohm-service-cta {
  padding: 7rem 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ohm-service-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,160,32,0.05) 0%, transparent 60%);
}
.ohm-service-cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.ohm-service-cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1.25rem; }
.ohm-service-cta p { font-size: 1.15rem; color: var(--white-80); font-weight: 300; line-height: 1.8; margin-bottom: 3rem; }
.ohm-service-cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.ohm-service-nav {
  padding: 2.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--navy-8);
}
.ohm-service-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ohm-service-nav a {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(7,13,26,0.5);
  transition: color 0.2s;
}
.ohm-service-nav a:hover { color: var(--navy); }
.ohm-service-nav a span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.ohm-service-nav a strong { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400; }
.ohm-service-nav .ohm-nav-prev { margin-right: auto; }
.ohm-service-nav .ohm-nav-next { margin-left: auto; text-align: right; }

/* ============================================
   QUOTE ICON
   ============================================ */
.ohm-quote-icon {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}
.ohm-quote-icon svg { width: 48px; height: 48px; }

/* ============================================
   INLINE CONTACT FORM (service pages)
   ============================================ */
.ohm-inline-form-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.ohm-inline-form-wrap.open { max-height: 800px; }
.ohm-inline-form-connector {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(232,160,32,0.6), transparent);
  margin: 0 auto 1.5rem;
}
.ohm-inline-form-panel {
  background: rgba(244,244,248,0.05);
  border: 1px solid rgba(244,244,248,0.1);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  text-align: left;
}
.ohm-inline-form-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(244,244,248,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: color 0.2s;
}
.ohm-inline-form-close:hover { color: var(--white); }
.ohm-inline-form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.ohm-inline-form-panel h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.ohm-inline-form-sub {
  font-size: 0.875rem;
  color: rgba(244,244,248,0.5);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.ohm-inline-form-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(244,244,248,0.1);
}
.ohm-inline-form-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(244,244,248,0.7);
  transition: color 0.2s;
}
.ohm-inline-form-links a:hover { color: var(--gold); }
.ohm-inline-form-links svg { stroke: currentColor; }
.ohm-inline-form { display: flex; flex-direction: column; gap: 0.875rem; }
.ohm-inline-form-row { display: grid; grid-template-columns: 1fr; gap: 0.875rem; }
@media (min-width: 640px) { .ohm-inline-form-row { grid-template-columns: 1fr 1fr; } }
.ohm-inline-field input,
.ohm-inline-field textarea {
  width: 100%;
  background: rgba(244,244,248,0.08);
  border: 1px solid rgba(244,244,248,0.15);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.ohm-inline-field input::placeholder,
.ohm-inline-field textarea::placeholder { color: rgba(244,244,248,0.35); }
.ohm-inline-field input:focus,
.ohm-inline-field textarea:focus { border-color: var(--gold); }
.ohm-inline-field textarea { resize: vertical; min-height: 100px; }
.ohm-inline-form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0.75rem;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}
.ohm-inline-form-submit:hover { background: var(--white); }
.ohm-inline-form-privacy {
  font-size: 0.7rem;
  color: rgba(244,244,248,0.3);
  text-align: center;
  letter-spacing: 0.03em;
}
.ohm-inline-form-check {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--navy);
}
.ohm-inline-form-success {
  text-align: center;
  padding: 2rem 0;
}
.ohm-inline-form-success h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.ohm-inline-form-success p {
  font-size: 0.9rem;
  color: rgba(244,244,248,0.6);
  font-weight: 300;
}

/* btn as button (not anchor) */
button.ohm-btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
button.ohm-btn-primary:hover { background: var(--white); }

/* CTA section uses navy bg so eyebrow must be gold */
.ohm-service-cta .ohm-eyebrow { color: var(--gold); }

/* Testimonials author span */
.ohm-testimonial-author span { color: rgba(244,244,248,0.5); font-size: 0.85em; }

/* ============================================
   UTILITY
   ============================================ */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ============================================================
   OHM ACCESSIBILITY WIDGET
   ============================================================ */
@keyframes ohm-a11y-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5), 0 4px 16px rgba(37,99,235,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(37,99,235,0), 0 4px 16px rgba(37,99,235,0.3); }
}

#ohm-a11y-wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#ohm-a11y-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2563eb;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: ohm-a11y-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
#ohm-a11y-trigger:hover { transform: scale(1.08); }
#ohm-a11y-trigger.ohm-a11y-trigger-open {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.35), 0 4px 16px rgba(37,99,235,0.4);
}

#ohm-a11y-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #d4a017;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  color: #070d1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

#ohm-a11y-panel {
  width: 380px;
  max-height: 80vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
#ohm-a11y-panel.ohm-a11y-panel-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ohm-a11y-header {
  background: #2563eb;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.ohm-a11y-header-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.ohm-a11y-header-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ohm-a11y-header-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.ohm-a11y-close {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ohm-a11y-close:hover { background: rgba(255,255,255,0.35); }

.ohm-a11y-grid {
  padding: 1rem;
  overflow-y: auto;
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.ohm-a11y-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 0.5rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  cursor: pointer;
  transition: all 0.18s ease;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  font-family: inherit;
}
.ohm-a11y-tile:hover {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}
.ohm-a11y-tile-active,
.ohm-a11y-tile.ohm-a11y-tile-active {
  border-color: #2563eb !important;
  background: #2563eb !important;
  color: #fff !important;
}
.ohm-a11y-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ohm-a11y-footer {
  padding: 0.875rem 1rem;
  border-top: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.ohm-a11y-reset {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: transparent;
  border: 1.5px solid #2563eb;
  border-radius: 8px;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.ohm-a11y-reset:hover { background: #2563eb; color: #fff; }

/* ============================================================
   SERVICES ARCHIVE (LISTING) PAGE
   ============================================================ */

/* Back-link (services + VA pages) */
.ohm-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,244,248,0.5);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.ohm-back-link:hover { color: var(--gold); }

.ohm-services-page-hero {
  background: var(--navy);
  padding: 9rem 0 5rem;
  border-bottom: 1px solid rgba(212,160,23,.2);
  text-align: center;
}
.ohm-services-page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  max-width: 50rem;
  margin: 0.5rem auto 1.5rem;
}
.ohm-services-page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.ohm-services-hero-sub {
  color: rgba(244,244,248,.7);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 40rem;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
}
.ohm-services-cat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.ohm-cat-pill {
  border: 1px solid rgba(244,244,248,.2);
  color: rgba(244,244,248,.7);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.ohm-cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Category sections */
.ohm-services-cat-section {
  padding: 5rem 0;
}
.ohm-services-cat-section--light { background: var(--off-white, #f4f4f8); }
.ohm-services-cat-section--white { background: #fff; }

.ohm-services-cat-header {
  margin-bottom: 3rem;
  text-align: center;
}
.ohm-services-cat-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--navy);
  margin: 0.5rem 0 1rem;
  font-weight: 700;
}
.ohm-services-cat-desc {
  color: rgba(7,13,26,.6);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 40rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

/* Service cards grid */
.ohm-services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(7,13,26,.12);
}
@media (max-width: 900px) {
  .ohm-services-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ohm-services-cards-grid { grid-template-columns: 1fr; }
}

.ohm-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: inherit;
  text-decoration: none;
  border-right: 1px solid rgba(7,13,26,.12);
  border-bottom: 1px solid rgba(7,13,26,.12);
  transition: background .3s;
}
.ohm-service-card:hover {
  background: var(--navy);
}
.ohm-service-card-bar {
  width: 2rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.75rem;
  transition: width .3s;
}
.ohm-service-card:hover .ohm-service-card-bar {
  width: 4rem;
}
.ohm-service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.875rem;
  line-height: 1.3;
  transition: color .3s;
}
.ohm-service-card:hover h3 {
  color: var(--off-white, #f4f4f8);
}
.ohm-service-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(7,13,26,.6);
  line-height: 1.65;
  flex: 1;
  transition: color .3s;
}
.ohm-service-card:hover p {
  color: rgba(244,244,248,.6);
}
.ohm-service-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ohm-service-card-cta span {
  transition: transform .2s;
}
.ohm-service-card:hover .ohm-service-card-cta span {
  transform: translateX(4px);
}

/* Services bottom CTA */
.ohm-services-cta-section {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
}
.ohm-services-cta-inner {
  max-width: 52rem;
}
.ohm-services-cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--white);
  margin: 0 0 1.25rem;
}
.ohm-services-cta-section p {
  color: rgba(244,244,248,.7);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

/* =========================================================
   VA PROVIDER STRIP (Home Page)
   ========================================================= */
.ohm-va-section {
  background: #f4f4f8;
  border-top: 1px solid rgba(7,13,26,.1);
  border-bottom: 1px solid rgba(7,13,26,.1);
  padding: 3.5rem 0;
}
.ohm-va-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: left;
}
.ohm-va-badge {
  width: 224px;
  height: 224px;
  object-fit: contain;
  flex-shrink: 0;
}
.ohm-va-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: #070d1a;
  margin: 0.25rem 0 0.75rem;
}
.ohm-va-content p {
  color: rgba(7,13,26,.6);
  font-weight: 300;
  line-height: 1.7;
  max-width: 30rem;
  margin: 0 0 1.25rem;
}
.ohm-va-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #070d1a;
  text-decoration: none;
  transition: color .25s;
}
.ohm-va-link:hover { color: #d4a017; }
@media (max-width: 600px) {
  .ohm-va-inner { text-align: center; }
  .ohm-va-content p { margin: 0 auto 1.25rem; }
}

/* =========================================================
   SENSI AI SECTION (Services Page)
   ========================================================= */
.ohm-sensi-section {
  background: #070d1a;
  color: #f4f4f8;
  padding: 6rem 0;
}
.ohm-sensi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .ohm-sensi-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.ohm-sensi-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
.ohm-sensi-content h2 em { color: #d4a017; font-style: italic; }
.ohm-sensi-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244,244,248,.75);
  margin-bottom: 1rem;
}
.ohm-sensi-content > p {
  color: rgba(244,244,248,.65);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ohm-btn-outline-green {
  display: inline-block;
  padding: .75rem 1.75rem;
  border: 1.5px solid #d4a017;
  border-radius: 9999px;
  color: #d4a017;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  text-decoration: none;
  transition: background .25s, color .25s;
}
.ohm-btn-outline-green:hover {
  background: #d4a017;
  color: #070d1a;
}
.ohm-sensi-features { display: flex; flex-direction: column; gap: 1.25rem; }
.ohm-sensi-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(244,244,248,.05);
  border: 1px solid rgba(244,244,248,.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .25s;
}
.ohm-sensi-feature:hover { border-color: rgba(212,160,23,.4); }
.ohm-sensi-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(212,160,23,.1);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d4a017;
}
.ohm-sensi-feature h3 {
  font-size: .95rem;
  font-weight: 600;
  margin: 0 0 .4rem;
  color: #f4f4f8;
}
.ohm-sensi-feature p {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(244,244,248,.55);
  margin: 0;
}

/* =========================================================
   VETERANS PAGE
   ========================================================= */
/* Hero */
.ohm-va-page-hero {
  position: relative;
  background: #070d1a;
  color: #f4f4f8;
  padding: 8rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.ohm-va-page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,160,23,.07) 0%, transparent 60%);
  pointer-events: none;
}
.ohm-va-page-hero-inner { position: relative; max-width: 56rem; margin: 0 auto; }
.ohm-va-page-badge {
  width: 14rem;
  height: 14rem;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}
.ohm-va-page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0.5rem 0 1.25rem;
}
.ohm-va-page-hero h1 em { color: #d4a017; font-style: italic; }
.ohm-va-page-lead {
  font-size: 1.15rem;
  color: rgba(244,244,248,.65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.ohm-va-page-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Overview */
.ohm-va-overview-section {
  background: #f4f4f8;
  padding: 6rem 0;
}
.ohm-va-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .ohm-va-overview-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.ohm-va-overview-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #070d1a;
  margin: .5rem 0 1.25rem;
}
.ohm-va-overview-left p { color: rgba(7,13,26,.65); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }
.ohm-va-overview-right {
  background: #070d1a;
  color: #f4f4f8;
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.ohm-va-checklist { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.ohm-va-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(244,244,248,.8);
  font-weight: 300;
  line-height: 1.5;
}
.ohm-va-checklist li::before {
  content: '✓';
  color: #d4a017;
  font-weight: 700;
  flex-shrink: 0;
}

/* Programs */
.ohm-va-programs-section {
  background: #070d1a;
  color: #f4f4f8;
  padding: 6rem 0;
}
.ohm-va-programs-header { text-align: center; margin-bottom: 3.5rem; }
.ohm-va-programs-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin: .5rem 0 0;
}
.ohm-va-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .ohm-va-programs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ohm-va-programs-grid { grid-template-columns: 1fr; } }
.ohm-va-program-card {
  background: rgba(244,244,248,.05);
  border: 1px solid rgba(244,244,248,.1);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color .25s;
}
.ohm-va-program-card:hover { border-color: rgba(212,160,23,.4); }
.ohm-va-program-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  margin: .25rem 0 .75rem;
}
.ohm-va-program-card p { font-size: .875rem; font-weight: 300; line-height: 1.6; color: rgba(244,244,248,.55); margin: 0; }

/* Eligibility */
.ohm-va-eligibility-section { background: #f4f4f8; padding: 6rem 0; }
.ohm-va-eligibility-header { text-align: center; margin-bottom: 3rem; }
.ohm-va-eligibility-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #070d1a;
  margin: .5rem 0 0;
}
.ohm-va-eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .ohm-va-eligibility-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.ohm-va-eligibility-left p { color: rgba(7,13,26,.65); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }
.ohm-btn-small { padding: .65rem 1.5rem; font-size: .75rem; }
.ohm-va-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(7,13,26,.05);
  border-radius: .75rem;
  padding: 1.25rem;
  margin-bottom: .75rem;
}
.ohm-va-step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #d4a017;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}
.ohm-va-step strong { display: block; font-size: .95rem; color: #070d1a; margin-bottom: .3rem; }
.ohm-va-step p { font-size: .875rem; color: rgba(7,13,26,.6); font-weight: 300; line-height: 1.5; margin: 0; }

/* Why OHM Care */
.ohm-va-why-section { background: #070d1a; color: #f4f4f8; padding: 6rem 0; }
.ohm-va-why-header { text-align: center; margin-bottom: 3.5rem; }
.ohm-va-why-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin: .5rem 0 0;
}
.ohm-va-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .ohm-va-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ohm-va-why-grid { grid-template-columns: 1fr; } }
.ohm-va-why-card {
  background: rgba(244,244,248,.05);
  border: 1px solid rgba(244,244,248,.1);
  border-radius: 1rem;
  padding: 1.75rem;
}
.ohm-va-why-check {
  width: 2rem;
  height: 2rem;
  background: #d4a017;
  border-radius: 50%;
  color: #070d1a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.ohm-va-why-card h3 { font-size: .95rem; font-weight: 600; margin: 0 0 .5rem; color: #f4f4f8; }
.ohm-va-why-card p { font-size: .875rem; font-weight: 300; line-height: 1.6; color: rgba(244,244,248,.5); margin: 0; }

/* Veterans CTA */
.ohm-va-cta-section { background: #070d1a; color: #f4f4f8; padding: 6rem 0; border-top: 1px solid rgba(244,244,248,.08); }
.ohm-va-cta-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.ohm-va-cta-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: .5rem 0 1rem;
}
.ohm-va-cta-inner > p {
  color: rgba(244,244,248,.6);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.ohm-va-contact-form { text-align: left; margin-bottom: 1.5rem; }
.ohm-va-cta-or {
  font-size: .875rem;
  color: rgba(244,244,248,.4);
  margin-top: 1.5rem;
}
.ohm-va-cta-or a { color: rgba(244,244,248,.7); text-decoration: none; font-weight: 500; transition: color .25s; }
.ohm-va-cta-or a:hover { color: #d4a017; }
