:root {
  --blue-950: #033650;
  --blue-900: #064c70;
  --blue-800: #075c86;
  --blue-700: #087aa9;
  --blue-600: #0b91c2;
  --blue-500: #19a6d7;
  --blue-300: #74d1ee;
  --blue-200: #b9e7f7;
  --blue-100: #e9f8fd;
  --blue-050: #f4fbfe;
  --ink: #0d2838;
  --muted: #506875;
  --line: #d8e8ef;
  --white: #ffffff;
  --danger: #ffd7d7;
  --danger-text: #8d2323;
  --shadow-sm: 0 12px 30px rgba(6, 76, 112, .10);
  --shadow-md: 0 18px 46px rgba(6, 76, 112, .13);
  --shadow-lg: 0 24px 70px rgba(4, 65, 96, .17);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  cursor: pointer;
}

button,
input,
select,
textarea {
  border-radius: 0;
}

:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 4px;
}

.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;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--blue-950);
  color: var(--white);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  padding: 11px 0;
  border-bottom: 1px solid rgba(216, 232, 239, .85);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 30px rgba(4, 65, 96, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  width: 280px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: var(--blue-950);
  font-size: .88rem;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-500);
  transition: right .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  border: 0;
  border-radius: 13px;
  background: var(--blue-100);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--blue-900);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 13px 30px rgba(10, 145, 194, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(10, 145, 194, .31);
}

.button:active {
  transform: translateY(0);
}

.button-sm {
  min-height: 45px;
  padding-inline: 18px;
  font-size: .83rem;
}

.button-secondary {
  border-color: rgba(7, 92, 134, .22);
  background: rgba(255, 255, 255, .82);
  color: var(--blue-800);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--blue-300);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-light {
  background: var(--white);
  color: var(--blue-900);
  box-shadow: none;
}

.button-light:hover {
  box-shadow: 0 14px 34px rgba(0, 24, 38, .18);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: block;
  margin: 0 0 17px;
  color: var(--blue-700);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--blue-200);
}

.hero {
  position: relative;
  min-height: 745px;
  overflow: hidden;
  padding: 150px 0 86px;
  background:
    radial-gradient(circle at 80% 20%, rgba(25, 166, 215, .12), transparent 31%),
    linear-gradient(180deg, #fafdff 0%, var(--blue-050) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -150px;
  width: 420px;
  height: 420px;
  border: 75px solid rgba(25, 166, 215, .07);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  grid-template-areas:
    "heading visual"
    "copy visual";
  align-items: center;
  gap: 22px 72px;
}

.hero-heading {
  grid-area: heading;
  align-self: end;
}

.hero-heading h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.25rem, 5.15vw, 5.15rem);
  line-height: 1.01;
  letter-spacing: -.058em;
}

.hero-heading h1 span,
.hero-heading h1 em {
  display: block;
}

.hero-heading h1 em {
  color: var(--blue-500);
  font-style: normal;
}

.hero-copy {
  grid-area: copy;
  align-self: start;
}

.hero-copy > p {
  max-width: 655px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.hero-visual {
  grid-area: visual;
}

.hero-card {
  position: relative;
  min-height: 555px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 50px 34px 10px;
  border-radius: 48% 48% 38px 38px;
  background: linear-gradient(145deg, var(--blue-100), #fff 72%);
  box-shadow: var(--shadow-lg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(25, 166, 215, .18);
  border-radius: inherit;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 86%;
  max-height: 505px;
  object-fit: contain;
  filter: drop-shadow(0 20px 23px rgba(9, 73, 104, .13));
}

.hero-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(216, 232, 239, .94);
  border-radius: 17px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-badge-top {
  top: 32px;
  left: 32px;
}

.hero-badge-bottom {
  right: 24px;
  bottom: 48px;
}

.hero-badge-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
}

.hero-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-badge > span:last-child {
  display: grid;
}

.hero-badge strong {
  color: var(--ink);
  font-size: .8rem;
}

.hero-badge small {
  color: var(--muted);
  font-size: .67rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.hero-orb-one {
  top: 20%;
  right: 7%;
  width: 75px;
  height: 75px;
  background: rgba(25, 166, 215, .14);
}

.hero-orb-two {
  right: 44%;
  bottom: 18%;
  width: 27px;
  height: 27px;
  background: rgba(7, 92, 134, .18);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
  padding-bottom: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(216, 232, 239, .9);
  border-radius: 24px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 105px;
  padding: 24px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 15px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.trust-item h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: .96rem;
  line-height: 1.45;
}

.section {
  padding: 106px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: end;
  gap: 58px;
  margin-bottom: 48px;
}

.section-heading h2,
.care-copy h2,
.tech-copy h2,
.partnership-copy h2,
.technician-copy h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.section-heading > p,
.section-intro,
.care-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.services {
  background: var(--blue-050);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(225px, .9fr) 1.1fr;
  min-height: 325px;
  overflow: hidden;
  border: 1px solid rgba(216, 232, 239, .9);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(5, 79, 117, .06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(25, 166, 215, .38);
  box-shadow: var(--shadow-md);
}

.service-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 22px;
  background: linear-gradient(145deg, #eaf9ff, #fff);
}

.service-image img {
  width: 100%;
  max-height: 255px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .09));
  transition: transform .25s ease;
}

.service-card:hover .service-image img,
.service-card:focus-visible .service-image img {
  transform: scale(1.035);
}

.service-number {
  position: absolute;
  top: 14px;
  left: 15px;
  color: var(--blue-200);
  font-size: 1.55rem;
  font-weight: 900;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px;
}

.service-content h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.4rem;
  line-height: 1.25;
}

.service-content p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 800;
}

