/* ============================================================
   Accucare Nurse Staffing — Main Stylesheet
   Design System: Navy + Red
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --navy: #1B3068;
  --teal: #CC2229;
  --teal-dark: #a8192a;
  --gold: #C8993A;
  --bg: #EEF2F8;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #475569;
  --green: #2E7D5E;
  --border: #E2E8EF;
  --shadow: 0 4px 20px rgba(27, 48, 104, 0.10);
  --shadow-md: 0 12px 40px rgba(27, 48, 104, 0.16);
  --radius: 14px;
  --radius-sm: 6px;
  --transition: 0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* --- Typography Scale --- */
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

p {
  line-height: 1.7;
}

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

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--light {
  background: var(--bg);
}

.text-center {
  text-align: center;
}

.text-teal {
  color: var(--teal);
}

.text-gold {
  color: var(--gold);
}

.text-light {
  color: var(--text-light);
}

.lead {
  font-size: 19px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 680px;
}

.section__header {
  margin-bottom: 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
  font-family: inherit;
}

.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

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

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(204, 34, 41, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

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

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: #0a1f38;
  border-color: #0a1f38;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 17px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fbfaf9;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.nav__logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--teal);
  background: rgba(204, 34, 41, 0.06);
}

.nav__link--active {
  color: var(--teal);
  background: transparent;
  border-bottom: 3px solid var(--teal);
  border-radius: 0;
  padding-bottom: 5px;
}

.nav--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.nav--scrolled .nav__inner {
  height: 60px;
  transition: height 0.22s ease;
}

/* Phone */
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}

.nav__phone:hover {
  background: var(--teal-dark);
}

.nav__phone svg {
  width: 15px;
  height: 15px;
}

/* Nav Social Icons */
.nav__socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: white;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__social-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.nav__social-link svg {
  width: 14px;
  height: 14px;
}

.nav__social-link--linkedin { background: #0077B5; }
.nav__social-link--indeed   { background: #2557A7; }

/* Footer Social Icons */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: white;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}

.footer__social-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__social-link--linkedin { background: #0077B5; }
.footer__social-link--indeed   { background: #2557A7; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav__hamburger:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.nav__hamburger:hover {
  background: var(--bg);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile .nav__link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
}

.nav__mobile .nav__phone {
  margin-top: 12px;
  justify-content: center;
  font-size: 16px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,30,64,0.90) 0%, rgba(15,30,64,0.72) 55%, rgba(15,30,64,0.38) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 96px 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 34, 41, 0.18);
  border: 1px solid rgba(204, 34, 41, 0.4);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
}

.hero__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding: 0 28px;
}

.trust-bar__item svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */

.who-we-serve__intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.who-we-serve__grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.who-we-serve__grid .serve-card {
  flex: 0 1 480px;
}

.serve-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.serve-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.serve-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(204, 34, 41, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.serve-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.serve-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.serve-card h3 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 14px;
}

.serve-card p {
  color: var(--text-light);
  margin-bottom: 28px;
  flex: 1;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(204, 34, 41, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 34, 41, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.service-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   STAFFING VERTICALS
   ============================================================ */

.verticals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.vertical-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background var(--transition), transform var(--transition);
}

.vertical-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.vertical-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 34, 41, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vertical-card__icon svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.vertical-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.vertical-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ============================================================
   WHY ACCUCARE
   ============================================================ */

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

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.why-card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  font-weight: 700;
  color: rgba(204, 34, 41, 0.07);
  line-height: 1;
  font-family: 'DM Serif Display', serif;
}

.why-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(204, 34, 41, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.serve-card__icon,
.why-card__icon,
.value-card__icon {
  background: linear-gradient(135deg, rgba(204,34,41,0.14) 0%, rgba(27,48,104,0.10) 100%);
  box-shadow: 0 2px 8px rgba(204, 34, 41, 0.12);
}

.serve-card__icon {
  width: 60px;
  height: 60px;
}

.why-card__icon {
  width: 60px;
  height: 60px;
}

.why-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 20px;
}

.why-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 80px;
  color: var(--teal);
  opacity: 0.2;
  font-family: 'DM Serif Display', serif;
  line-height: 1;
}

.testimonial-card__quote {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 24px;
  padding-top: 16px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(204, 34, 41, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__avatar svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, #1B3068 0%, #0e1e44 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(204, 34, 41, 0.08);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-banner__phone {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 17px 28px;
  transition: border-color var(--transition), background var(--transition);
}

.cta-banner__phone:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.cta-banner__phone svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #0e1e44;
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.footer__brand .nav__logo-text {
  color: var(--white);
}

.footer__brand .nav__logo-text span {
  color: var(--teal);
}

.footer__tagline {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--teal);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: inherit;
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--teal);
}

