:root {
  --blue: #07589a;
  --deep: #073b67;
  --red: #d71920;
  --red2: #b81218;
  --ink: #122230;
  --muted: #586a78;
  --line: #d9e4eb;
  --off: #f5f8fa;
  --green: #157347;
  --shadow: 0 20px 52px rgba(7, 59, 103, 0.14);
}
.fsgt-foot * {
  box-sizing: border-box;
}
.fsgt-foot {
  box-sizing: border-box;
  min-height: 100vh;
  overflow-x: clip;
  background: #fff;
}
html {
  scroll-behavior: smooth;
}
body.fsgt-foot-page {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.fsgt-foot img,
.fsgt-foot video {
  max-width: 100%;
}
.fsgt-foot a {
  color: inherit;
}
.fsgt-foot button,
.fsgt-foot input,
.fsgt-foot select {
  font: inherit;
}
.fsgt-foot :focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.32);
  outline-offset: 3px;
}
.fsgt-foot .container {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}
.fsgt-foot .topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(7, 59, 103, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.fsgt-foot .topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fsgt-foot .brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.fsgt-foot .brand img {
  width: 74px;
  height: auto;
  flex: 0 0 74px;
  object-fit: contain;
}
.fsgt-foot .brand span {
  display: grid;
}
.fsgt-foot .brand small {
  color: var(--muted);
}
.fsgt-foot .mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(215, 25, 32, 0.2);
}
.fsgt-foot .mini-cta:hover {
  background: var(--red2);
}
.fsgt-foot .hero {
  overflow: hidden;
  position: relative;
  padding: clamp(54px, 8vw, 108px) 0 78px;
  background: radial-gradient(
      circle at 82% 18%,
      rgba(33, 139, 196, 0.22),
      transparent 29%
    ),
    linear-gradient(135deg, #f4f9fc 0%, #fff 53%, #eef6fb 100%);
}
.fsgt-foot .hero:after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -270px;
  bottom: -340px;
  border: 74px solid rgba(215, 25, 32, 0.07);
  border-radius: 50%;
}
.fsgt-foot .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}
.fsgt-foot .hero__grid > *,
.fsgt-foot .values__grid > *,
.fsgt-foot .download__grid > * {
  min-width: 0;
}
.fsgt-foot .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 24px;
  border: 1px solid #c9e3f3;
  border-radius: 999px;
  color: var(--deep);
  background: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}
.fsgt-foot .pill i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1c9c5e;
  box-shadow: 0 0 0 5px rgba(28, 156, 94, 0.11);
}
.fsgt-foot .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.fsgt-foot .eyebrow:before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}
.fsgt-foot .eyebrow--light {
  color: #9ed5f5;
}
.fsgt-foot h1,
.fsgt-foot h2,
.fsgt-foot h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.fsgt-foot h1 {
  font-size: clamp(2.55rem, 6.4vw, 5.25rem);
  max-width: 790px;
}
.fsgt-foot h1 em {
  color: var(--red);
  font-style: normal;
}
.fsgt-foot h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.fsgt-foot h3 {
  font-size: 1.2rem;
}
.fsgt-foot p {
  margin: 0;
}
.fsgt-foot .lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 690px;
}
.fsgt-foot .hero .lead {
  margin-top: 22px;
}
.fsgt-foot .actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.fsgt-foot .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}
.fsgt-foot .btn:hover {
  transform: translateY(-2px);
}
.fsgt-foot .btn--red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 13px 30px rgba(215, 25, 32, 0.25);
}
.fsgt-foot .btn--red:hover {
  background: var(--red2);
}
.fsgt-foot .btn--light {
  color: var(--deep);
  background: #fff;
  border: 1px solid #cbdbe5;
}
.fsgt-foot .btn--blue {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 13px 30px rgba(7, 88, 154, 0.22);
}
.fsgt-foot .btn--white {
  color: var(--red);
  background: #fff;
}
.fsgt-foot .btn--full {
  width: 100%;
}
.fsgt-foot .checks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}
.fsgt-foot .checks span:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 6px;
}
.fsgt-foot .video-card {
  position: relative;
  width: min(390px, 100%);
  justify-self: center;
  padding: 10px;
  border-radius: 32px;
  background: #081d2c;
  box-shadow: 0 28px 70px rgba(7, 59, 103, 0.3);
  transform: rotate(1.6deg);
}
.fsgt-foot .video-card:before {
  content: "33 s";
  position: absolute;
  right: 19px;
  top: 20px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}