.card-action span {
  transition: transform .2s ease;
}

.service-card:hover .card-action span,
.service-card:focus-visible .card-action span {
  transform: translateX(4px);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 25px 28px;
  border: 1px solid rgba(216, 232, 239, .9);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(5, 79, 117, .05);
}

.services-cta p {
  margin: 0;
  color: var(--blue-950);
  font-weight: 750;
}

.care-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 66px;
  margin-top: 74px;
  padding: 52px;
  border: 1px solid rgba(216, 232, 239, .9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.care-image {
  position: relative;
  min-height: 485px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--blue-100), #fff);
}

.care-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(25, 166, 215, .14);
  border-radius: 24px;
}

.care-image img {
  position: relative;
  z-index: 2;
  width: 84%;
  max-height: 445px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(4, 65, 96, .14));
}

.care-intro {
  margin-top: 22px;
}

.mini-benefits {
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

.mini-benefits article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  align-items: start;
}

.mini-benefits article > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: .72rem;
  font-weight: 900;
}

.mini-benefits h3 {
  margin: 0 0 3px;
  color: var(--blue-950);
  font-size: 1rem;
}

.mini-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.technology {
  background: var(--white);
}

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

.tech-card {
  position: relative;
  min-height: 535px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 68% 24%, rgba(25, 166, 215, .18), transparent 34%),
    linear-gradient(145deg, var(--blue-050), var(--blue-100));
  box-shadow: var(--shadow-md);
}

.tech-card::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(7, 122, 169, .14);
  border-radius: 28px;
}

.tech-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 27px rgba(3, 54, 80, .16));
}

.tech-tag {
  position: absolute;
  top: 31px;
  left: 31px;
  z-index: 3;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--blue-800);
  font-size: .74rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.tech-copy .section-intro {
  margin-top: 22px;
}

.benefit-grid-stacked {
  display: grid;
  gap: 14px;
  margin-top: 29px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 47px 1fr;
  align-items: start;
  gap: 15px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--blue-050);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background: var(--white);
  color: var(--blue-700);
  box-shadow: 0 7px 19px rgba(4, 65, 96, .08);
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.benefit-card h3 {
  margin: 0 0 3px;
  color: var(--blue-950);
  font-size: .96rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.partnerships {
  padding-top: 82px;
  background: var(--blue-050);
}

.partnership-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 545px;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.partnership-card::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -150px;
  width: 420px;
  height: 420px;
  border: 75px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.partnership-copy {
  position: relative;
  z-index: 2;
  padding: 66px 0 66px 68px;
}

.partnership-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .8);
}

.partnership-benefits {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.partnership-benefits li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .9);
  font-size: .92rem;
  font-weight: 650;
}

.partnership-benefits li span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  color: var(--blue-200);
  font-size: .75rem;
}

.partnership-copy .button {
  margin-top: 31px;
}

.partnership-image {
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px 45px 20px 10px;
}

.partnership-image::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.partnership-image img {
  position: relative;
  z-index: 2;
  width: 90%;
  filter: drop-shadow(0 28px 33px rgba(1, 28, 42, .35));
}

