:root {
  --red: #c8202d;
  --blue: #2a5f8f;
  --dark: #0f1b2d;
  --cool: #f4f7fa;
  --warm: #f9f7f2;
  --light: #eef3f8;
  --body: "Open Sans", Arial, sans-serif;
  --head: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #444;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 112px 0; }
.top-accent { position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--red), var(--blue)); z-index: 5; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 48px;
  color: #fff;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-nav.scrolled {
  padding-block: 12px;
  color: var(--dark);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42,95,143,.1);
  box-shadow: 0 18px 48px rgba(15,27,45,.08);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; overflow: hidden; }
.brand-mark img { width: 40px !important; height: 40px !important; object-fit: contain; transition: filter .25s ease; }
.site-nav:not(.scrolled) .brand-mark img,
.footer .brand-mark img { filter: brightness(0) invert(1); }
.site-nav.scrolled .brand-mark img { filter: none; }
.brand-text { display: grid; line-height: 1.05; text-transform: uppercase; letter-spacing: .12em; font-family: var(--head); }
.brand-text strong { color: #fff; font-size: 13px; font-weight: 700; transition: color .25s ease; }
.brand-text span { color: rgba(255,255,255,.85); font-size: 11px; font-weight: 700; transition: color .25s ease; }
.site-nav.scrolled .brand-text strong, .footer-brand .brand-text strong { color: var(--red); }
.site-nav.scrolled .brand-text span, .footer-brand .brand-text span { color: var(--blue); }

.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 26px; flex: 1; font-size: 13px; font-weight: 700; }
.nav-links a, .phone-inline { transition: color .2s ease; }
.nav-links a:hover, .phone-inline:hover { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 16px; font-weight: 700; font-size: 13px; }
.phone-inline { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.phone-inline svg { width: 15px; height: 15px; }
.menu-toggle { display: none; color: inherit; background: transparent; border: 0; padding: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: .5rem;
  min-height: 48px;
  padding: 14px 26px;
  font-family: var(--head);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 14px 34px rgba(200,32,45,.22); }
.btn-red:hover { box-shadow: 0 20px 42px rgba(200,32,45,.32); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 16px 34px rgba(42,95,143,.18); }
.btn-blue:hover { opacity: .92; }
.btn-small { min-height: 40px; padding: 10px 20px; font-size: 14px; }
.btn-large { min-height: 56px; padding: 16px 32px; font-size: 16px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  padding: 108px 24px 32px;
  background: #fff;
  transform: translateY(-100%);
  transition: transform .28s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-inner { height: 100%; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a:not(.btn) { color: var(--dark); font-family: var(--head); font-weight: 800; font-size: 20px; }
.mobile-menu-bottom { margin-top: auto; display: grid; gap: 16px; }
.mobile-phone { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--blue) !important; font-size: 16px !important; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 140px 48px 128px;
  color: #fff;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,27,45,.82), rgba(15,27,45,0) 55%),
    linear-gradient(0deg, rgba(15,27,45,.75), rgba(15,27,45,0) 55%),
    url("assets/hero-caregiver.jpg?v=20260721-crop") 58% center/cover;
  transform: scale(1.04);
  transform-origin: center;
}
.hero-content { position: relative; z-index: 2; max-width: 896px; opacity: 0; transform: translateY(22px); animation: rise .9s .12s ease forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-family: var(--head);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span { width: 40px; height: 2px; background: var(--red); display: inline-block; flex: 0 0 40px; }
.eyebrow-on-dark span { width: 12px; flex-basis: 12px; }
h1, h2, h3, h4 { margin: 0; color: var(--dark); font-family: var(--head); line-height: 1.08; }
.hero h1 {
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
h1 em, h2 em { display: block; color: var(--blue); font-style: normal; }
.hero h1 em { color: var(--red); }
.hero p { max-width: 560px; color: rgba(255,255,255,.85); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.call-card { display: flex; align-items: center; gap: 12px; }
.call-card > span { width: 44px; height: 44px; display: grid; place-items: center; background: var(--blue); border-radius: 8px; }
.call-card svg { width: 16px; height: 16px; }
.call-card b { display: grid; color: #fff; font-family: var(--head); line-height: 1.2; }
.call-card small { color: rgba(255,255,255,.6); font: 12px var(--body); }
.scroll-cue { position: absolute; right: 34px; bottom: 34px; z-index: 3; display: grid; justify-items: center; gap: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; font-size: 12px; letter-spacing: .18em; }
.scroll-cue span { writing-mode: vertical-rl; }
.scroll-cue svg { width: 14px; height: 14px; animation: bounce 1.5s infinite; }
@keyframes bounce { 50% { transform: translateY(7px); } }

.trust-bar { padding: 40px 0; background: var(--blue); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-grid div { display: flex; align-items: center; gap: 16px; }
.trust-grid span { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(200,32,45,.25); border-radius: 8px; }
.trust-grid svg { width: 20px; height: 20px; }
.trust-grid b { display: grid; font-family: var(--head); line-height: 1.3; }
.trust-grid small { color: rgba(255,255,255,.65); font: 14px var(--body); }

.about, .process { background: var(--cool); }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.image-feature { position: relative; min-height: 500px; isolation: isolate; }
.image-feature img { position: absolute; inset: 0; }
.blue-block { position: absolute; left: -12px; bottom: -12px; width: 96px; height: 96px; background: var(--blue); z-index: -1; }
.stat-card { position: absolute; right: -16px; bottom: -24px; padding: 24px; background: var(--red); color: #fff; box-shadow: 0 20px 60px rgba(200,32,45,.3); }
.stat-card strong { display: block; font: 700 48px/1 var(--head); }
.stat-card span { color: rgba(255,255,255,.82); font-size: 14px; }
.section-copy { padding-left: 24px; }
.section-copy h2, .section-heading h2, .split-heading h2, .areas-inner h2 { margin-top: 14px; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.section-copy p, .section-heading p { color: #555; }
.check-list { display: grid; gap: 12px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #333; font-size: 14px; }
.check-list svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--red); margin-top: 3px; }

.section-heading { max-width: 680px; margin-bottom: 44px; }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  color: #fff;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--img) center/cover; transition: transform .35s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(15,27,45,.88), transparent); transition: background .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(42,95,143,.22); }
.service-card:hover::before { transform: scale(1.05); }
.service-card:hover::after { background: linear-gradient(0deg, rgba(42,95,143,.93), transparent); }
.service-card > svg { width: 36px; height: 36px; padding: 10px; background: rgba(200,32,45,.25); border-radius: 7px; margin-bottom: 14px; }
.service-card h3 { color: #fff; font-size: 18px; font-weight: 800; }
.service-card p { max-height: 0; margin: 0; opacity: 0; overflow: hidden; color: rgba(255,255,255,.85); font-size: 14px; transition: max-height .3s ease, opacity .3s ease, margin .3s ease; }
.service-card:hover p { max-height: 150px; margin-top: 10px; opacity: 1; }
.hobbies-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start;
  margin-top: 48px;
  padding: 36px;
  background: var(--cool);
  border-left: 5px solid var(--red);
}
.hobbies-panel h3 { margin-top: 14px; font-size: clamp(1.5rem, 3vw, 2.15rem); }
.hobbies-panel p { margin: 0 0 16px; color: #555; }
.hobbies-panel p:last-child { margin-bottom: 0; }

.why-us { background: var(--cool); }
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: stretch; }
.feature-list { display: grid; gap: 16px; margin: 30px 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: #333; }
.feature-list svg { width: 38px; height: 38px; flex: 0 0 38px; padding: 10px; color: var(--red); background: #fff; border-radius: 8px; box-shadow: 0 10px 24px rgba(42,95,143,.08); }
.consult-box {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(42,95,143,.12);
  border-radius: 8px;
}
.consult-box h3 { margin-bottom: 10px; font-size: 24px; }
.consult-box p { margin-bottom: 20px; }
.services-summary {
  padding: 36px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}
.services-summary h3 { color: #fff; font-size: 30px; }
.services-summary p { color: rgba(255,255,255,.72); }
.services-summary ul { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.services-summary li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.services-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.areas { padding: 80px 0; background: var(--light); text-align: center; }
.areas-inner { max-width: 1120px; }
.centered { justify-content: center; }
.centered span:last-child { display: inline-block; }
.areas-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.areas-inner p { max-width: 560px; margin: 18px auto 30px; color: #555; }
.areas-inner a { color: var(--red); font-weight: 800; text-decoration: underline; }
.area-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.area-badges span { padding: 10px 20px; color: var(--blue); background: #fff; border: 1px solid rgba(42,95,143,.2); border-radius: 999px; box-shadow: 0 8px 18px rgba(42,95,143,.08); font-weight: 800; font-size: 14px; transition: transform .2s ease; }
.area-badges span:hover { transform: translateY(-1px); }

.split-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 42px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-img { position: relative; height: 220px; overflow: hidden; border-radius: 16px; background: var(--img) center/cover; }
.step-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,32,45,.65), transparent 65%); }
.step-img strong { position: absolute; top: 16px; left: 16px; z-index: 1; color: #fff; font: 700 40px/1 var(--head); }
.process-grid article > span { position: relative; display: block; width: 8px; height: 8px; margin: 22px 0 14px; border-radius: 50%; background: var(--red); }
.process-grid article:not(:last-child) > span::after { content: ""; position: absolute; top: 3px; left: 16px; width: calc(100% + 260px); height: 1px; background: rgba(74,93,78,.2); }
.process-grid h3 { font-size: 20px; margin-bottom: 10px; }
.process-grid p { color: #666; font-size: 14px; margin: 0; }

.testimonials { background: var(--dark); color: #fff; }
.split-heading.dark h2 { color: #fff; }
.split-heading.dark h2 em { color: var(--red); }
.review-badge { display: flex; align-items: center; gap: 16px; padding: 16px 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; transition: background .2s ease, transform .2s ease; }
.review-badge:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }
.review-badge strong { font: 700 24px/1 var(--head); }
.review-badge span { color: var(--red); font-size: 12px; }
.review-badge b { display: grid; padding-left: 16px; border-left: 1px solid rgba(255,255,255,.15); font-size: 14px; }
.review-badge small { color: rgba(255,255,255,.45); font-weight: 400; }
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testimonial-grid article { padding: 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: transform .2s ease; }
.testimonial-grid article:hover { transform: translateY(-4px); }
.testimonial-grid span { color: var(--red); font-size: 14px; letter-spacing: .08em; }
.testimonial-grid svg { display: block; width: 20px; height: 20px; margin: 20px 0 12px; color: rgba(200,32,45,.6); }
.testimonial-grid p { color: rgba(255,255,255,.78); font-size: 14px; }
.testimonial-grid .text-link { color: #fff; font-weight: 700; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.testimonial-grid hr { border: 0; border-top: 1px solid rgba(255,255,255,.1); margin: 20px 0; }
.testimonial-grid b { display: block; font-family: var(--head); color: #fff; }
.testimonial-grid small { color: rgba(255,255,255,.4); font-size: 12px; }

.contact { background: #fff; }
.contact-grid { align-items: start; }
.contact-list { display: grid; gap: 16px; margin: 30px 0; }
.contact-list a, .contact-list p { display: flex; gap: 16px; align-items: flex-start; margin: 0; }
.contact-list i, .contact-list svg { flex: 0 0 40px; width: 40px; height: 40px; padding: 12px; border-radius: 50%; color: var(--blue); background: rgba(42,95,143,.1); }
.contact-list span { display: grid; color: var(--dark); font-weight: 600; line-height: 1.4; overflow-wrap: anywhere; }
.contact-list small { color: #999; font-size: 12px; text-transform: uppercase; font-weight: 700; }
.contact-list a:hover span { color: var(--red); }
iframe { width: 100%; height: 220px; border: 0; border-radius: 16px; filter: grayscale(20%) sepia(10%); }
.contact-form { display: grid; gap: 18px; padding: 36px; border: 1px solid rgba(42,95,143,.08); border-radius: 16px; box-shadow: 0 20px 60px rgba(42,95,143,.1), 0 4px 20px rgba(0,0,0,.04); }
.contact-form h3 { font-size: 24px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; color: #555; font-size: 13px; font-weight: 700; }
input, select, textarea { width: 100%; min-height: 48px; padding: 12px 14px; color: var(--dark); background: var(--cool); border: 1px solid rgba(42,95,143,.2); border-radius: 10px; outline: 0; }
textarea { resize: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
.contact-form button.loading span { opacity: .6; }
.contact-form button.loading::after { content: ""; width: 18px; height: 18px; margin-left: 10px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form > p { margin: 0; text-align: center; color: #999; font-size: 12px; }
.form-status { min-height: 18px; color: var(--blue) !important; font-weight: 700; }
.form-status.error { color: var(--red) !important; }
.success-view { min-height: 360px; display: grid; place-items: center; text-align: center; }
.success-view .success-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; color: #fff; background: var(--blue); }
.success-view h3 { margin-bottom: 10px; }

.footer { position: relative; padding-top: 4px; background: var(--dark); color: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.25fr; gap: 48px; padding: 64px 0 34px; }
.footer p { margin: 18px 0 20px; font-size: 14px; }
.footer h4 { margin-bottom: 20px; color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer a { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 9px; font-size: 14px; transition: color .2s ease, background .2s ease; }
.footer a:hover { color: var(--red); }
.footer svg { width: 14px; height: 14px; color: var(--red); flex: 0 0 auto; }
.footer .btn { margin-top: 12px; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.3); font-size: 12px; }
.footer-bottom span:last-child { color: rgba(255,255,255,.2); }

@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .site-nav { padding-inline: 24px; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .mobile-menu { display: block; }
  .trust-grid, .service-grid, .process-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .hobbies-panel, .why-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .section-copy { padding-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 84px 0; }
  .hero { padding: 126px 24px 96px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .scroll-cue { display: none; }
  .trust-grid, .service-grid, .process-grid, .testimonial-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 22px; }
  .hobbies-panel, .services-summary, .consult-box { padding: 24px; }
  .image-feature { min-height: 420px; }
  .stat-card { right: 8px; bottom: -18px; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .process-grid article > span::after { display: none; }
  .review-badge { width: 100%; justify-content: space-between; }
  .contact-form { padding: 26px; }
  .footer-bottom { flex-direction: column; }
}
