:root {
  --navy: #071b2e;
  --navy-2: #0d2941;
  --blue: #123b62;
  --green: #16765a;
  --green-2: #0f5f49;
  --mint: #dff4eb;
  --lime: #b9dc69;
  --gold: #d9b86c;
  --sand: #f6f1e8;
  --cream: #fbfaf7;
  --white: #ffffff;
  --ink: #112234;
  --muted: #627184;
  --line: #dce4e7;
  --soft: #f2f6f5;
  --danger: #a34b43;
  --shadow-sm: 0 14px 36px rgba(7, 27, 46, .08);
  --shadow-md: 0 24px 60px rgba(7, 27, 46, .13);
  --shadow-lg: 0 38px 90px rgba(7, 27, 46, .19);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.08;
}

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

.section {
  padding: 112px 0;
}

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

.section--sand {
  background: var(--sand);
}

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

.section--flush-top {
  padding-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -60px;
  left: 18px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 18px;
}

.topbar {
  color: rgba(255, 255, 255, .78);
  background: #041322;
  font-size: 12px;
}

.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a:hover {
  color: var(--lime);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 228, 231, .82);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, .985);
  box-shadow: 0 12px 34px rgba(7, 27, 46, .08);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: 128px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav>ul {
  display: flex;
  align-items: center;
  gap: 3px;
}

.primary-nav li {
  position: relative;
}

.nav-link {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  color: #25384b;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  color: var(--green);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 245px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.dropdown-menu--wide {
  width: 285px;
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: #33465a;
  font-size: 13.5px;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--green);
  background: var(--soft);
}

.has-dropdown:hover>.dropdown-menu,
.has-dropdown:focus-within>.dropdown-menu,
.has-dropdown.is-open>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 25px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(22, 118, 90, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-2);
  border-color: var(--green-2);
  box-shadow: 0 16px 34px rgba(22, 118, 90, .27);
}

.button--small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 13px;
}

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

.button--light:hover {
  color: var(--navy);
  background: var(--mint);
  border-color: var(--mint);
}

.button--outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(17, 34, 52, .2);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  box-shadow: none;
}

.button--outline-light:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.nav-cta {
  margin-left: 2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}

.text-link:hover {
  gap: 12px;
}

.text-link--light {
  color: var(--lime);
}

.kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--lime);
}

.section-label--light {
  color: var(--mint);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-label {
  justify-content: center;
}

.section-heading h2,
.split-copy h2,
.faq-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -.045em;
}

.section-heading p,
.split-copy>p,
.faq-intro p {
  color: var(--muted);
  font-size: 17px;
}

.section--navy .section-heading p,
.section--navy .split-copy>p {
  color: rgba(255, 255, 255, .68);
}

.hero {
  position: relative;
  color: var(--white);
  background: url("../images/factstxHero.jpg");
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 28%, rgba(185, 220, 105, .15), transparent 30%), radial-gradient(circle at 12% 82%, rgba(22, 118, 90, .28), transparent 36%), linear-gradient(115deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  padding: 86px 0 96px;
}

.hero__content {
  max-width: 680px;
}

.hero .kicker {
  color: var(--mint);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.2vw, 82px);
  letter-spacing: -.06em;
}

.hero h1 span {
  color: var(--lime);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 44px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 13px;
}

.hero__proof span {
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  min-height: 570px;
}

.dashboard {
  position: absolute;
  inset: 38px 0 18px 36px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 32px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dashboard::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(185, 220, 105, .12);
}

.dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard__top span {
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #dff4eb !important;
  border: 1px solid rgba(185, 220, 105, .3);
  border-radius: 999px;
  background: rgba(185, 220, 105, .1);
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(185, 220, 105, .12);
}

.dashboard__headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.dashboard__headline strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  line-height: 1;
}

.dashboard__headline small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .55);
}

.leaf-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--lime);
  background: rgba(185, 220, 105, .12);
}

.leaf-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 22px 18px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(4, 19, 34, .36);
}

.chart span {
  flex: 1;
  min-width: 8px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(to top, var(--green), var(--lime));
  opacity: .9;
}

.dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  background: rgba(4, 19, 34, .32);
}

.metric span,
.metric strong {
  display: block;
}

.metric span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  text-transform: uppercase;
}

.metric strong {
  font-size: 14px;
}