.technician {
  overflow: hidden;
  background: var(--white);
}

.technician-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 88px;
}

.technician-photo {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-shape {
  position: absolute;
  inset: 50px 35px 0;
  border-radius: 44% 44% 30px 30px;
  background: linear-gradient(145deg, var(--blue-100), #d7f1fb);
}

.photo-shape::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(7, 122, 169, .15);
  border-radius: inherit;
}

.technician-photo img {
  position: relative;
  z-index: 2;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(4, 68, 101, .16));
}

.credential-card {
  position: absolute;
  right: 0;
  bottom: 55px;
  z-index: 4;
  display: grid;
  padding: 18px 22px;
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.credential-card span {
  color: var(--muted);
  font-size: .72rem;
}

.credential-card strong {
  color: var(--blue-800);
  font-size: 1.08rem;
}

.technician-copy .section-intro {
  margin-top: 23px;
}

blockquote {
  margin: 29px 0 27px;
  padding: 20px 24px;
  border-left: 3px solid var(--blue-500);
  border-radius: 0 16px 16px 0;
  background: var(--blue-050);
  color: var(--blue-900);
  font-size: 1rem;
  font-weight: 700;
}

.contact {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 88px;
}

.contact-info > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
}

.contact-list {
  display: grid;
  gap: 17px;
  margin-top: 37px;
}

.contact-list > a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: fit-content;
  border-radius: 14px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-list > a > span:last-child {
  display: grid;
}

.contact-list small {
  color: var(--blue-200);
}

.contact-list strong {
  font-size: 1.05rem;
}

.contact-list > a > span:last-child > span {
  color: rgba(255, 255, 255, .72);
  font-size: .85rem;
}

.contact-form {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 28px 70px rgba(2, 38, 56, .35);
  backdrop-filter: blur(14px);
}

.form-heading {
  margin-bottom: 25px;
}

.form-heading > span {
  color: var(--blue-200);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 0;
  font-size: 1.55rem;
}

.form-field {
  margin-top: 15px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .88);
  font-size: .78rem;
  font-weight: 750;
}

.form-field label span {
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 13px;
  outline: none;
  background: rgba(255, 255, 255, .11);
  color: var(--white);
  padding: 13px 15px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .55);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-200);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 0 0 3px rgba(185, 231, 247, .13);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 215, 215, .12);
}

.contact-form textarea {
  resize: vertical;
}

.field-error {
  min-height: 18px;
  display: block;
  margin-top: 5px;
  color: var(--danger);
  font-size: .7rem;
}

.contact-form .button {
  margin-top: 19px;
  background: var(--white);
  color: var(--blue-900);
  box-shadow: none;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .68rem;
  text-align: center;
}

.form-status {
  min-height: 18px;
  color: var(--blue-200);
}

.site-footer {
  padding: 67px 0 24px;
  background: #062f46;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .65fr .9fr;
  gap: 70px;
}

.footer-brand img {
  width: 310px;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, .62);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: var(--blue-200);
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, .68);
  font-size: .85rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .52);
  font-size: .74rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 13px 30px rgba(13, 102, 55, .3);
  transition: transform .2s ease, width .2s ease, height .2s ease, bottom .2s ease, opacity .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: var(--white);
}

