:root {
  --navy: #082a43;
  --navy-2: #0d3a59;
  --blue: #0871ba;
  --blue-dark: #055b99;
  --sky: #eaf7ff;
  --sky-2: #d7effd;
  --paper: #fff;
  --ink: #102f46;
  --muted: #567084;
  --line: #cfe3ef;
  --shadow: 0 24px 70px rgba(17, 73, 108, 0.14);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 100;
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  height: 82px;
  padding: 0 clamp(20px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(207, 227, 239, 0.8);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.04em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}
.site-header nav > a {
  transition: color 0.2s;
}
.site-header nav > a:hover {
  color: var(--blue);
}
.nav-cta {
  border: 1px solid var(--blue) !important;
  color: var(--blue) !important;
  padding: 11px 16px;
  border-radius: 999px;
}
.nav-cta:hover {
  background: var(--blue);
  color: #fff !important;
}
.language-picker {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: #fff;
}
.language-picker span {
  color: var(--blue);
  font-weight: 900;
}
.language-picker select {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  outline: 0;
  cursor: pointer;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  padding: 10px;
  place-content: center;
  gap: 5px;
}
.menu-button > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.hero {
  padding: clamp(54px, 7vw, 100px) clamp(20px, 5vw, 76px) 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  max-width: 1540px;
  margin: auto;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 79px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}
.hero-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
  margin: 28px 0 18px;
}
.savings-line {
  border-left: 4px solid var(--blue);
  padding-left: 17px;
  max-width: 670px;
  color: #3f6076;
  margin: 0 0 30px;
}
.savings-line strong {
  color: var(--ink);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(22, 136, 212, 0.22);
}
.primary:hover {
  background: var(--blue-dark);
}
.secondary {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
}
.text-button {
  padding-left: 0;
  padding-right: 0;
  color: var(--navy);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  gap: 12px 28px;
  flex-wrap: wrap;
  color: #426278;
  font-size: 13px;
  font-weight: 700;
}
.hero-points li:before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px;
}
.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-visual > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 34px 34px 100px 34px;
  box-shadow: var(--shadow);
}
.visual-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(207, 227, 239, 0.8);
  box-shadow: var(--shadow);
  border-radius: 17px;
}
.card-experience {
  left: -24px;
  bottom: 42px;
  width: 250px;
  padding: 19px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.card-experience strong {
  font-size: 39px;
  line-height: 1;
  color: var(--blue);
}
.card-experience span {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}
.card-response {
  right: -24px;
  top: 38px;
  padding: 17px 20px 17px 45px;
  display: grid;
}
.card-response .status-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #36b37e;
  left: 20px;
  top: 23px;
  box-shadow: 0 0 0 6px rgba(54, 179, 126, 0.12);
}
.card-response strong {
  font-size: 14px;
}
.card-response small {
  color: var(--muted);
}
.capability-strip {
  background: var(--navy);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 20px 54px;
  flex-wrap: wrap;
  padding: 22px clamp(20px, 5vw, 76px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.capability-strip span:before {
  content: "+";
  color: #76cffb;
  margin-right: 10px;
}
.section {
  padding: clamp(76px, 8vw, 120px) clamp(20px, 5vw, 76px);
}
.section-heading {
  max-width: 1388px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: 8vw;
  align-items: end;
}
.section-heading h2,
.senior-copy h2,
.areas-copy h2,
.contact h2 {
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin: 0;
}
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.results {
  background: var(--sky);
}
.result-grid {
  max-width: 1388px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.result-grid article {
  background: #fff;
  border: 1px solid rgba(207, 227, 239, 0.9);
  padding: 32px;
  border-radius: var(--radius);
  min-height: 275px;
}
.result-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  font-size: 23px;
  font-weight: 900;
}
.result-grid h3 {
  font-size: 22px;
  margin: 32px 0 10px;
}
.result-grid p {
  margin: 0;
  color: var(--muted);
}
.services {
  background: #fff;
}
.service-grid {
  max-width: 1388px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.service-grid > a {
  padding: 30px;
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition:
    background 0.2s,
    transform 0.2s;
}
.service-grid > a:hover {
  background: var(--sky);
  transform: translateY(-3px);
}
.service-grid > a > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.service-grid h3 {
  font-size: 23px;
  margin: 42px 0 12px;
}
.service-grid p {
  color: var(--muted);
  margin: 0 0 24px;
}
.service-grid strong {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}
.senior-help {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.senior-image img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 30px;
}
.senior-copy {
  max-width: 680px;
}
.senior-copy .eyebrow {
  color: #8bd8ff;
}
.senior-copy > p:not(.eyebrow) {
  color: #c5d7e2;
  font-size: 17px;
  margin: 25px 0;
}
.senior-copy ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 22px;
}
.senior-copy li {
  position: relative;
  padding-left: 26px;
  color: #eef8fd;
}
.senior-copy li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #75cffb;
  font-weight: 900;
}
.workflow {
  background: #fff;
}
.workflow-grid {
  list-style: none;
  max-width: 1388px;
  margin: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.workflow-grid li {
  border-top: 3px solid var(--blue);
  padding: 26px 20px 10px;
}
.workflow-grid span {
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}
.workflow-grid h3 {
  font-size: 21px;
  line-height: 1.3;
  margin: 26px 0 12px;
}
.workflow-grid p {
  color: var(--muted);
  margin: 0;
}
.areas-preview {
  background: var(--sky);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}
.areas-copy {
  max-width: 650px;
  margin-left: auto;
}
.areas-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0;
}
.area-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.area-links a {
  color: var(--blue);
  font-weight: 800;
}
.areas-photo img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.contact {
  background: var(--navy-2);
  color: #fff;
  padding: clamp(76px, 8vw, 120px) clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: clamp(50px, 9vw, 130px);
}
.contact-copy {
  max-width: 650px;
  margin-left: auto;
}
.contact .eyebrow {
  color: #8bd8ff;
}
.contact-copy > p:not(.eyebrow, .spanish-note) {
  color: #c7dce8;
  font-size: 17px;
  line-height: 1.75;
}
.contact-facts {
  margin-top: 38px;
  display: grid;
  gap: 10px;
}
.contact-facts a {
  font-size: 25px;
  font-weight: 900;
  color: #8bd8ff;
}
.contact-facts span {
  font-weight: 700;
}
.contact-facts p {
  color: #bad0dd;
}
.spanish-note {
  color: #c7dce8;
}
.spanish-note strong {
  color: #fff;
}
.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 650px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 19px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafdff;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 136, 212, 0.12);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-honey {
  position: absolute !important;
  left: -9999px !important;
}
.privacy-note {
  color: var(--muted);
  font-size: 11px;
}
.form-status {
  font-size: 13px;
  min-height: 20px;
  color: var(--blue);
  font-weight: 700;
}
footer {
  padding: 60px clamp(20px, 5vw, 76px) 25px;
  background: #061d2d;
  color: #c0d3df;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 45px;
}
footer .brand {
  color: #fff;
}
footer p {
  max-width: 440px;
  color: #91adbd;
}
footer > div:not(.footer-main, .footer-bottom) {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 13px;
}
footer strong {
  color: #fff;
  margin-bottom: 6px;
}
footer a:hover {
  color: #8bd8ff;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
@media (max-width: 1050px) {
  .site-header nav {
    gap: 15px;
  }
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 0.8fr;
  }
  .hero h1 {
    font-size: clamp(45px, 6vw, 66px);
  }
  .hero-visual,
  .hero-visual > img {
    min-height: 510px;
    height: 510px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }
  .menu-button {
    display: grid;
  }
  .site-header nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(15, 53, 78, 0.12);
    padding: 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav > a:not(.nav-cta) {
    display: block;
    padding: 10px 3px;
  }
  .nav-cta {
    text-align: center;
    margin: 7px 0;
  }
  .language-picker {
    justify-content: center;
  }
  .hero {
    padding: 48px 20px 65px;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    overflow-wrap: anywhere;
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero-visual,
  .hero-visual > img {
    min-height: 430px;
    height: 430px;
  }
  .card-experience {
    left: 12px;
    bottom: 18px;
  }
  .card-response {
    right: 10px;
    top: 18px;
  }
  .capability-strip {
    justify-content: flex-start;
    gap: 10px 25px;
    padding: 18px 20px;
  }
  .section {
    padding: 72px 20px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }
  .result-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid > a {
    min-height: 260px;
  }
  .senior-help,
  .areas-preview,
  .contact {
    grid-template-columns: 1fr;
    padding: 72px 20px;
  }
  .senior-image img {
    height: 410px;
  }
  .senior-copy ul {
    grid-template-columns: 1fr;
  }
  .areas-copy,
  .contact-copy {
    margin-left: 0;
  }
  .areas-photo {
    order: -1;
  }
  .areas-photo img {
    height: 330px;
  }
  .contact-form {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 50px 20px 24px;
  }
  .footer-main {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 470px) {
  .brand {
    font-size: 14px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 1.04;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .text-button {
    justify-content: flex-start;
  }
  .hero-visual,
  .hero-visual > img {
    min-height: 380px;
    height: 380px;
  }
  .visual-card {
    max-width: 190px;
  }
  .card-response {
    display: none;
  }
  .card-experience {
    width: 185px;
  }
  .section-heading h2,
  .senior-copy h2,
  .areas-copy h2,
  .contact h2 {
    font-size: 36px;
  }
  .result-grid article {
    min-height: 240px;
    padding: 26px;
  }
  .contact-form {
    padding: 20px;
  }
  footer {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .service-grid > a {
    transition: none;
  }
}
