:root {
  --navy: #0d3851;
  --teal: #00a8bc;
  --lime: #b6ce25;
  --orange: #ee6b32;
  --sky: #eef8fa;
  --ink: #173847;
  --muted: #59717c;
  --line: #d7e6e9;
  --shadow: 0 18px 50px rgba(13, 56, 81, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    400 16px/1.7 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}
.skip:focus {
  left: 8px;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand img {
  width: 132px;
}
.brand-name {
  color: var(--navy);
  font-weight: 850;
  font-size: 1.22rem;
  white-space: nowrap;
}
.links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.links a {
  text-decoration: none;
  color: #3d5e6c;
  font-weight: 750;
  font-size: 0.9rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff !important;
  text-decoration: none;
  font-weight: 850;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 168, 188, 0.24);
}
.crumbs {
  padding-top: 26px;
  font-size: 0.88rem;
  color: #607984;
}
.crumbs a {
  color: #087e8b;
  text-decoration: none;
}
.hero {
  padding: 50px 0 78px;
  background: linear-gradient(140deg, #f3fbfc, #fff 60%, #eef9f3);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 62px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #087e8b;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 850;
}
.eyebrow:before {
  content: "";
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime), var(--orange));
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  margin: 15px 0 22px;
}
h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
}
h3 {
  font-size: 1.22rem;
}
.lead {
  font-size: 1.13rem;
  color: #4f6a77;
  margin: 0 0 28px;
}
.hero img {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
section {
  padding: 82px 0;
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  align-items: start;
}
.split p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 25px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(13, 56, 81, 0.055);
  transition: 0.2s;
}
.card:hover,
.card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.card p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 0.94rem;
}
.card .arrow {
  display: block;
  color: #078595;
  font-weight: 850;
  margin-top: 15px;
}
.soft {
  background: var(--sky);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 700;
  color: #365967;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.value {
  border-top: 3px solid var(--teal);
  padding: 23px 5px;
}
.value:nth-child(2) {
  border-color: var(--lime);
}
.value:nth-child(3) {
  border-color: var(--orange);
}
.value p {
  color: var(--muted);
  margin: 9px 0 0;
}
.cta {
  text-align: center;
  background: linear-gradient(125deg, #dff7f8, #f2fae7);
}
.cta p {
  color: #4e6974;
  max-width: 720px;
  margin: 17px auto 28px;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn.alt {
  background: #fff;
  color: var(--navy) !important;
  border: 1px solid var(--line);
}
footer {
  background: #082b3f;
  color: #bcd0d8;
  padding: 38px 0;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.foot > a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 850;
}
.foot > a:after {
  content: "Aevitas Care";
  white-space: nowrap;
}
.foot img {
  width: 150px;
  background: #fff;
  border-radius: 12px;
  padding: 7px;
}
.foot p {
  margin: 0;
  text-align: right;
  font-size: 0.88rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 800;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b8d0d6;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.field textarea {
  min-height: 145px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(0, 168, 188, 0.23);
  border-color: var(--teal);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.93rem;
}
.consent input {
  width: auto;
  margin-top: 5px;
}
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}
.content-narrow {
  width: min(780px, calc(100% - 40px));
  margin: auto;
}
.content-narrow h2 {
  font-size: 2rem;
  margin: 42px 0 12px;
}
.content-narrow h2:first-child {
  margin-top: 0;
}
.content-narrow h3 {
  margin: 25px 0 8px;
}
.content-narrow p,
.content-narrow li {
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-links a {
  color: #d8e8ed;
  text-decoration: none;
  font-size: 0.88rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 10px;
  background: #e7f7ee;
  color: #185c39;
  font-weight: 700;
}
.status.error {
  background: #fff0ee;
  color: #8a2f25;
}
.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}
@media (max-width: 850px) {
  .links a:not(.btn) {
    display: none;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .values {
    grid-template-columns: 1fr;
  }
  .foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot p {
    text-align: left;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }
  .nav {
    height: 72px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 100px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .links .btn {
    min-height: 42px;
    padding: 0 14px;
  }
  .hero {
    padding-bottom: 58px;
  }
  .cards,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  section {
    padding: 64px 0;
  }
}
@media (max-width: 390px) {
  .brand-name {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .card {
    transition: none;
  }
}
