@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/open-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/open-sans-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --sage: #a3a983;
  --sage-dark: #838b62;
  --blue: #7a97ab;
  --blue-dark: #58778e;
  --yellow: #f0d283;
  --gray: #b6b8ba;
  --sand: #dcc7b7;
  --ice: #beccd5;
  --rose: #d8c5ce;
  --slate: #a2a9ad;
  --navy: #273c4f;
  --navy-deep: #152c42;
  --text: #405264;
  --muted: #6f7d88;
  --line: #dce3e7;
  --line-strong: #c9d8e2;
  --surface: #f4f8fa;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 18px 45px rgba(39, 60, 79, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(240, 210, 131, 0.9);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-deep);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 3.7vw, 3.6rem);
  font-weight: 740;
  letter-spacing: -0.048em;
}

h1 span {
  display: contents;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 2.65vw, 2.75rem);
  font-weight: 710;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
}

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

.section {
  padding-block: 80px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 10px 25px rgba(131, 139, 98, 0.22);
}

.button-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 14px 30px rgba(131, 139, 98, 0.3);
}

.button-light {
  color: var(--navy-deep);
  background: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(39, 60, 79, 0.06);
}

.header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img,
.footer-brand img {
  width: 165px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 650;
}

.desktop-nav a:hover {
  color: var(--blue-dark);
}

.header-cta {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.8rem;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 56px 68px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(190, 204, 213, 0.2);
  content: "";
  filter: blur(2px);
  left: -350px;
  top: -260px;
}

.hero::after,
.audience-company::after {
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 190px;
  border: 10px solid rgba(122, 151, 171, 0.08);
  border-radius: 80% 20% 75% 25% / 65% 35% 65% 35%;
  content: "";
  transform: rotate(35deg);
}

.hero::after {
  right: 3%;
  bottom: -110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: start;
  gap: 56px;
}

.hero-grid > *,
.hero-media,
.hero-copy {
  min-width: 0;
}

.hero-endorsement {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(122, 151, 171, 0.28);
  border-radius: 999px;
  margin-bottom: 22px;
  padding: 8px 17px;
  color: var(--navy);
  background: rgba(190, 204, 213, 0.2);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-endorsement span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
}

