@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #1B2F5E;
  --navy-dark: #101D3E;
  --navy-light: #2A4080;
  --red: #C0272D;
  --red-light: #E8434A;
  --cream: #F8F5F0;
  --cream-dark: #EDE8E0;
  --white: #FFFFFF;
  --gray-100: #F4F4F6;
  --gray-200: #E8E8EE;
  --gray-400: #9A9AAF;
  --gray-600: #5A5A72;
  --gray-800: #2E2E3E;
  --text: #1A1A2E;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(27,47,94,0.10);
  --shadow-lg: 0 8px 48px rgba(27,47,94,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TOPBAR ---- */
.topbar { background: var(--navy-dark); padding: 8px 40px; display: flex; justify-content: space-between; align-items: center; }
.topbar-left { font-size: 12px; color: #E3EBF6; display: flex; align-items: center; gap: 20px; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; gap: 20px; }
.topbar-right a { font-size: 12px; color: #E3EBF6; font-weight: 500; transition: color 0.2s; }
.topbar-right a:hover { color: #fff; }

/* ---- NAV ---- */
.navbar { background: var(--white); padding: 0 40px; display: flex; align-items: stretch; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(27,47,94,0.07); }
.nav-logo { display: flex; align-items: center; padding: 10px 24px 10px 0; border-right: 1px solid var(--gray-200); margin-right: 8px; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; flex: 1; align-items: stretch; }
.nav-link { display: flex; align-items: center; padding: 0 16px; font-size: 13px; font-weight: 600; color: #34344A; border-bottom: 3px solid transparent; transition: all 0.2s; white-space: nowrap; cursor: pointer; }
.nav-link:hover, .nav-link.active { color: var(--navy); border-bottom-color: var(--red); }
.nav-cta, .nav-staff { align-self: center; display: inline-flex; align-items: center; justify-content: center; min-height: 38px; color: var(--white); font-size: 12px; font-weight: 600; white-space: nowrap; padding: 8px 13px; border: 1px solid transparent; border-radius: 6px; transition: all 0.2s; }
.nav-cta { margin-left: 0; }
.nav-staff { margin-left: auto; margin-right: 10px; background: var(--navy); border-color: var(--navy); }
.nav-cta { background: var(--red); border-color: var(--red); }
.nav-staff:hover { color: var(--white); background: var(--navy-light); border-color: var(--navy-light); }
.nav-cta:hover { color: var(--white); background: var(--red-light); border-color: var(--red-light); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; background: var(--navy-dark); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, #2A3F7A 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 28px 28px; }
.hero-accent { position: absolute; right: -80px; top: -80px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(192,39,45,0.25) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,39,45,0.2); border: 1px solid rgba(192,39,45,0.4); color: #FF8A8E; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: #FF8A8E; }
.hero-desc { font-size: 16px; color: #A8BDD6; line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: #fff; padding: 14px 28px; border-radius: 30px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,39,45,0.35); }
.btn-secondary { background: transparent; color: #fff; padding: 13px 28px; border-radius: 30px; font-size: 14px; font-weight: 600; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 20px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 16px; }
.hero-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateX(4px); }
.hc-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(192,39,45,0.25); display: flex; align-items: center; justify-content: center; color: #FF8A8E; font-size: 22px; flex-shrink: 0; }
.hc-text h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hc-text p { font-size: 12px; color: #A8BDD6; line-height: 1.5; }
.hc-arrow { margin-left: auto; color: #A8BDD6; font-size: 16px; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--red); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 34px; color: #fff; line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 6px; line-height: 1.4; }

/* ---- SECTIONS ---- */
.section { padding: 72px 40px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 72px 40px; }
.sec-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.sec-title { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.sec-sub { font-size: 15px; color: var(--gray-600); line-height: 1.75; max-width: 580px; margin-bottom: 40px; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; cursor: pointer; }
.svc-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.svc-card-top { padding: 24px; background: var(--cream); border-bottom: 1px solid var(--gray-200); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 16px; }
.svc-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.svc-card p { font-size: 13px; color: var(--gray-600); line-height: 1.65; }
.svc-card-body { padding: 16px 24px 20px; }
.svc-list li { font-size: 13px; color: var(--gray-600); padding: 5px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--gray-100); }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: '✓'; color: var(--red); font-weight: 700; font-size: 13px; }
.svc-learn { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--navy); padding: 14px 24px; border-top: 1px solid var(--gray-200); transition: gap 0.2s; }
.svc-card:hover .svc-learn { gap: 10px; color: var(--red); }

/* ---- TWO COL SPLIT ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-block { padding: 60px 48px; }
.split-block.navy { background: var(--navy); }
.split-block.navy .sec-eyebrow { color: #8FAAD4; }
.split-block.navy .sec-title { color: #fff; }
.split-block.navy p { color: #A8BDD6; }
.split-block.navy li { color: #A8BDD6; }
.split-block.cream { background: var(--cream); }
.split-block.cream .sec-title { color: var(--navy); }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; padding: 6px 0; }
.check-list li::before { content: '✓'; min-width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.split-block.navy .check-list li::before { background: rgba(192,39,45,0.6); }

/* ---- TESTIMONIALS ---- */
.testi-section { background: var(--cream); padding: 72px 40px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.testi-stars { color: var(--red); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; line-height: 1.7; color: var(--navy); margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 13px; color: var(--navy); }
.testi-author span { font-size: 12px; color: var(--gray-400); }

/* ---- RESOURCES ---- */
.res-tabs { position: sticky; top: 73px; z-index: 55; display: flex; gap: 0; border: 1px solid var(--gray-200); border-radius: var(--radius); width: 100%; overflow-x: auto; margin-bottom: 32px; background: var(--white); box-shadow: 0 6px 14px rgba(27,47,94,.08); scrollbar-width: thin; }
.res-tab { flex: 1 0 auto; padding: 10px 24px; font-size: 13px; font-weight: 500; text-align: center; white-space: nowrap; cursor: pointer; background: var(--gray-100); color: var(--gray-600); border-right: 1px solid var(--gray-200); transition: all 0.2s; }
.res-tab:last-child { border-right: none; }
.res-tab.active, .res-tab:hover { background: var(--navy); color: #fff; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.employee-resource-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
#employee-panel .res-card:nth-child(odd) { background: var(--navy); border-color: var(--navy); }
#employee-panel .res-card:nth-child(even) { background: var(--red); border-color: var(--red); }
.res-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; cursor: pointer; transition: all 0.2s; background: var(--white); }
.res-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.res-panel .res-card:nth-child(3n + 1), .res-panel .res-card:nth-child(3n) { background: var(--navy); border-color: var(--navy); }
.res-panel .res-card:nth-child(3n + 2) { background: var(--red); border-color: var(--red); }
.res-icon { width: fit-content; min-width: 54px; height: 34px; padding: 0 10px; border-radius: 6px; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 10px; font-weight: 800; margin: 0 auto 14px; }
.res-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.res-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.res-card-link { display: inline-block; margin-top: 14px; color: var(--navy); font-size: 12px; font-weight: 600; }
.res-card:hover .res-card-link { color: var(--red); }
.res-card.is-disabled { cursor: not-allowed; opacity: 0.62; filter: grayscale(0.25); }
.res-card.is-disabled:hover { box-shadow: none; transform: none; }
.res-panel .res-card { text-align: center; }
.res-panel .res-card h4, .res-panel .res-card p, .res-panel .res-card .res-card-link { color: var(--white); }
.res-panel .res-card:nth-child(3n + 2) .res-icon { color: var(--red); }
.res-panel .res-card:hover .res-card-link { color: var(--white); }

/* ---- REFERRAL SECTION ---- */
.referral-section { background: var(--navy-dark); padding: 72px 40px; }
.referral-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ref-steps { display: flex; flex-direction: column; gap: 20px; }
.ref-step { display: flex; gap: 16px; align-items: flex-start; }
.rs-num { width: 32px; height: 32px; border-radius: 50%; background: var(--red); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.rs-text h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.rs-text p { font-size: 13px; color: #8FAAD4; line-height: 1.6; }

/* ---- CAREERS ---- */
.careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.career-card { border: 1px solid var(--navy); border-radius: var(--radius-lg); padding: 24px; cursor: pointer; transition: all 0.25s; background: var(--navy); text-align: center; }
.career-card:nth-child(2n) { border-color: var(--red); background: var(--red); }
.career-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-3px); }
.cc-icon { width: fit-content; min-width: 48px; height: 34px; padding: 0 10px; border-radius: 6px; background: var(--white); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; margin: 0 auto 16px; }
.career-card:nth-child(2n) .cc-icon { color: var(--red); }
.career-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.career-card p { font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.6; margin-bottom: 12px; }
.career-badge { display: inline-block; background: var(--white); color: var(--navy); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; }
.career-card:nth-child(2n) .career-badge { color: var(--red); }
.job-mark { width: fit-content; min-width: 48px; height: 36px; padding: 0 10px; display: grid; place-items: center; flex-shrink: 0; border-radius: 6px; color: var(--white); background: var(--navy); font-size: 10px; font-weight: 800; }
.job-mark.red { background: var(--red); }

/* ---- BLOG ---- */
.blog-section { background: var(--gray-100); padding: 72px 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.blog-card { display: block; background: var(--navy); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all 0.25s; border: 1px solid var(--navy); }
.blog-card:nth-child(3n + 2) { background: var(--red); border-color: var(--red); }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-img { height: 72px; display: flex; align-items: flex-end; justify-content: center; background: transparent; }
.blog-img span { min-width: 58px; height: 34px; padding: 0 10px; display: grid; place-items: center; border-radius: 6px; color: var(--navy); background: var(--white); font-size: 9px; font-weight: 800; }
.blog-card:nth-child(3n + 2) .blog-img span { color: var(--red); }
.blog-body { padding: 18px 20px 20px; }
.blog-tag { font-size: 11px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; text-align: center; }
.blog-card h4 { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 8px; text-align: center; }
.blog-body > span { display: block; font-size: 12px; color: rgba(255,255,255,.78); text-align: center; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--red); padding: 60px max(40px, calc((100% - 1200px) / 2)); display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: center; gap: 70px; }
.cta-left { min-width: 0; }
.cta-left h2 { font-family: 'Playfair Display', serif; font-size: 34px; color: #fff; margin-bottom: 8px; max-width: 620px; line-height: 1.3; }
.cta-left p { max-width: 720px; font-size: 15px; color: rgba(255,255,255,0.88); }
.cta-right { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding-left: 36px; border-left: 1px solid rgba(255,255,255,.3); }
.cta-phone { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; display: flex; align-items: center; gap: 10px; }
.cta-phone-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: -8px; }
.btn-white { background: #fff; color: var(--red); padding: 13px 28px; border-radius: 30px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.referral-intro > .sec-eyebrow,
.referral-intro > .sec-title,
.referral-intro > p,
.referral-intro .rs-text h4,
.referral-intro .rs-text p { color: var(--navy) !important; }
.referral-intro .rs-num { color: var(--white); background: var(--red); }

/* ---- BLOG ARTICLES ---- */
.article-backbar { position: sticky; top: 73px; z-index: 55; border-bottom: 1px solid var(--gray-200); background: var(--white); box-shadow: 0 6px 14px rgba(27,47,94,.06); }
.article-backbar > div { max-width: 900px; min-height: 54px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.article-backbar a { color: var(--navy); font-size: 13px; font-weight: 700; }
.article-backbar span { color: var(--gray-400); font-size: 12px; }
.article-main { padding: 64px 40px; background: var(--gray-100); }
.article-content { max-width: 820px; margin: 0 auto; padding: 48px; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); }
.article-meta { color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.article-content h1 { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.18; margin-bottom: 16px; }
.article-deck { color: var(--gray-600); font-size: 17px; line-height: 1.75; margin-bottom: 30px; }
.article-content h2 { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 25px; margin: 32px 0 10px; }
.article-content p, .article-content li { color: var(--gray-600); font-size: 15px; line-height: 1.85; }
.article-content ul { list-style: disc; padding-left: 22px; margin: 10px 0 20px; }
.article-disclaimer { margin-top: 36px; padding: 18px 20px; border-left: 4px solid var(--red); background: #EEF3FA; }
@media (max-width: 820px) {
  .cta-banner { grid-template-columns: 1fr; gap: 30px; }
  .cta-right { padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,.3); border-left: 0; }
}
@media (max-width: 600px) {
  .article-main { padding: 36px 16px; }
  .article-content { padding: 30px 22px; }
  .article-content h1 { font-size: 34px; }
}

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); padding: 56px 40px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* ---- FAQ ACCORDIONS / CONTACT / LEGAL ---- */
.faq-section { padding: 76px 40px; background: var(--white); }
.faq-inner { max-width: 980px; margin: 0 auto; }
.faq-heading { max-width: 680px; margin-bottom: 32px; }
.faq-heading p { color: var(--gray-600); font-size: 15px; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 4px; color: var(--navy); font-size: 15px; font-weight: 600; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { width: 28px; height: 28px; flex: 0 0 28px; border: 1px solid var(--gray-200); border-radius: 50%; position: relative; background: var(--gray-100); }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 2px; background: var(--red); transform: translate(-50%, -50%); }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s; }
.faq-item[open] .faq-toggle { background: var(--navy); border-color: var(--navy); }
.faq-item[open] .faq-toggle::before, .faq-item[open] .faq-toggle::after { background: var(--white); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { padding: 0 52px 22px 4px; }
.faq-answer p { color: var(--gray-600); font-size: 14px; line-height: 1.8; }
.faq-category-nav { position: sticky; top: 73px; z-index: 55; overflow-x: auto; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); background: var(--white); box-shadow: 0 6px 14px rgba(27,47,94,.06); scrollbar-width: thin; }
.faq-category-nav > div { display: flex; align-items: stretch; width: min(980px, 100%); min-width: max-content; margin: 0 auto; }
.faq-category-nav a { flex: 1 0 auto; display: flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 22px; color: var(--gray-600); border-bottom: 3px solid transparent; font-size: 13px; font-weight: 600; white-space: nowrap; }
.faq-category-nav a:hover, .faq-category-nav a.active { color: var(--navy); border-bottom-color: var(--red); }
.about-subnav { position: sticky; top: 73px; z-index: 55; overflow-x: auto; border-bottom: 1px solid var(--gray-200); background: var(--white); box-shadow: 0 6px 14px rgba(27,47,94,.06); scrollbar-width: thin; }
.about-subnav > div { display: flex; align-items: stretch; width: min(980px, 100%); min-width: max-content; margin: 0 auto; }
.about-subnav a { flex: 1 0 auto; display: flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; color: var(--gray-600); border-bottom: 3px solid transparent; font-size: 13px; font-weight: 600; white-space: nowrap; }
.about-subnav a:hover { color: var(--navy); border-bottom-color: var(--red); }
#story, #mission, #accreditation { scroll-margin-top: 126px; }
.contact-intake { background: var(--gray-100); padding: 72px 40px; }
.contact-intake-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 32px; align-items: start; }
.contact-intro { margin-bottom: 28px; }
.contact-intro p { color: var(--gray-600); line-height: 1.75; max-width: 680px; }
.contact-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.contact-choice { position: relative; }
.contact-choice input { position: absolute; opacity: 0; pointer-events: none; }
.contact-choice span { min-height: 76px; display: flex; align-items: center; justify-content: center; padding: 14px; text-align: center; border: 1px solid var(--gray-200); border-radius: 8px; color: var(--navy); background: var(--white); font-size: 13px; font-weight: 600; cursor: pointer; transition: .2s; }
.contact-choice input:checked + span { color: var(--white); background: var(--navy); border-color: var(--navy); box-shadow: inset 0 -4px 0 var(--red); }
.schedule-note { padding: 18px 20px; background: #EEF3FA; border-left: 4px solid var(--navy); color: var(--gray-600); font-size: 13px; line-height: 1.7; margin-bottom: 24px; }
.contact-side-stack { display: grid; gap: 16px; }
.contact-step-card { background: var(--white); border: 1px solid var(--gray-200); padding: 24px; border-radius: 8px; }
.contact-step-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 22px; margin-bottom: 18px; }
.contact-step { display: grid; grid-template-columns: 30px 1fr; gap: 12px; margin-bottom: 18px; }
.contact-step:last-child { margin-bottom: 0; }
.contact-step strong { width: 30px; height: 30px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; font-size: 12px; }
.contact-step h4 { color: var(--navy); font-size: 13px; margin-bottom: 3px; }
.contact-step p { color: var(--gray-600); font-size: 12px; line-height: 1.55; }
.legal-wrap { background: var(--gray-100); padding: 64px 40px; }
.legal-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 48px; align-items: start; }
.legal-nav { position: sticky; top: 112px; background: var(--navy); padding: 22px; border-radius: 8px; }
.legal-nav h2 { color: var(--white); font-size: 13px; text-transform: uppercase; margin-bottom: 14px; }
.legal-nav a { display: block; color: #C8D5E8; font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.legal-nav a:hover, .legal-nav a.active { color: var(--white); }
.legal-document { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 46px; }
.legal-document .effective { color: var(--red); font-weight: 600; font-size: 12px; text-transform: uppercase; margin-bottom: 24px; }
.legal-document h2 { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 25px; margin: 32px 0 10px; }
.legal-document h2:first-of-type { margin-top: 0; }
.legal-document h3 { color: var(--navy); font-size: 16px; margin: 24px 0 8px; }
.legal-document p, .legal-document li { color: var(--gray-600); font-size: 14px; line-height: 1.8; }
.legal-document ul { list-style: disc; padding-left: 20px; margin: 8px 0 18px; }
.legal-document a { color: var(--navy); font-weight: 600; }
.legal-callout { background: #EEF3FA; border-left: 4px solid var(--red); padding: 18px 20px; margin: 22px 0; }
@media (max-width: 768px) {
  .nav-staff { margin-left: auto; font-size: 11px; padding: 8px 10px; }
  .faq-section, .contact-intake, .legal-wrap { padding: 52px 20px; }
  .contact-intake-inner, .legal-layout { grid-template-columns: 1fr; }
  .contact-choice-grid { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .legal-document { padding: 26px 20px; }
}
.footer-logo img { height: 48px; filter: none; }
.footer-tagline { font-size: 13px; color: #C8D5E8; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.9); background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 15px; font-weight: 700; transition: all 0.2s; cursor: pointer; box-shadow: 0 8px 18px rgba(0,0,0,0.14); }
.social-btn:hover { background: var(--cream); border-color: var(--cream); color: var(--red); transform: translateY(-1px); }
.footer-col h5 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #7A90B8; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #5A6E8C; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: #5A6E8C; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: var(--navy); padding: 60px 40px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 42px; color: #fff; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: #E4ECF7; max-width: 580px; margin: 0 auto; line-height: 1.75; }
.breadcrumb { font-size: 12px; color: #C8D5E8; margin-bottom: 16px; }
.breadcrumb a { color: #FFFFFF; font-weight: 600; } .breadcrumb a:hover { color: #FFD4D6; }

/* ---- FORMS ---- */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.form-card .form-sub { font-size: 13px; color: var(--gray-600); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--text); background: var(--gray-100); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--red); color: #fff; padding: 14px; border-radius: 30px; font-size: 15px; font-weight: 600; border: none; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
.form-submit:hover { background: var(--red-light); }

/* ---- CONTACT INFO ---- */
.contact-info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; color: #fff; }
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 24px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-row .ci-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-row .ci-text label { font-size: 11px; color: #8FAAD4; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-row .ci-text p { font-size: 14px; color: #fff; margin-top: 3px; line-height: 1.5; }
.contact-row-no-icon { padding-left: 0; }
.careers-hero p { color: #E4ECF7; }
.mission-section .sec-eyebrow { color: #A21F25; }
.mission-section .sec-title { color: var(--navy-dark); }
.mission-section > div > p { color: #3F4054 !important; }
.career-portal-section { padding: 58px 40px; background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.career-portal-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 50px; align-items: center; }
.career-portal-inner p { max-width: 720px; color: var(--gray-600); font-size: 14px; line-height: 1.75; }
.career-portal-actions { display: grid; gap: 12px; min-width: 240px; }
.career-portal-actions a { justify-content: center; text-align: center; }
.hours-table { width: 100%; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.hours-table tr td { font-size: 13px; padding: 5px 0; color: #A8BDD6; }
.hours-table tr td:last-child { text-align: right; color: #fff; }

/* ---- INSURANCE ---- */
.insurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ins-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; text-align: center; }
.ins-card .ins-icon { font-size: 28px; margin-bottom: 10px; }
.ins-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.ins-card p { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
.insurance-section .ins-card { border: 0; box-shadow: var(--shadow); text-align: left; }
.insurance-section .ins-card:nth-child(1),
.insurance-section .ins-card:nth-child(3) { background: var(--navy); }
.insurance-section .ins-card:nth-child(2) { background: var(--red); }
.insurance-section .ins-card h4,
.insurance-section .ins-card p { color: var(--white); }
.insurance-section .ins-icon { width: fit-content; min-width: 66px; height: 34px; padding: 0 10px; display: grid; place-items: center; border-radius: 6px; color: var(--navy); background: var(--white); font-size: 9px; font-weight: 800; }
.insurance-section .ins-card:nth-child(2) .ins-icon { color: var(--red); }
.insurance-section .ins-card { display: block; transition: transform .2s, box-shadow .2s; }
.insurance-section .ins-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.insurance-section .ins-card span { display: inline-block; margin-top: 14px; color: var(--white); font-size: 12px; font-weight: 700; }

/* ---- INSURANCE DETAILS ---- */
.coverage-subnav { position: sticky; top: 73px; z-index: 55; overflow-x: auto; border-bottom: 1px solid var(--gray-200); background: var(--white); box-shadow: 0 6px 14px rgba(27,47,94,.06); scrollbar-width: thin; }
.coverage-subnav > div { display: flex; width: min(980px, 100%); min-width: max-content; margin: 0 auto; }
.coverage-subnav a { flex: 1 0 auto; min-height: 54px; display: flex; align-items: center; justify-content: center; padding: 0 24px; color: var(--gray-600); border-bottom: 3px solid transparent; font-size: 13px; font-weight: 600; }
.coverage-subnav a:hover { color: var(--navy); border-bottom-color: var(--red); }
.coverage-page { padding: 64px 40px; background: var(--gray-100); }
.coverage-inner { max-width: 980px; margin: 0 auto; display: grid; gap: 28px; }
.coverage-section { scroll-margin-top: 136px; padding: 38px; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); }
.coverage-section h2 { margin-bottom: 8px; color: var(--navy); font-family: 'Playfair Display', serif; font-size: 30px; }
.coverage-section h3 { margin: 24px 0 8px; color: var(--navy); font-size: 16px; }
.coverage-section p, .coverage-section li { color: var(--gray-600); font-size: 14px; line-height: 1.8; }
.coverage-section ul { list-style: disc; padding-left: 20px; }
.coverage-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.coverage-actions a { padding: 10px 16px; border: 1px solid var(--navy); border-radius: 6px; color: var(--navy); font-size: 12px; font-weight: 700; }
.coverage-actions a.primary { color: var(--white); background: var(--navy); }
.coverage-note { margin-top: 20px; padding: 16px 18px; border-left: 4px solid var(--red); background: #EEF3FA; }
.home-health-card { display: block; min-width: 0; padding: 24px; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); text-align: center; transition: transform .2s, border-color .2s, box-shadow .2s; }
.home-health-card:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow-lg); }
.home-health-card span { display: inline-block; margin-top: 14px; color: var(--navy); font-size: 12px; font-weight: 700; }
.home-health-mark { width: fit-content; min-width: 54px; height: 34px; margin: 0 auto 12px; padding: 0 10px; display: grid; place-items: center; border-radius: 6px; color: var(--white); background: var(--navy); font-size: 10px; font-weight: 800; }
.home-health-card:nth-child(2) .home-health-mark { background: var(--red); }
@media (max-width: 600px) {
  .coverage-page { padding: 44px 18px; }
  .coverage-section { padding: 26px 20px; }
}

/* ---- ABOUT ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.value-card { text-align: center; padding: 28px 20px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.mission-section .value-card,
.why-proxima-section .value-card { border: 0; box-shadow: var(--shadow); }
.mission-section .value-card:nth-child(3n + 1),
.why-proxima-section .value-card:nth-child(3n + 1) { background: var(--navy); }
.mission-section .value-card:nth-child(3n + 2) { background: var(--red); }
.mission-section .value-card:nth-child(3n) { background: var(--navy); }
.why-proxima-section .value-card:nth-child(3n + 2) { background: var(--red); }
.why-proxima-section .value-card:nth-child(3n) { background: var(--navy); }
.mission-section .value-card:nth-child(3n + 1) h4,
.mission-section .value-card:nth-child(3n + 1) p,
.mission-section .value-card:nth-child(3n + 2) h4,
.mission-section .value-card:nth-child(3n + 2) p,
.mission-section .value-card:nth-child(3n) h4,
.mission-section .value-card:nth-child(3n) p,
.why-proxima-section .value-card:nth-child(3n + 1) h4,
.why-proxima-section .value-card:nth-child(3n + 1) p,
.why-proxima-section .value-card:nth-child(3n + 2) h4,
.why-proxima-section .value-card:nth-child(3n + 2) p,
.why-proxima-section .value-card:nth-child(3n) h4,
.why-proxima-section .value-card:nth-child(3n) p { color: var(--white); }
.mission-section .value-icon,
.why-proxima-section .value-icon { width: 48px; height: 48px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 8px; background: var(--white); }
.hearts-intro { margin: -20px auto 30px; color: var(--navy); font-size: 13px; text-align: center; }
.hearts-intro strong { color: var(--red); letter-spacing: .12em; }
.mission-section .value-heading { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.mission-section .value-heading h4 { margin: 0; }
.mission-section .value-mark { width: 38px; min-width: 38px; height: 34px; margin: 0; border-radius: 6px; color: var(--navy); font-size: 14px; font-weight: 800; letter-spacing: 0; }
.mission-section .value-card:nth-child(3n + 2) .value-mark { color: var(--red); }
.why-proxima-section .value-card { display: block; transition: transform .2s, box-shadow .2s; }
.why-proxima-section .value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-heading { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; text-align: center; }
.benefit-heading h4 { margin: 0; }
.why-proxima-section .benefit-mark { width: auto; min-width: 48px; height: 34px; margin: 0; padding: 0 9px; border-radius: 6px; color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: 0; }
.why-proxima-section .value-card:nth-child(3n + 2) .benefit-mark { color: var(--red); }
.benefit-link { display: inline-block; margin-top: 14px; color: var(--white); font-size: 12px; font-weight: 700; }
.benefit-disclaimer { margin-top: 22px; padding: 16px 18px; border-left: 4px solid var(--red); background: var(--gray-100); color: var(--gray-600); font-size: 12px; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.team-card { text-align: center; }
.team-av { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 26px; font-style: italic; color: #fff; }
.team-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
.team-card span { font-size: 12px; color: var(--gray-400); }
.about-highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-highlight-card { min-width: 0; padding: 18px 14px; text-align: center; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); transition: transform .2s, border-color .2s, box-shadow .2s; }
.about-highlight-card:hover { transform: translateY(-2px); border-color: var(--navy); box-shadow: var(--shadow); }
.about-highlight-card span { display: inline-block; margin-top: 10px; color: var(--navy); font-size: 10px; font-weight: 700; }
.detail-backbar { position: sticky; top: 73px; z-index: 57; border-bottom: 1px solid var(--gray-200); background: var(--white); box-shadow: 0 4px 10px rgba(27,47,94,.05); }
.detail-backbar > div { min-height: 54px; max-width: 980px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.detail-backbar a { padding: 9px 13px; border: 1px solid var(--navy); border-radius: 6px; color: var(--navy); font-size: 12px; font-weight: 700; }
.detail-backbar a:hover { color: var(--white); background: var(--navy); }
.detail-backbar span { color: var(--gray-400); font-size: 11px; font-weight: 600; }
.coverage-subnav.stacked-subnav { top: 127px; }
.stacked-subnav + .coverage-page .coverage-section { scroll-margin-top: 200px; }
@media (max-width: 480px) {
  .about-highlight-grid { grid-template-columns: 1fr; }
}
.accreditation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.accreditation-card { min-width: 0; padding: 24px; display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); }
.accreditation-card h4 { margin-bottom: 6px; color: var(--navy); font-size: 14px; font-weight: 600; }
.accreditation-card p { color: var(--gray-600); font-size: 13px; line-height: 1.6; }
.accreditation-mark { width: 50px; min-width: 50px; height: 38px; display: grid; place-items: center; border-radius: 6px; color: var(--white); font-size: 11px; font-weight: 700; }
.accreditation-mark.navy { background: var(--navy); }
.accreditation-mark.red { background: var(--red); }
@media (max-width: 900px) {
  .employee-resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .accreditation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .employee-resource-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .accreditation-grid { grid-template-columns: 1fr; }
}

/* Utility */
.btn-navy { background: var(--navy); color: #fff; padding: 13px 28px; border-radius: 30px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--gray-200); margin: 0; }
.services-page #private-duty,
.services-page #personal-care,
.services-page #home-health,
.services-page #respite,
.services-page #therapy {
  scroll-margin-top: 126px;
}
.service-subnav { overflow-x: auto; scrollbar-width: thin; }
.service-subnav > div { min-width: max-content; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-self: center;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.form-status {
  margin-top: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .topbar {
    padding: 8px 24px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
  }

  .navbar {
    padding: 0 24px;
    align-items: center;
    min-height: 74px;
  }

  .nav-logo {
    border-right: none;
    margin-right: auto;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-link:hover,
  .nav-link.active {
    border-bottom-color: var(--gray-100);
    background: var(--cream);
  }

  .nav-cta,
  .nav-staff {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-left: 10px;
    margin-right: 0;
    padding: 0 18px;
    border-radius: 6px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-cards {
    max-width: 620px;
  }

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

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero-content,
  .section,
  .section-full,
  .testi-section,
  .blog-section,
  .referral-section,
  .page-hero,
  .footer,
  .cta-banner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .sec-title {
    font-size: 30px;
  }

  .stats-bar,
  .services-grid,
  .testi-grid,
  .blog-grid,
  .res-grid,
  .careers-grid,
  .values-grid,
  .team-grid,
  .insurance-grid,
  .referral-inner,
  .split-section,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .career-portal-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section > div[style*="grid-template-columns"],
  .section-full > div[style*="grid-template-columns"],
  .careers-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .split-block {
    padding: 48px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar {
    display: none;
  }

  .navbar {
    min-height: 70px;
    padding: 0 16px;
  }

  .nav-logo {
    padding-right: 8px;
  }

  .nav-logo img {
    height: 44px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    left: 16px;
    right: 16px;
  }

  .hero-content,
  .section,
  .section-full,
  .testi-section,
  .blog-section,
  .referral-section,
  .page-hero,
  .footer,
  .cta-banner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .career-portal-section {
    padding: 48px 18px;
  }

  .hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-badge {
    align-items: flex-start;
    border-radius: 14px;
    white-space: normal;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-btns,
  .cta-right {
    width: 100%;
  }

  .hero-btns a,
  .hero-btns button,
  .cta-right a,
  .cta-right button,
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-navy {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    padding: 16px;
  }

  .cta-phone {
    font-size: 23px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }
}