.fsgt-foot .video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 24px;
  background: #000;
}
.fsgt-foot .video-card figcaption {
  color: rgba(255, 255, 255, 0.82);
  padding: 13px 7px 5px;
  font-size: 0.83rem;
  text-align: center;
}
.fsgt-foot .facts {
  border-block: 1px solid var(--line);
  background: #fff;
}
.fsgt-foot .facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fsgt-foot .facts__grid > div {
  padding: 23px 20px;
  border-right: 1px solid var(--line);
}
.fsgt-foot .facts__grid > div:last-child {
  border-right: 0;
}
.fsgt-foot .facts strong {
  display: block;
  color: var(--deep);
  font-size: 1.04rem;
}
.fsgt-foot .facts span {
  color: var(--muted);
  font-size: 0.86rem;
}
.fsgt-foot .section {
  padding: clamp(70px, 8vw, 112px) 0;
}
.fsgt-foot .section-head {
  display: grid;
  gap: 17px;
  max-width: 780px;
  margin-bottom: 44px;
}
.fsgt-foot .section-head--center {
  text-align: center;
  margin-inline: auto;
}
.fsgt-foot .section-head--center .eyebrow {
  justify-content: center;
}
.fsgt-foot .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.fsgt-foot .card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(18, 34, 48, 0.05);
}
.fsgt-foot .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border-radius: 13px;
  color: #fff;
  background: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
}
.fsgt-foot .icon--red {
  background: var(--red);
}
.fsgt-foot .card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.93rem;
}
.fsgt-foot .values {
  padding: clamp(70px, 8vw, 112px) 0;
  background: var(--deep);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.fsgt-foot .values:after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 66px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -210px;
  top: -240px;
}
.fsgt-foot .values__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.fsgt-foot .values__photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}
.fsgt-foot .values__photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 55% center;
  display: block;
}
.fsgt-foot .values__photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 59, 103, 0.55));
}
.fsgt-foot .lead--light {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 18px;
}
.fsgt-foot .values blockquote {
  margin: 28px 0 0;
  padding-left: 24px;
  border-left: 5px solid var(--red);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
}
.fsgt-foot .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}
.fsgt-foot .tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 760;
}
.fsgt-foot .rules {
  background: var(--off);
}
.fsgt-foot .rules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fsgt-foot .rule {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.fsgt-foot .rule b {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--blue);
  font-size: 0.85rem;
}
.fsgt-foot .rule strong {
  display: block;
}
.fsgt-foot .rule span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.87rem;
}
.fsgt-foot .download {
  background: linear-gradient(145deg, #fff, #eef6fb);
}
.fsgt-foot .download__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(35px, 6vw, 74px);
  align-items: start;
}
.fsgt-foot .download__copy {
  position: sticky;
  top: 110px;
}
.fsgt-foot .download__copy .lead {
  margin-top: 18px;
}
.fsgt-foot .download__copy ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--muted);
}
.fsgt-foot .download__copy li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px;
}
.fsgt-foot .contact {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid #cce1ee;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.75);
}
.fsgt-foot .contact strong,
.fsgt-foot .contact span {
  display: block;
}
.fsgt-foot .contact strong {
  color: var(--deep);
}
.fsgt-foot .contact span {
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}
.fsgt-foot .form-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.fsgt-foot .form-card h3 {
  font-size: 1.6rem;
}
.fsgt-foot .form-card__intro {
  color: var(--muted);
  margin-top: 8px;
}
.fsgt-foot .brevo-form-slot {
  margin-top: 28px;
}
.fsgt-foot .brevo-form-slot .sib_signup_form {
  margin: 0;
}
.fsgt-foot .brevo-form-slot [class^="sib_signup_box_inside_"],
.fsgt-foot .brevo-form-slot [class*=" sib_signup_box_inside_"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fsgt-foot .brevo-form-slot [class^="sib_signup_box_inside_"] > p,
.fsgt-foot .brevo-form-slot [class*=" sib_signup_box_inside_"] > p {
  margin: 0;
  min-width: 0;
}
.fsgt-foot .brevo-form-slot .sib_loader,
.fsgt-foot .brevo-form-slot .sib_msg_disp,
.fsgt-foot .brevo-form-slot .sib-TEAM_PROJECT-area,
.fsgt-foot .brevo-form-slot .sib-PROJECT_STATUS-area,
.fsgt-foot .brevo-form-slot .sib-RGPD_PROJECT-area,
.fsgt-foot .brevo-form-slot .sib-NEWS_FOOT7-area,
.fsgt-foot .brevo-form-slot .sib-submit-area,
.fsgt-foot .brevo-form-slot .sib-SUBMIT-area,
.fsgt-foot .brevo-form-slot p:has(select),
.fsgt-foot .brevo-form-slot p:has(input[type="checkbox"]),
.fsgt-foot .brevo-form-slot p:has(input[type="submit"]),
.fsgt-foot .brevo-form-slot p:has(textarea) {
  grid-column: 1/-1;
}
.fsgt-foot .brevo-form-slot label {
  display: block;
  margin-bottom: 7px;
  color: var(--deep);
  font-size: 0.89rem;
  font-weight: 780;
}
.fsgt-foot
  .brevo-form-slot
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.fsgt-foot .brevo-form-slot select,
.fsgt-foot .brevo-form-slot textarea {
  width: 100% !important;
  min-height: 50px;
  padding: 0 14px !important;
  border: 1px solid #bccbd5 !important;
  border-radius: 12px !important;
  color: var(--ink) !important;
  background: #fff !important;
  box-shadow: none !important;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.fsgt-foot .brevo-form-slot textarea {
  min-height: 120px;
  padding-block: 12px !important;
}
.fsgt-foot .brevo-form-slot input:focus,
.fsgt-foot .brevo-form-slot select:focus,
.fsgt-foot .brevo-form-slot textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px rgba(7, 88, 154, 0.1) !important;
  outline: none !important;
}
.fsgt-foot .brevo-form-slot input[type="checkbox"],
.fsgt-foot .brevo-form-slot input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  margin: 3px 8px 0 0 !important;
  accent-color: var(--blue);
}
.fsgt-foot .brevo-form-slot .sib-RGPD_PROJECT-area label,
.fsgt-foot .brevo-form-slot .sib-NEWS_FOOT7-area label,
.fsgt-foot .brevo-form-slot .sib-consent-label {
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
}
.fsgt-foot .brevo-form-slot input.sib-default-btn[type="submit"] {
  width: 100% !important;
  min-height: 54px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: var(--red) !important;
  box-shadow: 0 13px 30px rgba(215, 25, 32, 0.25) !important;
  font-weight: 850 !important;
  cursor: pointer;
}
.fsgt-foot .brevo-form-slot input.sib-default-btn[type="submit"]:hover {
  background: var(--red2) !important;
}
.fsgt-foot .brevo-form-slot .sib-alert-message {
  display: block;
  margin: 0;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.86rem;
}
.fsgt-foot .brevo-form-slot .sib-alert-message-success {
  color: #0c6039;
  background: #f0faf5;
}
.fsgt-foot .brevo-form-slot .sib-alert-message-error,
.fsgt-foot .brevo-form-slot .sib-alert-message-warning {
  color: #8b1218;
  background: #fff1f1;
}
.fsgt-foot .privacy {
  margin-top: 13px;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
}
.fsgt-foot .privacy a {
  color: var(--blue);
  font-weight: 750;
}
.fsgt-foot .form-config-notice {
  padding: 18px;
  border: 1px solid #e9c277;
  border-radius: 14px;
  color: #60430a;
  background: #fff9e9;
}
.fsgt-foot .form-config-notice p {
  margin-top: 8px;
}
.fsgt-foot .form-config-notice a {
  color: var(--blue);
  font-weight: 750;
}
.fsgt-foot .player {
  padding: 36px 0;
  background: var(--red);
  color: #fff;
}
.fsgt-foot .player__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.fsgt-foot .player h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}
.fsgt-foot .player p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
}
.fsgt-foot .player .btn {
  flex: 0 0 auto;
}
.fsgt-foot footer {
  padding: 38px 0 95px;
  color: #c9d9e5;
  background: #071d2d;
}
.fsgt-foot .footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.fsgt-foot .footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fsgt-foot .footer__brand img {
  width: 128px;
  height: auto;
  flex: 0 0 128px;
}
.fsgt-foot .footer__brand strong,
.fsgt-foot .footer__brand span {
  display: block;
}
.fsgt-foot .footer__brand strong {
  color: #fff;
}
.fsgt-foot .footer__brand span {
  font-size: 0.84rem;
}
.fsgt-foot .footer__grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.84rem;
}
.fsgt-foot .footer__grid nav a {
  color: #d9e7f0;
  text-decoration: none;
}
.fsgt-foot .footer__grid nav a:hover {
  text-decoration: underline;
}
.fsgt-foot .sticky-mobile {
  display: none;
}
@media (max-width: 940px) {
  .fsgt-foot .hero__grid,
  .fsgt-foot .values__grid,
  .fsgt-foot .download__grid {
    grid-template-columns: 1fr;
  }
  .fsgt-foot .hero__copy {
    text-align: center;
  }
  .fsgt-foot .hero__copy .lead {
    margin-inline: auto;
  }
  .fsgt-foot .actions,
  .fsgt-foot .checks {
    justify-content: center;
  }
  .fsgt-foot .video-card {
    width: min(365px, 88vw);
  }
  .fsgt-foot .facts__grid,
  .fsgt-foot .cards {
    grid-template-columns: 1fr 1fr;
  }
  .fsgt-foot .facts__grid > div:nth-child(2) {
    border-right: 0;
  }
  .fsgt-foot .facts__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .fsgt-foot .values__photo,
  .fsgt-foot .values__photo img {
    min-height: 470px;
  }
  .fsgt-foot .rules__grid {
    grid-template-columns: 1fr 1fr;
  }
  .fsgt-foot .download__copy {
    position: static;
  }
  .fsgt-foot .footer__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .fsgt-foot .container {
    width: min(100% - 24px, 1160px);
  }
  .fsgt-foot .topbar__inner {
    min-height: 64px;
  }
  .fsgt-foot .brand img {
    width: 56px;
    height: auto;
    flex-basis: 56px;
  }
  .fsgt-foot .brand span {
    display: none;
  }
  .fsgt-foot .mini-cta {
    padding: 0 14px;
    min-height: 40px;
    font-size: 0.82rem;
  }
  .fsgt-foot .hero {
    padding-top: 44px;
    padding-bottom: 55px;
  }
  .fsgt-foot h1 {
    font-size: clamp(2.5rem, 13.2vw, 4rem);
  }
  .fsgt-foot .actions .btn {
    width: 100%;
  }
  .fsgt-foot .checks {
    gap: 8px 16px;
    font-size: 0.8rem;
  }
  .fsgt-foot .facts__grid,
  .fsgt-foot .cards,
  .fsgt-foot .rules__grid,
  .fsgt-foot .brevo-form-slot [class^="sib_signup_box_inside_"],
  .fsgt-foot .brevo-form-slot [class*=" sib_signup_box_inside_"] {
    grid-template-columns: 1fr;
  }
  .fsgt-foot .facts__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .fsgt-foot .facts__grid > div:last-child {
    border-bottom: 0;
  }
  .fsgt-foot .values__photo,
  .fsgt-foot .values__photo img {
    min-height: 420px;
  }
  .fsgt-foot .form-card {
    padding: 24px 18px;
  }
  .fsgt-foot .brevo-form-slot [class^="sib_signup_box_inside_"] > p,
  .fsgt-foot .brevo-form-slot [class*=" sib_signup_box_inside_"] > p {
    grid-column: auto;
  }
  .fsgt-foot .player__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .fsgt-foot .player .btn {
    width: 100%;
  }
  .fsgt-foot .footer__brand {
    align-items: flex-start;
  }
  .fsgt-foot .footer__brand img {
    width: 110px;
    flex-basis: 110px;
  }
  .fsgt-foot footer {
    padding-bottom: 110px;
  }
  .fsgt-foot .sticky-mobile {
    position: fixed;
    display: block;
    z-index: 80;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 35px rgba(7, 29, 45, 0.22);
    backdrop-filter: blur(12px);
  }
  .fsgt-foot .sticky-mobile .btn {
    min-height: 50px;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .fsgt-foot .container {
    width: min(100% - 20px, 1160px);
  }
  .fsgt-foot .topbar__inner {
    gap: 10px;
  }
  .fsgt-foot .mini-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }
  .fsgt-foot .hero {
    padding-top: 36px;
  }
  .fsgt-foot h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }
  .fsgt-foot h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }
  .fsgt-foot .section,
  .fsgt-foot .values {
    padding-block: 58px;
  }
  .fsgt-foot .values__photo,
  .fsgt-foot .values__photo img {
    min-height: 360px;
  }
  .fsgt-foot .rule,
  .fsgt-foot .card {
    padding: 18px;
  }
  .fsgt-foot .footer__brand {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fsgt-foot *,
  .fsgt-foot *:before,
  .fsgt-foot *:after {
    transition: none !important;
  }
}

.fsgt-foot .btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.fsgt-foot .contact a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
body.admin-bar .fsgt-foot .topbar {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .fsgt-foot .topbar {
    top: 46px;
  }
}