.hero-copy h1 span {
  display: block;
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-copy > .hero-endorsement {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-actions-single {
  margin-top: 4px;
}

.hero-actions-single .text-link {
  min-height: 48px;
  border-bottom: 1px solid rgba(122, 151, 171, 0.45);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero-proof {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(39, 60, 79, 0.1);
  backdrop-filter: blur(12px);
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--sage-dark);
  stroke-width: 2.4;
}

.hero-media {
  position: relative;
  overflow: hidden;
  height: 520px;
  min-height: 520px;
  border-radius: 28px 0 28px 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 68% 58%;
}

.hero-note {
  position: absolute;
  top: 18px;
  right: 24px;
  bottom: auto;
  left: 24px;
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 14px 17px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(39, 60, 79, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(163, 169, 131, 0.18);
}

.problem {
  border-block: 1px solid var(--line);
  padding-block: 64px;
}

.problem-statement {
  position: relative;
  overflow: hidden;
  padding-block: 38px;
  text-align: center;
}

.problem-statement::after {
  position: absolute;
  top: 50%;
  right: max(8px, calc((100vw - var(--container)) / 2 - 70px));
  width: 210px;
  height: 210px;
  background: url("assets/icons/simple-drops-motif.svg") center / contain no-repeat;
  content: "";
  filter: blur(0.35px);
  opacity: 0.07;
  pointer-events: none;
  transform: translateY(-50%) rotate(8deg);
}

.problem-statement .container {
  position: relative;
  z-index: 1;
}

.problem-statement h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  gap: 60px;
}

.section-heading p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.problem-list article {
  border-left: 1px solid var(--line);
  padding: 4px 22px 0;
}

.problem-list article:first-child {
  border-left: 0;
}

.problem-list p,
.steps-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.icon-circle {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #f2f4f1;
}

.solution {
  max-width: 1280px;
  margin: 0 16px;
  border-radius: 26px;
  margin-inline: auto;
  padding-block: 30px;
  color: var(--white);
  background: var(--blue);
}

.solution h2,
.solution h3 {
  color: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 44px;
}

.solution-copy h2 {
  max-width: 500px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 2.35vw, 2.4rem);
  line-height: 1.12;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(240, 210, 131, 0.68);
  border-radius: 999px;
  margin-bottom: 13px;
  padding: 6px 14px;
  color: var(--white);
  background: rgba(240, 210, 131, 0.3);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-badge svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.6;
}

.solution-plan {
  max-width: 470px;
}

.solution-plan > span {
  color: var(--yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solution-price {
  display: flex;
  align-items: center;
  margin-top: 2px;
  line-height: 0.92;
}

.solution-price sup {
  align-self: flex-start;
  margin-top: 11px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.solution-price strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3.7rem, 5.1vw, 4.75rem);
  font-weight: 720;
  letter-spacing: -0.065em;
}

.solution-price small {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  line-height: 1.25;
}

.solution-no-contract {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 13px 0 0;
  color: var(--yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 650;
}

.solution-no-contract > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--yellow);
  border-radius: 50%;
}

.solution-no-contract svg {
  width: 16px;
  height: 16px;
}

.solution-button {
  display: inline-flex;
  min-width: 280px;
  justify-content: space-between;
  color: var(--white);
  background: var(--sage);
}

.solution-button:hover {
  background: var(--sage-dark);
}

.solution-button svg {
  width: 21px;
  height: 21px;
}

.solution-terms {
  display: block;
  max-width: 390px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  margin-top: 7px;
  padding-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.45;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

.home-benefits li {
  display: grid;
  min-height: 118px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 18px;
}

.home-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.home-benefits span,
.home-benefits strong {
  display: block;
}

.home-benefits strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.3;
}

.home-benefits span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-benefit-wide {
  min-height: 96px !important;
  grid-column: 1 / -1;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.split-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.audience-company {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--surface);
}

.audience-company::after {
  right: -55px;
  bottom: -70px;
  border-color: rgba(163, 169, 131, 0.12);
}

.section-number {
  display: inline-grid;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--sage);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 750;
}

.section-number-wide {
  width: auto;
  padding-inline: 13px;
  letter-spacing: 0.04em;
}

.audience-copy > p {
  max-width: 550px;
  color: var(--muted);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 32px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 13px;
}

.benefit-list svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--sage-dark);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 3px;
  color: var(--navy-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.83rem;
}

.benefit-list span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.company-benefits {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.company-benefits li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-block: 15px;
}

.company-benefits svg {
  width: 25px;
  height: 25px;
}

.company-intro {
  margin: 22px 0 0;
  color: var(--navy) !important;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.technology {
  width: min(calc(100% - 48px), 780px);
  overflow: hidden;
  margin-inline: auto;
  border-radius: 18px;
  padding-block: 16px;
  color: var(--white);
  background: var(--blue);
}

.technology h2,
.technology h3 {
  color: var(--white);
}

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

.technology-statement h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.technology-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.48fr);
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
}

.technology-copy {
  align-self: center;
}

.technology-copy h2 {
  max-width: 760px;
}

.technology-copy > p {
  max-width: 710px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.technology-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.technology-groups article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 17px;
  min-height: 154px;
  padding: 22px 24px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.technology-groups article:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-right: 0;
  padding-left: 24px;
}

.technology-groups svg {
  width: 29px;
  height: 29px;
  margin-top: 1px;
  stroke: var(--white);
}

.technology-groups h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.technology-groups ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-groups li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
}

.technology-groups li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.technology-media {
  align-self: center;
  justify-self: end;
}

.technology-phone {
  width: min(280px, 100%);
  background: transparent;
  filter: drop-shadow(0 22px 30px rgba(25, 48, 66, 0.24));
}

.technology-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.centered-heading {
  margin-bottom: 42px;
  text-align: center;
}

.centered-heading p {
  margin-inline: auto;
}

.enrollment {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.enrollment::before {
  position: absolute;
  top: 74px;
  left: max(-120px, calc((100vw - var(--container)) / 2 - 210px));
  width: 330px;
  height: 330px;
  background: url("assets/icons/simple-drops-motif.svg") center / contain no-repeat;
  content: "";
  filter: blur(0.5px);
  opacity: 0.045;
  pointer-events: none;
  transform: rotate(-12deg);
}

.enrollment > .container {
  position: relative;
  z-index: 1;
}

.enrollment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--white);
}

