/* Home hero redesign. Kept separate so the atmospheric layout stays isolated. */

.hero {
  --hero-ink: #193853;
  --hero-muted: #506f89;
  position: relative;
  isolation: isolate;
  min-height: clamp(39rem, calc(100svh - 5rem), 47rem);
  overflow: hidden;
  padding: 0;
  background-color: #c9dfe9;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(241, 246, 247, 0.76) 0%, rgba(241, 246, 247, 0.5) 34%, rgba(241, 246, 247, 0.06) 67%),
    linear-gradient(0deg, rgba(231, 240, 242, 0.22), rgba(231, 240, 242, 0.04) 32%),
    url("../images/hero-sky-illustration-v2.391e52156b84.webp");
  background-position: center;
  background-size: cover;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 34%, rgba(255, 255, 255, 0.3), transparent 35%),
    linear-gradient(to bottom, transparent 80%, rgba(186, 211, 222, 0.18));
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(26rem, 1.06fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: stretch;
  min-height: inherit;
}

.hero__text {
  z-index: 2;
  position: relative;
  align-self: center;
  max-width: 38rem;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem 0.35rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #3d6384;
  background: rgba(248, 251, 250, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 10px 30px -22px rgba(25, 66, 101, 0.7);
  font-weight: 600;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.hero__eyebrow-icon {
  width: 1.45rem;
  height: 1.45rem;
  padding: 0.12rem;
  color: #4279a5;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__title {
  position: relative;
  max-width: 10.5ch;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--hero-ink);
  font-size: clamp(3.45rem, 5.4vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-shadow: 0 2px 28px rgba(248, 252, 252, 0.45);
  text-wrap: balance;
}

.hero__title::after {
  content: none;
}

.hero__lede {
  max-width: 31rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  color: #486984;
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0;
  min-height: 3.65rem;
  height: auto;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 14px 28px -20px rgba(28, 78, 119, 0.95);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: box-shadow var(--transition), background-color var(--transition);
}

.hero__cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 18px 34px -20px rgba(28, 78, 119, 0.98);
  opacity: 1;
}

.hero__cta-label {
  white-space: nowrap;
}

.hero__cta-icon {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
}

.hero__cta-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__cta:hover .hero__cta-icon {
  color: inherit;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 34rem;
  margin-top: 1.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #53748f;
  background-color: rgba(248, 251, 250, 0.28);
  font-size: 0.82rem;
  line-height: 1.35;
  backdrop-filter: blur(6px);
}

.hero__note svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
  width: min(100%, 30rem);
  height: calc(100% - clamp(3.5rem, 7vw, 6rem));
  min-height: 0;
  margin: clamp(3.5rem, 7vw, 6rem) 0 0 auto;
  overflow: visible;
}

.hero__media::before {
  content: none;
}

.hero__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.1);
  transform-origin: right bottom;
}

.hero__media--empty {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(73, 119, 164, 0.12)),
    rgba(220, 234, 238, 0.5);
}

.hero__photo-placeholder {
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  color: rgba(43, 89, 129, 0.38);
}

.hero__photo-placeholder svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Three trust cards closing the statistics block. White on the section's
   tinted ground, columns aligned with the figures above them. */
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 62rem;
  margin: clamp(2.75rem, 5vw, 4rem) auto 0;
}