.float-note {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 225px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 17px;
  background: rgba(251, 250, 247, .96);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.float-note strong,
.float-note span {
  display: block;
}

.float-note strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.float-note span {
  color: var(--muted);
  font-size: 11px;
}

.sector-strip {
  color: var(--navy);
  background: var(--lime);
}

.sector-strip__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.sector-strip p {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 26px;
}

.sector-list span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.sector-list span::before {
  content: "•";
  margin-right: 10px;
  color: var(--green);
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 86px;
}

.split-grid--reverse {
  grid-template-columns: 1.05fr .95fr;
}

.split-visual {
  position: relative;
}

.split-visual img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.split-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 72%;
  right: -22px;
  bottom: -22px;
  border-radius: 30px;
  background: var(--mint);
}

.visual-note {
  position: absolute;
  right: -18px;
  bottom: 34px;
  max-width: 245px;
  padding: 20px;
  color: var(--white);
  background: var(--green);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.visual-note strong,
.visual-note span {
  display: block;
}

.visual-note strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.visual-note span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 30px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #33475a;
  font-size: 14px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
  font-size: 11px;
  font-weight: 900;
}

.section--navy .check-list li {
  color: rgba(255, 255, 255, .75);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 27, 46, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 118, 90, .3);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--green);
  background: var(--mint);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.service-card--dark {
  color: var(--white);
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, .08);
}

.service-card--dark p {
  color: rgba(255, 255, 255, .6);
}

.service-card--dark .service-card__icon {
  color: var(--navy);
  background: var(--lime);
}

.service-card--dark a {
  color: var(--lime);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  overflow: hidden;
}

.industry-card::before {
  content: attr(data-number);
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(255, 255, 255, .09);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 68px;
  font-weight: 900;
}

.industry-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.industry-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13.5px;
}

.industry-card:hover {
  border-color: rgba(185, 220, 105, .36);
  background: linear-gradient(145deg, rgba(185, 220, 105, .12), rgba(255, 255, 255, .03));
}

.feature-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  padding: 56px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-panel__intro {
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

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

.feature-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 13px;
  color: var(--green);
  background: var(--mint);
  font-weight: 900;
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 28px 24px;
  border-top: 1px solid var(--line);
}

.process-step::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.process-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.insight-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.insight-card__tag {
  align-self: flex-start;
  margin-bottom: 54px;
  padding: 7px 10px;
  color: var(--green);
  background: var(--mint);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.insight-card p {
  color: var(--muted);
  font-size: 13px;
}

.insight-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: 82px;
}

.faq-intro {
  position: sticky;
  top: 126px;
}

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

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

.accordion-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
}

.accordion-panel {
  padding: 0 50px 24px 0;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  position: relative;
  padding: 96px 0;
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .035), 0 0 0 120px rgba(255, 255, 255, .025);
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(40px, 4vw, 62px);
  letter-spacing: -.045em;
}

.cta-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.cta-band__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.page-hero {
  position: relative;
  padding: 92px 0 100px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(185, 220, 105, .16), transparent 30%), linear-gradient(115deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: auto, 36px 36px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--lime);
}

.page-hero__layout {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  gap: 80px;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -.055em;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
}

.page-hero__aside {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
}

.page-hero__aside span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-hero__aside strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.content-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 80px;
}

.side-card {
  position: sticky;
  top: 126px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.side-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.side-card p {
  color: var(--muted);
  font-size: 13px;
}

.side-nav {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-radius: 10px;
  color: #425366;
  font-size: 13px;
  font-weight: 700;
}

.side-nav a:hover,
.side-nav a.is-active {
  color: var(--green);
  background: var(--mint);
}

.prose h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.5vw, 52px);
  letter-spacing: -.04em;
}

.prose h3 {
  margin: 40px 0 12px;
  font-size: 24px;
}

.prose p {
  color: var(--muted);
  font-size: 16px;
}

.prose ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 30px;
}

.prose li {
  position: relative;
  padding-left: 28px;
  color: #3b4d60;
}

.prose li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding: 26px;
  border-radius: 20px;
  color: var(--white);
  background: var(--navy);
}

.inline-cta strong,
.inline-cta span {
  display: block;
}

.inline-cta span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  min-height: 225px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.benefit-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.team-card__avatar {
  width: 100%;
  aspect-ratio: 1 / .78;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--mint), var(--sand));
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.team-card h2 {
  margin-bottom: 6px;
  font-size: 21px;
}

