:root {
  --navy: #20243a;
  --navy-soft: #292e49;
  --yellow: #efad3f;
  --yellow-bright: #f7bc52;
  --blue: #8fd2e8;
  --ink: #20243a;
  --muted: #666a78;
  --paper: #f5f6f8;
  --white: #ffffff;
  --line: #dfe1e7;
  --dark-line: #42475f;
  --success: #176b46;
  --error: #b42318;
  --shell: 1240px;
  --announcement-height: 44px;
  --header-height: 76px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(32, 36, 58, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
.brand,
.price {
  font-family: Manrope, Inter, Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-size: clamp(3.15rem, 6.2vw, 5.85rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 4.35vw, 3.85rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 750;
}

h4 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

a {
  color: inherit;
}

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

.shell {
  width: min(var(--shell), calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  left: 0.75rem;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--yellow);
  color: var(--navy);
}

.announcement-inner {
  min-height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.announcement-inner p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 750;
}

.announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
  opacity: 0.82;
  white-space: nowrap;
}

.announcement-inner a:hover {
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: var(--announcement-height);
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid #e8e9ed;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.brand strong {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav-links > a:not(.button) {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: #b97200;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 19px;
  height: 2px;
  display: block;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  padding: 0.78rem 1.3rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(239, 173, 63, 0.18);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.button:hover {
  border-color: var(--yellow-bright);
  background: var(--yellow-bright);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0.58rem 1rem;
  font-size: 0.8rem;
}

.button-outline {
  border-color: #73788e;
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--yellow);
  background: rgba(239, 173, 63, 0.08);
}

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.button-dark:hover {
  border-color: var(--navy-soft);
  background: var(--navy-soft);
}

.hero {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: clamp(4.75rem, 7.5vw, 6.75rem) 0;
  text-align: center;
}

.kicker,
.eyebrow {
  color: #bd7707;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 1.4rem;
  color: var(--yellow);
}

.hero-bottom {
  max-width: 720px;
}

.hero-copy {
  margin-bottom: 0;
  color: #cbd0dd;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.hero-copy strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.credential-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  overflow: hidden;
}

.credential-showcase {
  padding: 1.45rem 0 1rem;
}

.credential-heading {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.credential-marquee {
  overflow: hidden;
  padding-block: 0.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.credential-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: credential-scroll 32s linear infinite;
}

.credential-marquee:hover .credential-track {
  animation-play-state: paused;
}

.credential-logo-set {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

.credential-logo {
  width: 180px;
  height: 72px;
  display: grid;
  flex: 0 0 180px;
  line-height: 0;
  place-items: center;
}

.credential-logo img {
  max-width: 170px;
  max-height: 62px;
  display: block;
  object-fit: contain;
}

.credential-logo-niceic img {
  max-height: 64px;
}

.credential-logo-trustmark {
  width: 210px;
  flex-basis: 210px;
}

.credential-logo-trustmark img {
  max-width: 200px;
}

.credential-note {
  margin: 0.8rem 0 0;
  color: #858996;
  font-size: 0.64rem;
  text-align: center;
}

@keyframes credential-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(4.5rem, 7vw, 6.75rem) 0;
}

.section-soft {
  background: var(--paper);
}

.section-navy,
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  width: 100%;
  max-width: 1040px;
  margin-bottom: clamp(2.5rem, 4.5vw, 3.75rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
}

#pricing .section-heading > p:not(.eyebrow) {
  max-width: none;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.system-item {
  position: relative;
  grid-column: span 4;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  border: 1px solid #353a56;
  border-radius: var(--radius);
  padding: clamp(1.45rem, 2.5vw, 2rem);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(32, 36, 58, 0.08);
}

.system-item:nth-child(1) {
  grid-column: span 6;
}

.system-item:nth-child(2) {
  grid-column: span 6;
}

.system-item > p {
  margin: 0;
  color: #c3c8d6;
  font-size: 0.94rem;
}

.system-number {
  position: absolute;
  top: 1.6rem;
  right: 1.7rem;
  color: var(--yellow);
  font-family: Manrope, Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.system-item h3 {
  max-width: calc(100% - 2.8rem);
  margin: 0 0 1.9rem;
  color: var(--yellow);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.system-summary {
  margin-bottom: 0.85rem !important;
  color: var(--white) !important;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem) !important;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.35rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-card-featured {
  border: 2px solid var(--yellow);
}

.plan-name {
  margin-bottom: 0.65rem;
  color: #b97200;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.price strong {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  letter-spacing: -0.065em;
}

.price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-card-top > p:last-child {
  min-height: 76px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 0.72rem 0 0.72rem 1.3rem;
  font-size: 0.84rem;
}

.price-card li::before {
  position: absolute;
  top: 0.75rem;
  left: 0;
  color: #b97200;
  content: "✓";
  font-weight: 900;
}

.price-card li strong {
  color: var(--navy);
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p:not(.eyebrow) {
  color: #b7bccb;
}

.section-heading-light .eyebrow,
.eyebrow-light {
  color: var(--yellow);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-grid article {
  min-height: 285px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.025);
}

.process-grid article > span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 850;
}

.process-time {
  margin-bottom: 0.45rem;
  color: #9298ac;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid article > p:last-child {
  color: #b9becc;
  font-size: 0.83rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.2rem;
}

.fit-intro {
  grid-column: 1 / -1;
  max-width: 980px;
  margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.fit-intro h2,
.faq-intro h2 {
  font-size: clamp(2.2rem, 3.9vw, 3.55rem);
}

.fit-intro > p:last-child {
  max-width: 720px;
  color: var(--muted);
}

.fit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--white);
}

.fit-title {
  margin-bottom: 1.4rem;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.fit-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.fit-card li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.faq-intro {
  max-width: 900px;
}

.faq-intro > p:last-child {
  max-width: 720px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: #b97200;
  content: "+";
  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 900px;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-section {
  padding: clamp(4.75rem, 7vw, 6.75rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(420px, 0.9fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.contact-grid h2 {
  color: var(--white);
}

.contact-grid > div:first-child > p:not(.eyebrow) {
  max-width: 600px;
  color: #bdc2d0;
}

.contact-points {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
}

.contact-points span {
  position: relative;
  padding-left: 1.2rem;
  color: #d8dbe4;
  font-size: 0.8rem;
}

.contact-points span::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.contact-card {
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--white);
  color: var(--ink);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.75rem;
  font-weight: 750;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd1d9;
  border-radius: 7px;
  padding: 0.78rem 0.85rem;
  background: var(--white);
  font-size: 0.87rem;
}

.field input,
.field select {
  min-height: 48px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(143, 210, 232, 0.35);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.7rem;
}

.consent input {
  margin: 0.22rem 0 0;
}

.consent a {
  color: var(--ink);
  font-weight: 700;
}

.form-actions {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem 1rem;
  margin-top: 1.3rem;
}

.form-actions .cf-turnstile {
  grid-column: 1 / -1;
  max-width: 100%;
}

.form-actions .button {
  min-width: 220px;
}

.form-actions > span {
  color: var(--muted);
  font-size: 0.66rem;
}

.form-status {
  display: none;
  margin: 1rem 0 0;
  border-radius: 7px;
  padding: 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fff0ee;
  color: var(--error);
}

.form-success .eyebrow {
  color: #9b6205;
}

.form-success h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.form-success p:last-child {
  color: var(--muted);
}

.legal-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--navy);
  color: var(--white);
}

.legal-hero h1 {
  margin-bottom: 0;
}

.legal-content {
  width: min(820px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.legal-content h2 {
  margin-top: 3rem;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 0.5rem;
}

.legal-content a {
  font-weight: 700;
}

.legal-note {
  border-left: 3px solid var(--yellow);
  padding-left: 1rem;
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: #171a2c;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr;
  gap: 3rem;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 420px;
  margin-top: 1rem;
  color: #989eaf;
  font-size: 0.78rem;
}

.footer-grid > div:first-child > p a {
  color: #bbc0cf;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid > div:first-child > p a:hover {
  color: var(--yellow);
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-grid nav a,
.footer-contact a {
  color: #bbc0cf;
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid #32374e;
  padding-top: 1.3rem;
  color: #777e91;
  font-size: 0.66rem;
}

@media (max-width: 1000px) {
  .hero-bottom,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .system-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-item,
  .system-item:nth-child(1),
  .system-item:nth-child(2) {
    grid-column: auto;
  }

  .system-item:last-child {
    grid-column: 1 / -1;
  }

}

@media (max-width: 820px) {
  :root {
    --announcement-height: 48px;
    --header-height: 76px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--announcement-height) + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 49;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1.2rem;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links > a:not(.button) {
    border-bottom: 1px solid var(--dark-line);
    padding: 1rem 0;
    color: var(--white);
    font-size: 1rem;
  }

  .nav-links .button {
    margin-top: 1.2rem;
  }

  .credential-showcase {
    padding: 1.25rem 0 0.9rem;
  }

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

  .system-item,
  .system-item:nth-child(1),
  .system-item:nth-child(2),
  .system-item:last-child {
    grid-column: 1;
    min-height: 0;
  }

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

  .price-card-top > p:last-child {
    min-height: 0;
  }

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

  .process-grid article {
    min-height: 0;
    padding: 1.6rem;
  }

  .process-grid article > span {
    margin-bottom: 1.8rem;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(var(--shell), calc(100% - 1.4rem));
  }

  .announcement-inner {
    justify-content: space-between;
    gap: 0.7rem;
  }

  .announcement-inner p,
  .announcement-inner a {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .section,
  .contact-section {
    padding: 3.75rem 0;
  }

  .hero-inner {
    padding: 4rem 0 4.5rem;
  }

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

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

  .fit-intro,
  .footer-grid > div:first-child {
    grid-column: auto;
  }

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

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

  .form-actions .cf-turnstile,
  .form-actions > span {
    grid-column: 1;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .credential-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .credential-track {
    animation: none;
  }

  .credential-logo-set[aria-hidden="true"] {
    display: none;
  }
}