.footer__quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__quick-links a:hover {
  color: var(--teal);
}

.footer__quick-links a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(204, 34, 41, 0.08);
  pointer-events: none;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 760px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.service-detail {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail__inner {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.service-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 34, 41, 0.08);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-detail h2 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 28px;
}

.service-detail p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.75;
}

.service-detail__best {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 24px;
  border-left: 3px solid var(--teal);
}

.service-detail__best strong {
  color: var(--navy);
}

.service-detail__highlights {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  align-self: start;
  position: sticky;
  top: 100px;
}

.service-detail__highlights h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-detail__highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.service-detail__highlights li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
}

.service-detail__sidebar {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: sticky;
  top: 96px;
}

.service-detail__sidebar h4 {
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail__sidebar p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* ============================================================
   FOR FACILITIES PAGE
   ============================================================ */

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 18px;
}

.step p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   CARE SETTINGS GRID
   ============================================================ */

.care-settings__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.care-setting-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.care-setting-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.care-setting-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 34, 41, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.care-setting-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.care-setting-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 16px;
}

.care-setting-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-section {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

.form-section h2 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 28px;
}

.form-section__lead {
  color: var(--text-light);
  margin-bottom: 36px;
}

.form {
  display: grid;
  gap: 20px;
}

.form--two-col {
  grid-template-columns: 1fr 1fr;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form__label--required::after {
  content: ' *';
  color: #c0392b;
}

.form__input,
.form__select,
.form__textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(204, 34, 41, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #a0aab4;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235C6B7A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  font-size: 13px;
  color: #c0392b;
  display: none;
}

.form__input--error,
.form__select--error,
.form__textarea--error {
  border-color: #c0392b;
}

.form__honeypot {
  display: none !important;
}

.form__submit {
  grid-column: 1 / -1;
}

.form__success {
  display: none;
  background: rgba(46, 125, 94, 0.1);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.form__success h3 {
  color: var(--green);
  margin-bottom: 8px;
}

.form__success p {
  color: var(--text-light);
}

/* Checkboxes */
.form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.form__checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
}

/* ============================================================
   JOIN OUR TEAM PAGE
   ============================================================ */

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

.requirements-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.requirements-list__item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.requirements-list__item span {
  font-size: 15px;
  color: var(--text);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.role-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.role-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(204, 34, 41, 0.3);
}

.role-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 34, 41, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.role-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.role-card h4 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 6px;
}

.role-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-grid__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-grid__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.story-grid__content h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.story-grid__content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.pull-quote {
  margin: 48px 0;
  padding: 40px 44px;
  background: var(--navy);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.06);
  font-family: 'DM Serif Display', serif;
  line-height: 1;
  pointer-events: none;
}

.pull-quote__text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--white);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(204, 34, 41, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.value-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 96px;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 28px;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 34, 41, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.contact-detail__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-detail__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.contact-detail__value a {
  color: var(--teal);
  transition: color var(--transition);
}

.contact-detail__value a:hover {
  color: var(--teal-dark);
}

.urgent-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 0;
}

.urgent-callout strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}

.urgent-callout p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
}

.urgent-callout a {
  font-weight: 700;
  color: var(--teal);
}

.urgent-callout .btn {
  color: var(--white);
}

/* ============================================================
   BENEFITS LIST (join-our-team)
   ============================================================ */

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefits-list__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(204, 34, 41, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits-list__icon svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.benefits-list__text strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}