.team-card p {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.contact-panel {
  padding: 38px;
  border-radius: 26px;
  color: var(--white);
  background: var(--navy);
}

.contact-panel h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.contact-panel>p {
  color: rgba(255, 255, 255, .65);
}

.contact-method {
  display: block;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
}

.contact-method span,
.contact-method strong {
  display: block;
}

.contact-method span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.form-field label {
  color: #33475a;
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 118, 90, .1);
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.resource-article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.resource-article+.resource-article {
  margin-top: 20px;
}

.resource-article span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.resource-article h2 {
  margin: 12px 0 14px;
  font-size: 31px;
}

.resource-article p {
  color: var(--muted);
}

.newsletter {
  padding: 70px 0;
  color: var(--white);
  background: var(--navy-2);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 54px;
}

.newsletter h2 {
  margin-bottom: 9px;
  font-size: 33px;
}

.newsletter p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.newsletter-form .form-message {
  position: absolute;
}

.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, .62);
  background: #041322;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 58px;
}

.brand--footer .brand__logo {
  width: 146px;
  filter: brightness(0) invert(1);
  opacity: .94;
}

.footer__brand>p {
  max-width: 370px;
  margin: 22px 0;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.social-links a:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.site-footer h2 {
  margin: 6px 0 18px;
  color: var(--white);
  font-size: 14px;
}

.site-footer li+li {
  margin-top: 9px;
}

.site-footer li a {
  font-size: 12.5px;
}

.site-footer li a:hover {
  color: var(--lime);
}

.footer__contact p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer__contact p span {
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  text-transform: uppercase;
}

.footer__contact p a {
  color: var(--white);
  font-size: 12.5px;
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 10.5px;
}

.footer__bottom p {
  margin: 0;
}

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

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

.reveal--delay-sm {
  transition-delay: .08s;
}

.reveal--delay-md {
  transition-delay: .16s;
}

.reveal--delay-lg {
  transition-delay: .24s;
}

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

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

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

@media (max-width: 1080px) {
  .primary-nav {
    gap: 10px;
  }

  .nav-link {
    padding-inline: 7px;
    font-size: 12.5px;
  }

  .hero__grid {
    gap: 38px;
  }

  .service-grid,
  .industry-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel__intro {
    padding-right: 0;
    padding-bottom: 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 74px;
  }

  .brand__logo {
    width: 115px;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: block;
    max-height: calc(100vh - 74px);
    padding: 20px;
    overflow-y: auto;
    background: var(--cream);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav>ul {
    display: block;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 6px 0 8px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.is-open>.dropdown-menu {
    display: block;
  }

  .nav-cta {
    width: 100%;
    margin-top: 18px;
  }

  .section {
    padding: 84px 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 74px 0 84px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    min-height: 540px;
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .dashboard {
    inset: 30px 28px 18px;
  }

  .float-note {
    left: 0;
  }

  .sector-strip__inner {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .sector-list {
    justify-content: flex-start;
  }

  .split-grid,
  .split-grid--reverse,
  .content-grid,
  .contact-grid,
  .faq-grid,
  .page-hero__layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .split-grid--reverse .split-copy {
    order: 2;
  }

  .split-grid--reverse .split-visual {
    order: 1;
  }

  .side-card,
  .faq-intro {
    position: static;
  }

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

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__visual {
    min-height: 500px;
  }

  .dashboard {
    inset: 18px 0 28px;
    padding: 22px;
  }

  .dashboard__headline strong {
    font-size: 38px;
  }

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

  .metric:nth-child(3) {
    display: none;
  }

  .float-note {
    left: 10px;
    bottom: 0;
  }

  .sector-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .service-grid,
  .industry-grid,
  .team-grid,
  .benefit-grid,
  .insight-grid,
  .process-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .split-visual img {
    height: 460px;
  }

  .visual-note {
    right: 10px;
  }

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

  .feature-panel {
    padding: 30px;
  }

  .page-hero {
    padding: 70px 0 76px;
  }

  .page-hero h1 {
    font-size: 45px;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .form-field--full,
  .form-note,
  .form-message {
    grid-column: auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }
}

/* Dynamic visual enhancements */
.hero {
  position: relative;
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .7;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 50px;
  background: radial-gradient(circle, rgba(185, 220, 105, .18), rgba(185, 220, 105, 0));
}

.hero::after {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(223, 244, 235, .22), rgba(223, 244, 235, 0));
}

.dashboard {
  overflow: hidden;
}

.chart span {
  transform-origin: bottom;
  animation: dashboardBarGrow .95s ease both, dashboardBarFloat 6s ease-in-out infinite;
}

.chart span:nth-child(1) {
  animation-delay: .05s, 0s;
}

.chart span:nth-child(2) {
  animation-delay: .11s, .3s;
}

.chart span:nth-child(3) {
  animation-delay: .17s, .6s;
}

.chart span:nth-child(4) {
  animation-delay: .23s, .9s;
}

.chart span:nth-child(5) {
  animation-delay: .29s, 1.2s;
}

.chart span:nth-child(6) {
  animation-delay: .35s, 1.5s;
}

.chart span:nth-child(7) {
  animation-delay: .41s, 1.8s;
}

.chart span:nth-child(8) {
  animation-delay: .47s, 2.1s;
}

.chart span:nth-child(9) {
  animation-delay: .53s, 2.4s;
}

.hero-photo {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--white);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo--one {
  width: 148px;
  height: 188px;
  top: 34px;
  right: -6px;
  transform: rotate(7deg);
  animation: floatCard 7s ease-in-out infinite;
}

.hero-photo--two {
  width: 200px;
  height: 126px;
  left: -26px;
  bottom: 48px;
  transform: rotate(-6deg);
  animation: floatCard 8.5s ease-in-out infinite reverse;
}

.visual-showcase {
  padding-bottom: 80px;
}

.gallery-marquee {
  overflow: hidden;
  padding-top: 8px;
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 21px 8px;
  animation: marqueeScroll 48s linear infinite;
}

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

.gallery-card {
  width: 270px;
  flex: 0 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 34, 52, .08);
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  color: #22374a;
  font-size: 13px;
  font-weight: 700;
}

.media-story__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}

.media-cluster {
  position: relative;
  min-height: 590px;
}

.media-cluster__primary,
.media-cluster__secondary,
.contact-panel__photo,
.photo-row__item,
.photo-row__item--large {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.media-cluster__primary {
  width: min(100%, 520px);
  border-radius: 30px;
}

.media-cluster__secondary {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: min(52%, 260px);
  border-radius: 24px;
  border: 8px solid var(--cream);
}

.media-cluster img,
.contact-panel__photo img,
.photo-row__item img,
.photo-row__item--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-cluster__primary img {
  aspect-ratio: 5 / 6;
}

.media-cluster__secondary img {
  aspect-ratio: 1 / 1;
}

.floating-badge {
  position: absolute;
  left: 26px;
  bottom: 0;
  max-width: 290px;
  padding: 20px 22px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 27, 46, .96), rgba(13, 41, 65, .96));
  box-shadow: var(--shadow-md);
}

.floating-badge strong,
.floating-badge span {
  display: block;
}

.floating-badge strong {
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
}

.floating-badge span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.media-story__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -.04em;
}

.media-story__copy p {
  color: var(--muted);
}

.about-visual-story .split-visual img {
  min-height: 520px;
}

.industry-visual-story {
  overflow: hidden;
}

.service-visual-row {
  padding-top: 0;
}

.photo-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.photo-row__item,
.photo-row__item--large {
  border-radius: 24px;
  background: var(--white);
}

.photo-row__item img {
  aspect-ratio: 4 / 4.2;
}

.photo-row__item--large img {
  aspect-ratio: 4 / 3;
}

.contact-panel__photo {
  margin-top: 22px;
  border-radius: 18px;
}

.contact-panel__photo img {
  aspect-ratio: 16 / 10;
}

.newsletter-form {
  position: relative;
}

@keyframes dashboardBarGrow {
  from {
    transform: scaleY(0.12);
    opacity: .35;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes dashboardBarFloat {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(.92);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(var(--float-rotate, 0deg));
  }

  50% {
    transform: translateY(-10px) rotate(var(--float-rotate, 0deg));
  }
}

.hero-photo--one {
  --float-rotate: 7deg;
}

.hero-photo--two {
  --float-rotate: -6deg;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .chart span,
  .hero-photo--one,
  .hero-photo--two,
  .gallery-track {
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .media-story__grid {
    gap: 40px;
  }

  .photo-row {
    grid-template-columns: 1fr 1fr;
  }

  .photo-row__item--large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .hero-photo--one {
    right: 10px;
  }

  .hero-photo--two {
    left: 8px;
    bottom: 18px;
  }

  .media-story__grid {
    grid-template-columns: 1fr;
  }

  .media-cluster {
    min-height: 520px;
    max-width: 620px;
  }

  .media-story__copy {
    order: 2;
  }

  .photo-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .hero-photo--one {
    width: 112px;
    height: 146px;
    top: 8px;
    right: 6px;
  }

  .hero-photo--two {
    width: 148px;
    height: 96px;
    left: 6px;
    bottom: 14px;
  }

  .gallery-card {
    width: 220px;
  }

  .gallery-card img {
    height: 220px;
  }

  .gallery-track {
    gap: 14px;
  }

  .media-cluster {
    min-height: 460px;
  }

  .media-cluster__primary {
    width: 100%;
  }

  .media-cluster__secondary {
    width: 46%;
    right: 0;
    bottom: 62px;
    border-width: 6px;
  }

  .floating-badge {
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 16px 18px;
  }
}