.enrollment-path {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 40px 38px 38px;
}

.enrollment-assisted {
  border-left: 1px solid var(--line-strong);
}

.enrollment-path-heading {
  display: grid;
  min-height: 112px;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.enrollment-path-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
}

.enrollment-path-icon svg {
  width: 58px;
  height: 58px;
  stroke-width: 1.45;
}

.enrollment-path-icon-blue {
  color: var(--blue-dark);
}

.enrollment-path-icon-sage {
  color: var(--sage-dark);
}

.enrollment-path h3 {
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  letter-spacing: -0.035em;
}

.enrollment-path p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.coverage-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.44fr);
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(190, 204, 213, 0.28), rgba(255, 255, 255, 0.96));
}

.coverage-inline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.coverage-inline p {
  max-width: 370px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.app-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 28px -10px 26px;
  padding: 0;
  list-style: none;
}

.app-steps::before {
  position: absolute;
  z-index: 0;
  top: 21px;
  right: calc(10% + 8px);
  left: calc(10% + 8px);
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.app-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 12px;
  color: var(--navy-deep);
  text-align: center;
}

.app-steps span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1.5px solid var(--blue-dark);
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 750;
}

.app-steps small {
  color: var(--navy-deep);
  font-size: 0.7rem;
  line-height: 1.45;
}

.store-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin-inline: auto;
}

.store-button {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1.5px solid var(--blue-dark);
  border-radius: 13px;
  padding: 14px 18px;
  color: var(--navy-deep);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  border-color: var(--sage-dark);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(39, 60, 79, 0.1);
  transform: translateY(-2px);
}

.store-button img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
}

.store-button strong {
  color: var(--navy-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.15;
}

.assisted-steps {
  display: grid;
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
}

.assisted-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--navy-deep);
  font-size: 0.92rem;
}

.assisted-steps li:first-child {
  padding-top: 0;
}

.assisted-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid var(--sage-dark);
  border-radius: 50%;
  color: var(--sage-dark);
}

.assisted-steps svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.assisted-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.assisted-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 14px;
}

.assisted-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
}

.assisted-form-full {
  grid-column: 1 / -1;
}

.assisted-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 10px 13px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.96);
  font: 0.9rem "Open Sans", Arial, sans-serif;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.assisted-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(163, 169, 131, 0.16);
}

.assisted-form-error {
  min-height: 18px;
  color: #9a4c42;
  font-size: 0.78rem;
}

.enrollment-advisor-button {
  width: 100%;
  min-height: 58px;
  gap: 16px;
  border-radius: 13px;
  margin-top: auto;
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 10px 22px rgba(131, 139, 98, 0.18);
}

.assisted-form .enrollment-advisor-button {
  margin-top: auto;
}

.enrollment-advisor-button:hover {
  color: var(--white);
  background: var(--sage-dark);
}

.enrollment-advisor-button svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.enrollment-coverage-button {
  width: 100%;
  min-height: 58px;
  gap: 14px;
  border: 0;
  border-radius: 13px;
  margin-top: 20px;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(88, 119, 142, 0.2);
  cursor: pointer;
}

.coverage-inline-button {
  min-height: 50px;
  margin-top: 0;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.enrollment-path > .enrollment-coverage-button {
  margin-top: auto;
}

.enrollment-path > .coverage-inline-button {
  margin-top: 0;
}

.enrollment-coverage-button:hover {
  color: var(--white);
  background: var(--navy);
}

.enrollment-coverage-button svg {
  width: 23px;
  height: 23px;
}

.coverage-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 24px;
}

.coverage-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 44, 66, 0.6);
  backdrop-filter: blur(6px);
}

.coverage-dialog {
  position: relative;
  width: min(100%, 650px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border: 1px solid rgba(122, 151, 171, 0.18);
  border-radius: 24px;
  padding: 36px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(21, 44, 66, 0.28);
}

.coverage-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.coverage-close svg {
  width: 19px;
  height: 19px;
}

.coverage-dialog-heading {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding-right: 44px;
}

.coverage-dialog-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-dark);
}