.benefits-list__text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   TWO COLUMN SECTION
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col--wide {
  grid-template-columns: 1.2fr 1fr;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__list a {
  color: var(--teal);
  transition: color var(--transition);
}

.breadcrumb__list a:hover {
  color: var(--teal-dark);
}

.breadcrumb__sep {
  color: var(--border);
}

/* ============================================================
   MISC COMPONENTS
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--teal {
  background: rgba(204, 34, 41, 0.09);
  color: var(--teal);
}

.badge--gold {
  background: rgba(204, 34, 41, 0.06);
  color: var(--gold);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.stat-block {
  text-align: center;
}

.stat-block__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'DM Serif Display', serif;
}

.stat-block__label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 48px 40px;
  background: var(--navy);
  border-radius: var(--radius);
  margin: 48px 0;
}

/* ============================================================
   NOTICE BAR (for-facilities urgency)
   ============================================================ */

.notice-bar {
  background: rgba(204, 34, 41, 0.06);
  border: 1px solid rgba(204, 34, 41, 0.25);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.notice-bar svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.notice-bar p {
  font-size: 15px;
  color: var(--text);
}

.notice-bar strong {
  color: var(--navy);
}

/* ============================================================
   SKIP LINK (accessibility)
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}


/* ============================================================
   BRAND LOGO (real image + footer wordmark)
   ============================================================ */

.nav__logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.footer__logo-wordmark {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.footer__logo-wordmark span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .verticals__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

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

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

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

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

  .two-col,
  .two-col--wide {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    position: static;
  }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  html { font-size: 16px; }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .section { padding: 60px 0; }

  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  /* Show phone in nav on mobile as inline text */
  .nav__phone--mobile-show {
    display: flex !important;
  }

  .hero__content { padding: 64px 0; }
  .hero h1 { font-size: 32px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-bar__divider { display: none; }
  .trust-bar__grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .who-we-serve__grid { grid-template-columns: 1fr; }

  .services-grid__grid { grid-template-columns: 1fr; }

  .verticals__grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .how-it-works__steps {
    grid-template-columns: 1fr;
  }

  .how-it-works__steps::before { display: none; }

  .care-settings__grid { grid-template-columns: 1fr 1fr; }

  .roles-grid { grid-template-columns: 1fr 1fr; }

  .values-grid { grid-template-columns: 1fr; }

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

  .cta-banner__actions { flex-direction: column; }

  .form--two-col {
    grid-template-columns: 1fr;
  }

  .form--two-col .form__group--full {
    grid-column: 1;
  }

  .form-section { padding: 28px 20px; }

  .service-detail__inner {
    grid-template-columns: 1fr;
  }

  .service-detail__highlights {
    position: static;
  }

  .service-detail__sidebar {
    position: static;
  }

  .stats-row { grid-template-columns: 1fr 1fr; }

  .page-hero { padding: 52px 0; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 16px; }

  .pull-quote { padding: 28px 24px; }
  .pull-quote__text { font-size: 18px; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small mobile: ≤480px */
@media (max-width: 480px) {
  .care-settings__grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }

  .serve-card { padding: 28px 24px; }

  .contact-cards-grid { grid-template-columns: 1fr !important; }
  .location-grid { grid-template-columns: 1fr !important; }
}

/* Contact page card/location grids — tablet */
@media (max-width: 768px) {
  .contact-cards-grid { grid-template-columns: 1fr !important; }
  .location-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ============================================================
   LEAD CAPTURE MODAL
   ============================================================ */

.lead-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lead-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.22s ease;
}

.lead-modal-overlay.is-open .lead-modal {
  transform: translateY(0) scale(1);
}

.lead-modal__header {
  background: var(--navy);
  padding: 28px 32px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lead-modal__header-text h2 {
  color: var(--white);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 6px;
}

.lead-modal__header-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.lead-modal__close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--transition);
}

.lead-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lead-modal__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.lead-modal__body {
  padding: 28px 32px 32px;
}

.lead-modal__form .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-modal__form .form__group {
  margin-bottom: 18px;
}

.lead-modal__form .form__group:last-of-type {
  margin-bottom: 0;
}

.lead-modal__form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.lead-modal__form .form__required {
  color: var(--teal);
}

.lead-modal__form .form__input,
.lead-modal__form .form__select,
.lead-modal__form .form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

.lead-modal__form .form__input:focus,
.lead-modal__form .form__select:focus,
.lead-modal__form .form__textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 48, 104, 0.12);
}

.lead-modal__form .form__input--error,
.lead-modal__form .form__select--error,
.lead-modal__form .form__textarea--error {
  border-color: #c0392b;
}

.lead-modal__form .form__error {
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.lead-modal__form .form__textarea {
  resize: vertical;
  min-height: 90px;
}

.lead-modal__submit-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-modal__submit-row .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px 24px;
}

.lead-modal__disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.lead-modal__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 8px 0 16px;
}

.lead-modal__choice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.lead-modal__choice-btn:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(204, 34, 41, 0.12);
  transform: translateY(-2px);
}

.lead-modal__choice-icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 34, 41, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.lead-modal__choice-icon svg {
  width: 22px;
  height: 22px;
}

.lead-modal__choice-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.lead-modal__choice-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.lead-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 0 16px;
  transition: color var(--transition);
}

.lead-modal__back:hover {
  color: var(--navy);
}

.lead-modal__back svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  .lead-modal__choices {
    grid-template-columns: 1fr;
  }
}

.lead-modal__success {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}

.lead-modal__success-icon {
  width: 56px;
  height: 56px;
  background: #e8f5ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lead-modal__success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.lead-modal__success h3 {
  font-size: 20px;
  color: var(--text);
  margin: 0 0 10px;
}

.lead-modal__success p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .lead-modal__header { padding: 22px 20px 18px; }
  .lead-modal__body { padding: 20px 20px 24px; }
  .lead-modal__form .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Mission & Vision ─────────────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.mv-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.mv-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.mv-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  line-height: 1.65;
  color: white;
  flex: 1;
}

@media (max-width: 767px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}