.benefits__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem 0.45rem 0.5rem;
  border: 1px solid rgba(37, 110, 165, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 20px -18px rgba(30, 79, 119, 0.55);
  color: #3e617f;
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.benefits__icon-wrap {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(37, 110, 165, 0.08);
  background: rgba(223, 237, 239, 0.9);
  color: var(--color-accent);
}

.benefits__icon {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits__item:nth-child(2) .benefits__icon-wrap {
  background: rgba(231, 241, 229, 0.95);
  color: #477fa6;
}

.benefits__item:nth-child(3) .benefits__icon-wrap {
  background: rgba(229, 237, 249, 0.95);
  color: #58769a;
}

.statistics {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: #f4f8fc;
}

.statistics__head {
  max-width: 44rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
  text-align: center;
}

.statistics__head h2 {
  color: #173b59;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.statistics__head p {
  max-width: 34rem;
  margin: 0.85rem auto 0;
  color: #5a7188;
  font-size: 1rem;
  line-height: 1.6;
}

.statistics__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  max-width: 62rem;
}

.statistics__item {
  display: grid;
  gap: 0.35rem;
  color: #55758e;
  text-align: center;
}

.statistics__item strong {
  color: #173b59;
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 5vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.statistics__item span {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-benefits {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: #fbfdff;
}

.certificate-benefits__head {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.certificate-benefits__head .eyebrow {
  color: #5c8db8;
  font-weight: 650;
}

.certificate-benefits__head h2 {
  margin-top: 0.8rem;
  color: #173b59;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.certificate-benefits__head > p:last-child {
  margin-top: 1rem;
  color: #5a7188;
  font-size: 1.06rem;
  line-height: 1.6;
}

.certificate-benefits__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 62rem;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0;
  list-style: none;
}

.certificate-benefits__list li {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.certificate-benefits__check {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: #e2edf8;
  color: #3d82b0;
}

.certificate-benefits__check svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-benefits__list h3 {
  color: #245478;
  font-family: var(--font-sans);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.certificate-benefits__list p {
  margin-top: 0.55rem;
  color: #687f96;
  font-size: 0.92rem;
  line-height: 1.58;
}

.customer-impressions {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: #e9f3fb;
}

.customer-impressions__head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.customer-impressions__head .eyebrow {
  color: #5c8db8;
  font-weight: 650;
}

.customer-impressions__head h2 {
  margin-top: 0.8rem;
  color: #173b59;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.customer-impressions__head > p:last-child {
  margin-top: 1rem;
  color: #5a7188;
  line-height: 1.6;
}

.customer-impressions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.4vw, 1rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.customer-impressions__item,
.customer-impressions__placeholder {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.45);
}

.customer-impressions__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-impressions__placeholder {
  display: grid;
  place-items: center;
  color: rgba(65, 119, 164, 0.35);
}

.customer-impressions__placeholder svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-impressions__share {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  color: #5a7188;
  font-size: 0.95rem;
  text-align: center;
}

.customer-impressions__share strong {
  color: #245f89;
  font-weight: 750;
}

.certificate-packages {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: #fbfdff;
}

.certificate-packages__head {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.certificate-packages__head .eyebrow,
.certificate-package__status {
  color: #5c8db8;
  font-weight: 650;
}

.certificate-packages__head h2 {
  margin-top: 0.8rem;
  color: #173b59;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.certificate-packages__head > p:last-child {
  margin-top: 1rem;
  color: #5a7188;
  line-height: 1.6;
}

.certificate-packages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 58rem;
  margin: clamp(2.75rem, 6vw, 4.5rem) auto 0;
}

.certificate-package {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d9e6f1;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 20px 45px -40px rgba(24, 61, 73, 0.6);
}

.certificate-package--future {
  background: #f8fbff;
}

.certificate-package__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8f1fa;
}

.certificate-package__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.certificate-package__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-package__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(61, 118, 163, 0.38);
}

.certificate-package__placeholder svg {
  width: 3.3rem;
  height: 3.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-package__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 25.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.certificate-package__status {
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.certificate-package__status--available {
  color: #3978a5;
}

.certificate-package h3 {
  color: #204c70;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.certificate-package__price {
  display: flex;
  align-items: flex-start;
  gap: 0.18rem;
  margin-top: 0.8rem;
  color: #1f5e8a;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1;
}

.certificate-package__price span {
  padding-top: 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 750;
}

.certificate-package__price--pending {
  color: #7390a7;
}

.certificate-package__description {
  min-height: 4.9rem;
  margin-top: 0.65rem;
  color: #637a91;
  line-height: 1.58;
}

.certificate-package__features {
  display: grid;
  gap: 0.55rem;
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  list-style: none;
  color: #3d698c;
  font-size: 0.9rem;
  font-weight: 600;
}

.certificate-package__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.certificate-package__features li::before {
  content: "✓";
  color: #4189b8;
}

.certificate-package__button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.certificate-package__button:disabled {
  cursor: default;
  opacity: 0.82;
}

.certificate-interest-modal {
  width: min(calc(100% - 2rem), 30rem);
  padding: 0;
  border: 0;
  border-radius: 1.25rem;
  background: #fbfdff;
  box-shadow: 0 28px 70px -30px rgba(20, 58, 91, 0.55);
}

.certificate-interest-modal::backdrop {
  background: rgba(17, 45, 53, 0.42);
  backdrop-filter: blur(3px);
}

.certificate-interest-modal__body {
  padding: clamp(2rem, 6vw, 3rem);
}

.certificate-interest-modal__intro .eyebrow {
  color: #5c8db8;
  font-weight: 650;
}

.certificate-interest-modal h2 {
  margin-top: 0.7rem;
  color: #173b59;
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.certificate-interest-modal__intro > p:not(.eyebrow) {
  margin-top: 0.85rem;
  color: #637a91;
  line-height: 1.6;
}

.certificate-interest-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5b7b96;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.certificate-interest-modal__form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.certificate-interest-modal__form label {
  color: #3e6484;
  font-size: 0.85rem;
  font-weight: 650;
}

.certificate-interest-modal__form input {
  width: 100%;
  min-height: 3.25rem;
  padding-inline: 1rem;
  border: 1px solid #cadae8;
  border-radius: 0.7rem;
  background: #fff;
}

.certificate-interest-modal__form .btn {
  margin-top: 0.4rem;
}

.certificate-interest-modal__success {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  color: #2f6f9f;
  font-weight: 650;
  text-align: center;
}

.certificate-interest-modal__success-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #e4f0fb;
  color: #2f6f9f;
}

.certificate-interest-modal__success-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* With the intro gone the line stands alone, so it does not need the gap
   that separated it from the form. */
.certificate-interest-modal__intro[hidden] ~ .certificate-interest-modal__success {
  margin-top: 0;
}

.certificate-interest-modal__error {
  margin-top: 1rem;
  color: #9c4a3d;
  font-weight: 650;
}

.certificate-reasons {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: #eaf3fb;
}

.certificate-reasons__head {
  max-width: 66rem;
  margin-inline: auto;
  text-align: center;
}

.certificate-reasons__head .eyebrow {
  color: #5c8db8;
  font-weight: 650;
}

.certificate-reasons__head h2 {
  margin-top: 0.8rem;
  color: #173b59;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.certificate-reasons__head > p:last-child {
  margin-top: 1rem;
  color: #5a7188;
  line-height: 1.6;
}

.certificate-reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  max-width: 72rem;
  margin: clamp(2.75rem, 6vw, 4.5rem) auto 0;
}

.certificate-reason {
  display: flex;
  flex-direction: column;
  min-height: 14.25rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border: 1px solid rgba(43, 104, 150, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8), 0 18px 36px -30px rgba(30, 79, 119, 0.6);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

/* Only a card that leads somewhere reacts to the pointer. */
a.certificate-reason:hover,
a.certificate-reason:focus-visible {
  border-color: rgba(43, 104, 150, 0.3);
  background: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), 0 25px 42px -29px rgba(30, 79, 119, 0.5);
  transform: translateY(-4px);
}

.certificate-reason__icon {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(43, 111, 158, 0.14);
  border-radius: 0.95rem;
  background: #d6e8f6;
  box-shadow: 0 10px 20px -16px rgba(30, 79, 119, 0.7);
  color: #2b76a5;
}

.certificate-reason__icon img {
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  object-fit: contain;
}

.certificate-reason__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 1.2rem;
}

.certificate-reason strong,
.certificate-reason small {
  display: block;
}

.certificate-reason strong {
  color: #214b70;
  font-size: 0.98rem;
  line-height: 1.35;
}

.certificate-reason small {
  margin-top: 0.45rem;
  color: #687f96;
  font-size: 0.84rem;
  line-height: 1.55;
}

.faq-preview {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: #fbfdff;
}

.faq-preview__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
  max-width: 68rem;
}

.faq-preview__intro h2,
.faq-page__hero h1 {
  margin-top: 0.75rem;
  color: #173b59;
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  line-height: 1.08;
}

.faq-preview__intro > p:last-of-type,
.faq-page__hero > .container > p:last-child {
  margin-top: 1rem;
  color: #5f748a;
  line-height: 1.65;
}

.faq-preview__button {
  margin-top: 1.7rem;
}

.faq-preview__list,
.faq-page__list {
  border-top: 1px solid rgba(43, 104, 150, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(43, 104, 150, 0.15);
}

.faq-item summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  color: #214b70;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__symbol {
  position: relative;
  flex: 0 0 1.55rem;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid rgba(42, 120, 170, 0.22);
  border-radius: 50%;
}

.faq-item__symbol::before,
.faq-item__symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.56rem;
  height: 1px;
  background: #2c81b1;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-item__symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__symbol::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  padding: 0 2.55rem 1.25rem 0;
  color: #68819a;
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Answers are written in the admin's rich-text box, so they can carry
   paragraphs, lists and links. */
.faq-item__answer > * + * {
  margin-top: 0.75rem;
}

.faq-item__answer ul,
.faq-item__answer ol {
  padding-left: 1.35rem;
}

.faq-item__answer ul {
  list-style: disc;
}

.faq-item__answer ol {
  list-style: decimal;
}

.faq-item__answer li + li {
  margin-top: 0.35rem;
}

.faq-item__answer a {
  color: #2b76a5;
  text-decoration: underline;
  text-decoration-color: rgba(41, 109, 157, 0.35);
  text-underline-offset: 0.2em;
  transition: text-decoration-color var(--transition);
}

.faq-item__answer a:hover {
  text-decoration-color: currentColor;
}

.faq-page {
  background: #fbfdff;
}

.faq-page__hero {
  padding-block: clamp(5.5rem, 11vw, 8.5rem) clamp(3rem, 6vw, 4.75rem);
  text-align: center;
  background: linear-gradient(180deg, #e4eff9 0%, #fbfdff 100%);
}

.faq-page__hero .container {
  max-width: 48rem;
}

.faq-page__content {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.faq-page__content .container {
  max-width: 50rem;
}

.faq-page__cta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-radius: 1.1rem;
  color: #edf6fd;
  background: #255f87;
}

.faq-page__cta p {
  margin: 0;
}

.faq-page__cta-title {
  font-weight: 700;
}

.faq-page__cta-copy {
  margin-top: 0.35rem !important;
  color: rgba(237, 246, 245, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-page__cta .btn {
  flex: 0 0 auto;
  color: #255f87;
  background: #fff;
}

.legal-page {
  background: #fbfdff;
}

.legal-page__hero {
  padding-block: clamp(5.5rem, 11vw, 8.5rem) clamp(3rem, 6vw, 4.75rem);
  text-align: center;
  background: linear-gradient(180deg, #e4eff9 0%, #fbfdff 100%);
}

.legal-page__hero .container {
  max-width: 46rem;
}

.legal-page__hero h1 {
  margin-top: 0.75rem;
  color: #173b59;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.legal-page__hero > .container > p:nth-of-type(2) {
  margin-top: 1rem;
  color: #5f748a;
  line-height: 1.65;
}

.legal-page__updated {
  margin-top: 1.25rem;
  color: #8299ae;
  font-size: 0.8rem;
}

.legal-page__content {
  padding-block: clamp(1rem, 3vw, 2.5rem) clamp(5rem, 10vw, 8rem);
}

.legal-page__layout {
  display: grid;
  grid-template-columns: 12rem minmax(0, 46rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  max-width: 66rem;
}

.legal-page__toc {
  position: sticky;
  top: 6.5rem;
  padding-top: 1.5rem;
}

.legal-page__toc > p {
  margin-bottom: 0.85rem;
  color: #6d8aa3;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page__toc nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.legal-page__toc a {
  padding: 0.42rem 0.6rem;
  border-radius: 0.45rem;
  color: #607f9b;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition);
}

.legal-page__toc a:hover {
  color: #246f9c;
  background: #e8f2fb;
}

.legal-page__article {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(43, 104, 150, 0.1);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 22px 42px -40px rgba(30, 79, 119, 0.65);
}

.legal-page__notice {
  margin-bottom: clamp(2.75rem, 6vw, 4rem);
  padding: 1.2rem 1.35rem;
  border-left: 3px solid #7aa8ca;
  border-radius: 0 0.8rem 0.8rem 0;
  color: #4a748f;
  background: #edf5fc;
  line-height: 1.65;
}

.legal-page__article section + section {
  margin-top: 1.9rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(43, 104, 150, 0.1);
}

.legal-page__article h2 {
  color: #214b70;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0;
}

.legal-page__article section p {
  margin-top: 0.7rem;
  color: #5a7188;
  line-height: 1.75;
}

/* Section bodies are written in the admin's rich-text box, so they can carry
   lists as well as paragraphs. */
.legal-page__article section ul,
.legal-page__article section ol {
  margin-top: 0.7rem;
  padding-left: 1.4rem;
  color: #5a7188;
  line-height: 1.75;
}

.legal-page__article section ul {
  list-style: disc;
}

.legal-page__article section ol {
  list-style: decimal;
}

.legal-page__notice > * + * {
  margin-top: 0.6rem;
}

.legal-page__article a {
  color: #267ba9;
  font-weight: 650;
}

.about-page {
  background: #fbfdff;
}

.about-page__hero {
  padding-block: clamp(5.5rem, 12vw, 9rem) clamp(4rem, 8vw, 6.5rem);
  text-align: center;
  background: radial-gradient(circle at 50% -10%, #d5e7f5 0%, #eaf3fb 40%, #fbfdff 72%);
}

.about-page__hero .container {
  max-width: 52rem;
}

.about-page__hero h1,
.about-page__copy h2,
.about-page__head h2 {
  margin-top: 0.8rem;
  color: #173b59;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.06;
}

.about-page__hero > .container > p:last-child {
  max-width: 39rem;
  margin: 1.2rem auto 0;
  color: #5f748a;
  line-height: 1.65;
}

.about-page__story {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.about-page__story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 9vw, 8rem);
  align-items: center;
  max-width: 68rem;
}

.about-page__statement {
  min-height: 20rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  border-radius: 1.4rem;
  color: #edf7fd;
  background: #1f5f88;
  box-shadow: 0 25px 45px -38px rgba(17, 67, 78, 0.9);
}

.about-page__statement span {
  display: block;
  color: #a8cbe5;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.7;
}

.about-page__statement p {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.16;
}

.about-page__copy h2,
.about-page__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.about-page__copy > p:not(.eyebrow) {
  margin-top: 1.15rem;
  color: #617f9b;
  line-height: 1.75;
}

.about-page__values {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background: #e5f0fa;
}

.about-page__head {
  max-width: 38rem;
}

.about-page__values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgba(43, 104, 150, 0.12);
  border-radius: 1.25rem;
  background: rgba(43, 104, 150, 0.12);
}

.about-page__values-grid article {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: rgba(255, 255, 255, 0.68);
}

.about-page__values-grid h3 {
  color: #214b70;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 750;
}

.about-page__values-grid p {
  margin-top: 0.65rem;
  color: #69829b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-page__closing {
  padding-block: clamp(4.5rem, 10vw, 7rem);
  text-align: center;
}

.about-page__closing .container {
  max-width: 42rem;
}

.about-page__closing p {
  color: #285779;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.15;
}

.about-page__closing .btn {
  margin-top: 1.6rem;
}

.how-page {
  background: #fbfdff;
}

.how-page__hero {
  padding-block: clamp(5.5rem, 12vw, 9rem) clamp(4rem, 9vw, 7rem);
  text-align: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 220, 215, 0.5), transparent 19rem),
    linear-gradient(180deg, #e5f0fa 0%, #fbfdff 100%);
}

.how-page__hero .container {
  max-width: 54rem;
}

.how-page__hero h1 {
  margin-top: 0.8rem;
  color: #173b59;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.03;
}

.how-page__hero > .container > p:last-of-type {
  max-width: 41rem;
  margin: 1.2rem auto 0;
  color: #5a7188;
  line-height: 1.7;
}

.how-page__hero .btn {
  margin-top: 1.8rem;
}

.how-page__steps {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.how-page__steps > .container {
  max-width: 68rem;
}

.how-page__section-head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.how-page__section-head h2 {
  margin-top: 0.75rem;
  color: #173b59;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.how-page__step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 58rem;
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.how-step {
  display: grid;
  grid-template-columns: 3.8rem minmax(13rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border: 1px solid rgba(43, 104, 150, 0.11);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 40px -38px rgba(30, 79, 119, 0.65);
}

.how-step__number {
  align-self: start;
  padding-top: 0.35rem;
  color: #327fac;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.how-step__media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px dashed rgba(44, 115, 163, 0.28);
  border-radius: 0.9rem;
  color: #7391aa;
  background:
    linear-gradient(135deg, rgba(211, 232, 229, 0.62), rgba(238, 245, 243, 0.85));
}

.how-step__media span {
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  color: #5d82a0;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.how-step__media img,
.how-step__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-step__copy {
  padding-right: clamp(0.25rem, 2vw, 1rem);
}

.how-step h3 {
  color: #214b70;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
}

.how-step p {
  margin-top: 0.7rem;
  color: #657f99;
  font-size: 0.91rem;
  line-height: 1.68;
}

.how-page__tutorial {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  background: #f1f7fd;
}

.how-page__tutorial > .container {
  max-width: 68rem;
}

.how-page__tutorial .how-page__section-head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.how-page__tutorial .how-page__section-head > * {
  text-align: center;
}

.how-page__tutorial .how-page__section-head > p:last-child {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: #637f99;
  line-height: 1.65;
}

.how-page__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(43, 104, 150, 0.13);
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  background:
    radial-gradient(circle at 70% 20%, rgba(131, 186, 181, 0.24), transparent 17rem),
    linear-gradient(145deg, #194b70, #102f4c);
  box-shadow: 0 30px 55px -42px rgba(12, 49, 58, 0.9);
}

.how-page__video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.how-page__video-placeholder {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.65rem;
  padding: 2rem;
  color: #dae8f4;
  text-align: center;
}

.how-page__video-placeholder span {
  color: #91b9d8;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.how-page__video-placeholder strong {
  color: #f4f9fd;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  font-weight: 400;
}

.how-page__question {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: #fbfdff;
}

.how-page__question-inner {
  display: flex;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  justify-content: space-between;
  max-width: 66rem;
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(43, 104, 150, 0.14);
  border-bottom: 1px solid rgba(43, 104, 150, 0.14);
}

.how-page__question-inner > div {
  max-width: 42rem;
}

.how-page__question h2 {
  margin-top: 0.65rem;
  color: #173b59;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
}

.how-page__question-inner > div > p:last-child {
  margin-top: 0.9rem;
  color: #5f748a;
  line-height: 1.65;
}

.how-page__question .btn {
  flex: 0 0 auto;
}

.contact-page {
  background: #fbfdff;
}

.contact-page__hero {
  padding-block: clamp(5.5rem, 12vw, 9rem) clamp(4rem, 8vw, 6.5rem);
  text-align: center;
  background: radial-gradient(circle at 50% -5%, #d9e9f6 0%, #eef6fd 42%, #fbfdff 76%);
}

.contact-page__hero .container {
  max-width: 50rem;
}

.contact-page__hero h1 {
  margin-top: 0.8rem;
  color: #173b59;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  line-height: 1.06;
}

.contact-page__hero > .container > p:last-child {
  max-width: 40rem;
  margin: 1.2rem auto 0;
  color: #5f748a;
  line-height: 1.65;
}

.contact-page__content {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 9vw, 7rem);
  align-items: start;
  max-width: 66rem;
}

.contact-page__details {
  padding-top: clamp(0rem, 2vw, 1.25rem);
}

.contact-page__details h2,
.contact-form__head h2 {
  margin-top: 0.75rem;
  color: #173b59;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}

.contact-page__details > p:not(.eyebrow):not(.contact-page__note) {
  margin-top: 1rem;
  color: #5f748a;
  line-height: 1.7;
}

.contact-page__email {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
  color: #214b70;
  font-weight: 700;
  text-decoration: none;
}

.contact-page__email > span:first-child {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  color: #307da9;
  background: #dcebf7;
}

.contact-page__email svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page__email small {
  display: block;
  margin-bottom: 0.18rem;
  color: #7898b1;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page__note {
  margin-top: 1.8rem;
  color: #7d98b1;
  font-size: 0.8rem;
  line-height: 1.55;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(43, 104, 150, 0.12);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 26px 45px -40px rgba(30, 79, 119, 0.65);
}

.contact-form__head p {
  margin-top: 0.7rem;
  color: #7089a1;
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-form__fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form label > span {
  color: #4f6d86;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-form .textarea {
  min-height: 8rem;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* States the form can end up in: a stored message, or fields to correct. */
.contact-form__success {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  /* It stands alone in the box once the message is stored. */
  margin: 0;
  color: #2f6f9f;
  font-weight: 650;
  line-height: 1.6;
  text-align: center;
}

.contact-form__success-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #e4f0fb;
  color: #2f6f9f;
}

.contact-form__success-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form__error {
  margin-top: 1.4rem;
  padding: 0.7rem 0.9rem;
  border-left: 3px solid #c07a6c;
  border-radius: 0 0.6rem 0.6rem 0;
  color: #9c4a3d;
  background: #fbf0ed;
  font-size: 0.88rem;
  font-weight: 650;
}

.contact-form label.has-error .input,
.contact-form label.has-error .select,
.contact-form label.has-error .textarea {
  border-color: #c07a6c;
}

.contact-form__field-error {
  color: #9c4a3d;
  font-size: 0.78rem;
  font-weight: 650;
}

/* The hashtag, when the CMS gives it a link. Styled like the plain <strong>
   version so turning the link on and off does not shift the line. */
.customer-impressions__tag {
  color: #245f89;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(33, 86, 127, 0.35);
  text-underline-offset: 0.22em;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.customer-impressions__tag:hover {
  color: #143a59;
  text-decoration-color: currentColor;
}

/* A photo carries a link only when one is set in the CMS. */
.customer-impressions__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.customer-impressions__link-icon {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: #245f89;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 14px -8px rgba(16, 52, 62, 0.7);
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity var(--transition), transform var(--transition);
}

.customer-impressions__link-icon svg {
  width: 0.8rem;
  height: 0.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-impressions__link img {
  transition: transform var(--transition);
}

.customer-impressions__link:hover img {
  transform: scale(1.045);
}

.customer-impressions__link:hover .customer-impressions__link-icon,
.customer-impressions__link:focus-visible .customer-impressions__link-icon {
  opacity: 1;
  transform: translateY(0);
}

/* Touch devices never hover, so the badge stays visible there. */
@media (hover: none) {
  .customer-impressions__link-icon {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 59.99rem) {
  .hero {
    min-height: auto;
  }

  .hero__backdrop {
    background-image:
      linear-gradient(180deg, rgba(241, 246, 247, 0.7) 0%, rgba(241, 246, 247, 0.36) 52%, rgba(221, 234, 239, 0.1) 100%),
      url("../images/hero-sky-illustration-v2.391e52156b84.webp");
    background-position: 52% top;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__text {
    max-width: 40rem;
    padding-block: clamp(4rem, 11vw, 6rem) clamp(3rem, 9vw, 4.5rem);
  }

  .hero__title {
    max-width: 12ch;
  }

  .hero__media {
    width: min(100%, 24rem);
    height: clamp(22rem, 92vw, 30rem);
    min-height: 0;
    margin: 0 auto;
    justify-content: center;
  }

  .hero__image {
    object-position: center bottom;
    transform-origin: center bottom;
  }

  .statistics {
    padding-block: 3.5rem;
  }

  .certificate-benefits {
    padding-block: 4.5rem;
  }

  .customer-impressions {
    padding-block: 4.5rem;
  }

  .faq-preview__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-page__layout {
    grid-template-columns: 1fr;
  }

  .legal-page__toc {
    position: static;
    display: none;
  }

  .about-page__story-layout {
    grid-template-columns: 1fr;
  }

  .about-page__values-grid {
    grid-template-columns: 1fr;
  }

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

  .how-page__question-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 39.99rem) {
  .hero__title {
    max-width: 10.5ch;
    font-size: clamp(2.85rem, 13.5vw, 3.8rem);
  }

  .hero__lede {
    font-size: 1.1rem;
  }

  .hero__actions,
  .hero__cta {
    width: 100%;
  }

  .hero__cta {
    max-width: 24rem;
  }

  .hero__note {
    max-width: 26rem;
    border-radius: 1rem;
  }

  .benefits {
    gap: 0.6rem;
  }

  .benefits__item {
    font-size: 0.75rem;
  }

  .statistics__inner {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .certificate-benefits__list {
    grid-template-columns: 1fr;
  }

  .certificate-benefits__list li {
    padding-inline: 0;
  }

  .customer-impressions__grid {
    display: flex;
    gap: 0.85rem;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    padding: 0.2rem 1rem 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .customer-impressions__grid::-webkit-scrollbar {
    display: none;
  }

  .customer-impressions__item {
    flex: 0 0 min(76vw, 19rem);
    scroll-snap-align: start;
  }

  .certificate-packages__grid {
    grid-template-columns: 1fr;
  }

  .certificate-package__description {
    min-height: 0;
  }

  .certificate-package__content {
    min-height: 0;
  }

  .certificate-reasons__grid {
    display: flex;
    gap: 0.9rem;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    padding: 0.3rem 1rem 1.1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .certificate-reasons__grid::-webkit-scrollbar {
    display: none;
  }

  .certificate-reason {
    flex: 0 0 min(82vw, 20rem);
    min-height: 0;
    scroll-snap-align: start;
  }

  .faq-page__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .how-step {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 1.25rem;
  }

  .how-step__number {
    padding-top: 0;
  }

  .how-step__copy {
    padding-right: 0;
  }

  .how-page__question .btn {
    width: 100%;
  }
}

@media (min-width: 48rem) {
  .certificate-reasons__head h2,
  .certificate-reasons__head > p:last-child,
  #steps-title {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta:hover {
    transform: none;
  }

  .customer-impressions__link:hover img {
    transform: none;
  }

  .customer-impressions__link-icon {
    transform: none;
  }
}