.coverage-dialog-icon svg {
  width: 27px;
  height: 27px;
}

.coverage-dialog h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.coverage-dialog-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.coverage-check-form {
  margin-top: 28px;
}

.coverage-check-form > label,
.coverage-waitlist-form > label:not(.privacy-check) {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.coverage-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid #cbd5db;
  border-radius: 18px;
  padding: 7px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(39, 60, 79, 0.08);
}

.coverage-search input {
  height: 52px;
  border: 0;
  padding-inline: 16px;
  font-size: 1rem;
  box-shadow: none;
}

.coverage-search input:focus {
  box-shadow: none;
}

.coverage-search .button {
  min-width: 205px;
  min-height: 52px;
  border: 0;
  border-radius: 13px;
  color: var(--white);
  background: var(--navy-deep);
  cursor: pointer;
}

.coverage-field-error {
  display: block;
  min-height: 20px;
  margin-top: 7px;
  color: #a14646;
  font-size: 0.74rem;
}

.coverage-result {
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 22px;
  padding: 22px;
}

.coverage-result.is-covered {
  border-color: rgba(131, 139, 98, 0.35);
  background: rgba(163, 169, 131, 0.1);
}

.coverage-result.is-unavailable {
  border-color: rgba(122, 151, 171, 0.3);
  background: rgba(190, 204, 213, 0.16);
}

.coverage-result-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.coverage-result-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
}

.coverage-result.is-unavailable .coverage-result-icon {
  background: var(--blue-dark);
}

.coverage-result-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.coverage-result h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.coverage-result p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.coverage-result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.coverage-result-actions a {
  min-height: 46px;
  padding-inline: 14px;
  font-size: 0.78rem;
}

.coverage-waitlist-form {
  margin-top: 18px;
}

.coverage-waitlist-form > input {
  height: 46px;
}

.coverage-waitlist-form .privacy-check {
  margin-top: 12px;
}

.coverage-waitlist-form .enrollment-coverage-button {
  margin-top: 4px;
}

.contact {
  background: #edf3f6;
}

.contact-compact {
  padding-block: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: stretch;
  gap: 32px;
}

.contact-grid-single {
  display: block;
  max-width: 700px;
}

.form-panel,
.contact-media {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(39, 60, 79, 0.08);
}

.form-panel {
  padding: clamp(22px, 2.2vw, 28px);
}

.contact-grid-single .form-panel {
  border: 1px solid rgba(122, 151, 171, 0.16);
  box-shadow: 0 15px 40px rgba(39, 60, 79, 0.08);
}

.contact-grid-single .form-panel > h2,
.contact-grid-single .form-panel > p {
  text-align: center;
}

.contact-grid-single .form-panel > h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
}

.contact-grid-single .form-panel > p {
  margin-inline: auto;
}

.form-panel > p {
  margin-bottom: 16px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
}

form > label,
.form-grid label {
  display: block;
  margin-bottom: 7px;
}

label > span,
legend {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 650;
}

label em {
  color: var(--muted);
  font-family: "Open Sans", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5db;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--navy-deep);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input {
  height: 40px;
}

textarea {
  min-height: 40px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(122, 151, 171, 0.13);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b75d5d;
}

label small,
.privacy-error {
  display: block;
  margin-top: 3px;
  color: #a14646;
  font-size: 0.7rem;
}

label small:empty,
.privacy-error:empty {
  display: none;
}

fieldset {
  margin: 0 0 8px;
  border: 0;
  padding: 0;
}

.client-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.client-options label {
  margin: 0;
}

.client-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.client-options span {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #cbd5db;
  border-radius: var(--radius-sm);
  margin: 0;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.client-options input:checked + span {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: rgba(163, 169, 131, 0.09);
}

.client-options input:focus-visible + span {
  outline: 3px solid rgba(240, 210, 131, 0.9);
  outline-offset: 3px;
}

.client-options svg {
  width: 20px;
  height: 20px;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  margin: 2px 0 10px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sage-dark);
}

.privacy-check span {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
}