.whatsapp-float.is-near-contact {
  opacity: .94;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .brand {
    width: 235px;
  }

  .main-nav {
    gap: 17px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    gap: 22px 40px;
  }

  .hero-card {
    min-height: 500px;
  }

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

  .service-card {
    grid-template-columns: 275px 1fr;
    min-height: 295px;
  }

  .care-panel,
  .tech-grid,
  .technician-grid,
  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-header {
    padding: 11px 0;
    border-bottom: 1px solid rgba(216, 232, 239, .72);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(15px);
  }

  .brand {
    width: 225px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    margin: 0;
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: max-height .3s ease;
  }

  .main-nav.open {
    max-height: 430px;
  }

  .main-nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

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

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

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

  .hero {
    min-height: auto;
    padding: 125px 0 78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "copy";
    gap: 30px;
  }

  .hero-heading,
  .hero-copy {
    text-align: center;
  }

  .hero-heading h1,
  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-heading h1 {
    font-size: clamp(3rem, 9vw, 4.8rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card {
    width: min(100%, 610px);
    margin: 0 auto;
  }

  .trust-strip {
    margin-top: -18px;
  }

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

  .trust-item {
    min-height: 88px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .care-panel,
  .tech-grid,
  .technician-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .care-panel {
    padding: 40px;
  }

  .tech-visual {
    order: 2;
  }

  .tech-copy {
    order: 1;
  }

  .tech-card {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .partnership-card {
    grid-template-columns: 1fr;
  }

  .partnership-copy {
    padding: 54px 46px 15px;
  }

  .partnership-image {
    min-height: 350px;
    padding: 10px 35px 35px;
  }

  .technician-grid,
  .contact-grid {
    max-width: 720px;
  }

  .technician-grid {
    margin-inline: auto;
  }

  .contact-grid {
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .brand {
    width: 205px;
  }

  .hero {
    padding-top: 112px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: .79rem;
    letter-spacing: .105em;
  }

  .hero-heading h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
    line-height: 1.02;
  }

  .hero-card {
    min-height: 425px;
    padding: 45px 15px 7px;
    border-radius: 42% 42% 27px 27px;
  }

  .hero-card::before {
    inset: 16px;
  }

  .hero-image {
    width: 96%;
    max-height: 400px;
  }

  .hero-badge {
    min-width: 0;
    max-width: 185px;
    padding: 10px 12px;
  }

  .hero-badge-top {
    top: 18px;
    left: 14px;
  }

  .hero-badge-bottom {
    right: 12px;
    bottom: 22px;
  }

  .hero-badge-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .hero-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-badge strong {
    font-size: .7rem;
  }

  .hero-badge small {
    font-size: .59rem;
  }

  .hero-copy > p {
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-item {
    padding: 20px;
  }

  .section-heading h2,
  .care-copy h2,
  .tech-copy h2,
  .partnership-copy h2,
  .technician-copy h2,
  .contact-info h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-image {
    min-height: 285px;
    padding: 26px;
  }

  .service-image img {
    max-height: 245px;
  }

  .service-content {
    min-height: 230px;
    padding: 27px 24px;
  }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .services-cta .button {
    width: 100%;
  }

  .care-panel {
    gap: 36px;
    padding: 27px 20px;
    border-radius: 27px;
  }

  .care-image {
    min-height: 390px;
  }

  .care-image img {
    max-height: 360px;
  }

  .tech-card {
    min-height: 390px;
    padding: 25px 16px;
    border-radius: 27px;
  }

  .tech-card::after {
    inset: 15px;
    border-radius: 22px;
  }

  .tech-tag {
    top: 20px;
    left: 20px;
  }

  .partnerships {
    padding-top: 60px;
  }

  .partnership-card {
    border-radius: 27px;
  }

  .partnership-copy {
    padding: 43px 27px 10px;
  }

  .partnership-copy .button {
    width: 100%;
  }

  .partnership-image {
    min-height: 295px;
    padding: 20px;
  }

  .technician-photo {
    min-height: 480px;
  }

  .photo-shape {
    inset: 35px 10px 0;
  }

  .credential-card {
    right: 4px;
    bottom: 30px;
  }

  .technician-copy .button {
    width: 100%;
  }

  .contact-form {
    padding: 27px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-column {
    justify-items: center;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .whatsapp-float.is-near-contact {
    bottom: calc(76px + env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }

  .whatsapp-float.is-near-contact svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 180px;
  }

  .hero-heading h1 {
    font-size: 2.45rem;
  }

  .hero-card {
    min-height: 370px;
  }

  .hero-badge {
    max-width: 155px;
  }

  .hero-badge small {
    display: none;
  }

  .trust-item h3 {
    font-size: .88rem;
  }
}

/* ===== Ajustes móveis corrigidos ===== */
@media (max-width: 650px) {
  /*
   * Mantém aproximadamente 25px de respiro em cada lateral:
   * 15px já existentes no breakpoint anterior + 10px adicionais.
   */
  .container {
    width: min(calc(100% - 50px), var(--container));
  }

  .section {
    padding-block: 70px;
  }

  /*
   * Somente a primeira seção permanece centralizada.
   */
  .hero-heading,
  .hero-copy {
    text-align: center;
  }

  .hero-heading .eyebrow {
    width: 100%;
    max-width: 275px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.45;
    text-align: center;
    text-wrap: balance;
  }

  .hero-heading h1 {
    max-width: 9.6em;
    margin-inline: auto;
    text-wrap: balance;
  }

  .hero-copy > p {
    max-width: 30rem;
    margin-inline: auto;
    padding-inline: 2px;
    text-align: center;
    text-wrap: pretty;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-card {
    min-height: 350px;
    padding: 38px 12px 6px;
  }

  /*
   * Imagens restauradas ao tamanho utilizado antes
   * da redução adicional de 15%.
   */
  .hero-image {
    width: 72%;
    max-height: 300px;
  }

  .hero-badge {
    max-width: 170px;
  }

  .service-image {
    min-height: 220px;
    padding: 20px;
  }

  .service-image img {
    width: 75%;
    max-height: 184px;
  }

  .care-image {
    min-height: 305px;
  }

  .care-image img {
    width: 63%;
    max-height: 270px;
  }

  .tech-card {
    min-height: 310px;
  }

  .tech-card img {
    width: 75%;
  }

  .partnership-image {
    min-height: 250px;
  }

  .partnership-image img {
    width: 68%;
  }

  .technician-photo {
    min-height: 405px;
  }

  .technician-photo img {
    width: 75%;
    max-height: 450px;
  }

  .footer-brand img {
    width: 233px;
  }

  /*
   * Demais seções preservadas com alinhamento à esquerda.
   * Não altera o formulário nem força novas centralizações.
   */
  .section-heading,
  .care-copy,
  .tech-copy,
  .partnership-copy,
  .technician-copy,
  .contact-info {
    text-align: left;
  }

  .section-heading {
    justify-items: start;
    margin-bottom: 38px;
  }

  .section-heading .eyebrow,
  .care-copy .eyebrow,
  .tech-copy .eyebrow,
  .partnership-copy .eyebrow,
  .technician-copy .eyebrow,
  .contact-info .eyebrow {
    text-align: left;
  }

  .section-heading h2,
  .care-copy h2,
  .tech-copy h2,
  .partnership-copy h2,
  .technician-copy h2,
  .contact-info h2 {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .section-heading > p,
  .section-intro,
  .care-intro,
  .partnership-copy p:not(.eyebrow),
  .contact-info > p:not(.eyebrow) {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .trust-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px;
    text-align: left;
  }

  .service-content {
    min-height: 205px;
    align-items: flex-start;
    padding: 25px 22px;
    text-align: left;
  }

  .card-action {
    justify-content: flex-start;
  }

  .services-cta {
    align-items: stretch;
    padding: 23px 21px;
    text-align: left;
  }

  .services-cta p {
    max-width: none;
    margin-inline: 0;
  }

  .care-panel {
    gap: 30px;
    padding: 25px 19px 30px;
  }

  .mini-benefits article,
  .benefit-card {
    justify-items: start;
    text-align: left;
  }

  .mini-benefits article {
    grid-template-columns: 47px 1fr;
    gap: 16px;
  }

  .benefit-card {
    grid-template-columns: 47px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .tech-grid {
    gap: 35px;
  }

  .tech-tag {
    left: 20px;
    transform: none;
  }

  .partnership-copy {
    padding: 42px 22px 12px;
  }

  .partnership-benefits {
    width: auto;
    max-width: none;
    margin-inline: 0;
  }

  .partnership-benefits li {
    justify-content: flex-start;
    text-align: left;
  }

  .technician-grid {
    gap: 38px;
  }

  .photo-shape {
    inset: 32px 12% 0;
  }

  .credential-card {
    right: 7%;
    bottom: 24px;
  }

  .technician-copy blockquote {
    max-width: none;
    margin-inline: 0;
    border-top: 0;
    border-left: 3px solid var(--blue-500);
    border-radius: 0 16px 16px 0;
    text-align: left;
  }

  .technician-copy .button {
    width: 100%;
    margin-inline: 0;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-list {
    justify-items: start;
  }

  .contact-list > a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-form,
  .contact-form .form-heading,
  .contact-form .form-field {
    text-align: left;
  }

  .contact-form {
    padding: 27px 20px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 50px), var(--container));
  }

  .hero-heading .eyebrow {
    max-width: 255px;
  }

  .hero-card {
    min-height: 325px;
  }

  .hero-image {
    max-height: 275px;
  }

  .care-image {
    min-height: 280px;
  }

  .tech-card {
    min-height: 285px;
  }

  .technician-photo {
    min-height: 375px;
  }

  .credential-card {
    right: 2%;
  }
}