.privacy-check a {
  color: var(--blue-dark);
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.submit-button {
  position: relative;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.75;
}

.button-loader {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.submit-button.is-loading .button-loader {
  display: block;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.form-status.is-success {
  color: #58703f;
}

.form-status.is-error {
  color: #a14646;
}

.contact-media {
  position: relative;
  overflow: hidden;
}

.contact-media > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.contact-benefits {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(39, 60, 79, 0.12);
  backdrop-filter: blur(12px);
}

.contact-benefits span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-left: 1px solid var(--line);
  padding-inline: 15px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-benefits span:first-child {
  border-left: 0;
}

.contact-benefits svg {
  flex: 0 0 auto;
  color: var(--blue-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-deep);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.accordion details[open] summary svg {
  transform: rotate(180deg);
}

.accordion details p {
  max-width: 720px;
  margin-bottom: 24px;
  padding-right: 44px;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  border-radius: 20px;
  padding-block: 22px;
  background: var(--sage);
}

.final-cta-inner,
.final-cta-inner > div {
  display: flex;
  align-items: center;
}

.final-cta-inner {
  justify-content: space-between;
  gap: 28px;
}

.final-cta-inner > div {
  gap: 18px;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.final-cta .button {
  min-height: 48px;
  padding: 11px 22px;
}

.certifications {
  padding-block: 26px 8px;
}

.certifications-inner {
  display: flex;
  justify-content: center;
}

.certifications img {
  display: block;
  width: min(430px, 100%);
  height: auto;
  mix-blend-mode: multiply;
}

.site-footer {
  padding-block: 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.58fr 1.22fr 0.58fr;
  align-items: start;
  gap: 50px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 24px;
  padding-top: 6px;
}

.site-footer nav a {
  color: var(--navy);
  font-size: 0.79rem;
}

.site-footer nav a:hover {
  color: var(--blue-dark);
}

.footer-contact {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-mark {
  display: grid;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: #2a9f5b;
}

.whatsapp-mark {
  width: 44px;
  height: 44px;
}

.whatsapp-mark img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.whatsapp-link strong,
.whatsapp-link small {
  display: block;
}

.whatsapp-link strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.84rem;
}

.whatsapp-link small {
  color: var(--muted);
  font-size: 0.7rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
}

.social-links img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #2a9f5b;
  box-shadow: 0 10px 30px rgba(39, 60, 79, 0.26);
  transition: transform 180ms ease;
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp span {
  width: auto;
  height: auto;
}

.toast {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 94px;
  max-width: min(360px, calc(100vw - 48px));
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-page {
  min-height: 100vh;
  background: var(--surface);
}

.privacy-shell {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
  padding-block: 54px 90px;
}

.privacy-shell .brand {
  display: inline-block;
  margin-bottom: 34px;
}

.privacy-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 64px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-card h2 {
  margin-top: 38px;
  font-size: 1.35rem;
}

.privacy-card li,
.privacy-card p {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue-dark);
  font-weight: 700;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--white);
  }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    padding-inline: 24px;
    background: var(--white);
    box-shadow: 0 16px 30px rgba(39, 60, 79, 0.08);
    opacity: 0;
    transition: max-height 250ms ease, opacity 180ms ease, padding 250ms ease;
  }

  .mobile-nav.is-open {
    max-height: 540px;
    padding-block: 16px 24px;
    opacity: 1;
  }

  .mobile-nav a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding-block: 14px;
    color: var(--navy);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 650;
  }

  .mobile-nav .button {
    margin-top: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-media,
  .hero-media > img {
    min-height: 470px;
  }

  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    gap: 45px;
  }

  .solution-grid {
    gap: 30px;
  }

  .split-layout {
    gap: 44px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .image-frame img {
    height: 490px;
  }

  .technology-grid {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 44px;
  }

  .technology-groups {
    grid-template-columns: 1fr;
  }

  .technology-groups article,
  .technology-groups article:nth-child(even) {
    min-height: auto;
    border-left: 0;
    padding: 22px 0;
  }

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

  .enrollment-assisted {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .enrollment-path-heading {
    min-height: auto;
  }

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

  .contact-media > img {
    min-height: 520px;
  }

  .faq-grid {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 50px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 76px;
  }

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

  .section {
    padding-block: 52px;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .header-cta {
    display: none;
  }

  .brand img,
  .footer-brand img {
    width: 142px;
  }

  .mobile-nav {
    inset: 74px 0 auto;
  }

  .hero {
    padding-block: 28px 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    min-width: 0;
    order: 0;
  }

  .hero-media {
    order: 1;
    height: 350px;
    min-height: 0;
    border-radius: var(--radius-lg);
  }

  .hero-media > img {
    min-height: 0;
    object-position: 66% 58%;
  }

  .hero-note {
    top: 12px;
    right: auto;
    left: 12px;
    display: flex;
    max-width: calc(100% - 24px);
    gap: 7px;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions-single {
    align-items: flex-start;
  }

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

  .hero-actions:not(.hero-actions-single) .text-link {
    justify-content: center;
  }

  .hero-proof {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 6px;
    margin: 0;
    font-size: 0.67rem;
  }

  .problem {
    padding-block: 48px;
  }

  .problem-statement::after {
    right: -76px;
    width: 170px;
    height: 170px;
    opacity: 0.055;
  }

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

  .problem-list article:nth-child(3) {
    border-left: 0;
  }

  .solution {
    margin-inline: 8px;
    border-radius: 22px;
    padding-block: 28px;
  }

  .solution-grid {
    gap: 24px;
  }

  .solution-copy h2 {
    font-size: 1.7rem;
  }

  .solution-price strong {
    font-size: 3.7rem;
  }

  .solution-button {
    width: 100%;
    min-width: 0;
  }

  .home-benefits li {
    min-height: 104px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding: 14px;
  }

  .home-benefits svg {
    width: 24px;
    height: 24px;
  }

  .home-benefits strong {
    font-size: 0.8rem;
  }

  .home-benefits span {
    font-size: 0.72rem;
  }

  .split-layout,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .audience-media {
    order: -1;
  }

  .audience-company .audience-media {
    order: 1;
  }

  .image-frame img {
    height: 320px;
  }

  .technology {
    width: min(calc(100% - 40px), 720px);
    border-radius: 16px;
    padding-block: 14px;
  }

  .technology-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .technology-groups {
    margin-top: 28px;
  }

  .technology-groups article,
  .technology-groups article:nth-child(even) {
    padding-block: 16px;
  }

  .technology-media {
    width: 100%;
    justify-self: center;
    text-align: center;
  }

  .technology-phone {
    width: min(230px, 68vw);
    margin-inline: auto;
  }

  .enrollment-path {
    padding: 30px;
  }

  .enrollment::before {
    top: 110px;
    left: -105px;
    width: 235px;
    height: 235px;
    opacity: 0.038;
  }

  .app-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 10px;
    margin-inline: 0;
  }

  .app-steps::before {
    display: none;
  }

  .contact .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .contact-benefits {
    grid-template-columns: 1fr;
  }

  .contact-benefits span,
  .contact-benefits span:first-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-block: 10px;
  }

  .contact-benefits span:first-child {
    border-top: 0;
  }

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

  .final-cta {
    width: auto;
    margin-inline: 8px;
    padding-block: 20px;
  }

  .final-cta-inner,
  .final-cta-inner > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-inner {
    gap: 14px;
  }

  .final-cta-inner .button {
    width: 100%;
  }

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

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 2.05rem;
  }

  h1 span {
    display: block;
  }

  .hero-endorsement {
    width: 100%;
    justify-content: center;
    padding-inline: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  h2 {
    font-size: 1.75rem;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }

  .hero-media,
  .hero-media > img {
    height: 330px;
    min-height: 0;
  }

  .technology-statement h2 {
    font-size: 1.35rem;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding: 0;
    font-size: 0.62rem;
  }

  .hero-proof li {
    min-height: 34px;
    padding: 6px 8px;
  }

  .hero-proof li:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-list article,
  .problem-list article:nth-child(3) {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 18px 0 0;
  }

  .problem-list article:first-child {
    border-top: 0;
  }

  .problem-list .icon-circle {
    grid-row: 1 / 3;
    margin: 0;
  }

  .problem-list h3,
  .problem-list p {
    grid-column: 2;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .home-benefits {
    grid-template-columns: 1fr;
  }

  .home-benefits li,
  .home-benefit-wide {
    min-height: auto !important;
    grid-column: auto;
    padding: 15px;
  }

  .company-benefits {
    margin-top: 22px;
  }

  .company-benefits li {
    padding-block: 13px;
  }

  .client-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .contact-media > img {
    min-height: 430px;
  }

  .contact-benefits {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .enrollment {
    padding-block: 44px;
  }

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

  .enrollment .centered-heading {
    margin-bottom: 28px;
  }

  .enrollment-grid {
    border-radius: 22px;
  }

  .enrollment-path {
    padding: 24px 20px;
  }

  .enrollment-path-heading {
    min-height: auto;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .enrollment-path-icon,
  .enrollment-path-icon svg {
    width: 40px;
    height: 40px;
  }

  .enrollment-path h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    line-height: 1.18;
  }

  .enrollment-path p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .coverage-inline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .coverage-inline strong {
    margin-bottom: 4px;
    font-size: 0.92rem;
  }

  .coverage-inline p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .app-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 18px 0;
  }

  .app-steps li,
  .app-steps li:last-child:nth-child(odd) {
    display: grid;
    min-height: 42px;
    grid-column: auto;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 12px;
    padding-bottom: 8px;
    text-align: left;
  }

  .app-steps li:not(:last-child)::after {
    position: absolute;
    z-index: -1;
    top: 30px;
    bottom: -2px;
    left: 15px;
    width: 1px;
    background: var(--line-strong);
    content: "";
  }

  .app-steps span {
    width: 32px;
    height: 32px;
    font-size: 0.76rem;
  }

  .app-steps small {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .store-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .store-button {
    min-height: 52px;
    gap: 8px;
    border-width: 1px;
    padding: 9px 8px;
  }

  .store-button img {
    width: 25px;
    height: 25px;
  }

  .store-button strong {
    font-size: 0.78rem;
  }

  .enrollment-path > .enrollment-coverage-button {
    min-height: 52px;
    margin-top: 12px;
    font-size: 0.82rem;
  }

  .coverage-inline-button {
    min-height: 48px;
    margin-top: 0;
    font-size: 0.78rem;
  }

  .enrollment-path > .enrollment-coverage-button svg {
    width: 20px;
    height: 20px;
  }

  .enrollment-assisted {
    padding-top: 26px;
  }

  .assisted-steps {
    margin: 20px 0;
  }

  .assisted-steps li {
    gap: 12px;
    padding: 10px 0;
    font-size: 0.84rem;
  }

  .assisted-steps span {
    width: 29px;
    height: 29px;
  }

  .assisted-steps svg {
    width: 15px;
    height: 15px;
  }

  .assisted-form {
    gap: 10px;
    margin-top: 16px;
  }

  .assisted-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .assisted-form label {
    gap: 6px;
    font-size: 0.68rem;
  }

  .assisted-form input {
    min-height: 42px;
    border-radius: 10px;
    font-size: 0.84rem;
  }

  .enrollment-advisor-button {
    min-height: 52px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 10px;
    width: 48px;
    height: 48px;
    border-width: 3px;
  }

  .floating-whatsapp img {
    width: 24px;
    height: 24px;
  }

  .coverage-modal {
    align-items: end;
    padding: 0;
  }

  .coverage-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    padding: 28px 20px 24px;
  }

  .coverage-close {
    top: 14px;
    right: 14px;
  }

  .coverage-dialog-heading {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    padding-right: 32px;
  }

  .coverage-dialog-icon {
    width: 46px;
    height: 46px;
  }

  .coverage-dialog-icon svg {
    width: 23px;
    height: 23px;
  }

  .coverage-dialog h2 {
    font-size: 1.45rem;
  }

  .coverage-check-form {
    margin-top: 22px;
  }

  .coverage-search {
    grid-template-columns: 1fr;
    border: 0;
    padding: 0;
    box-shadow: none;
  }

  .coverage-search input {
    border: 1px solid #cbd5db;
    border-radius: 13px;
  }

  .coverage-search .button {
    width: 100%;
    min-width: 0;
  }

  .coverage-result-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .contact .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

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