@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --navy: #061a2f;
  --navy2: #082b49;
  --blue: #0c78aa;
  --cyan: #38bde7;
  --orange: #ff9933;
  --green: #138808;
  --off: #f5f7f5;
  --ink: #09203a;
  --muted: #61727d;
  --line: rgba(9, 32, 58, .13);
  --white: #fff;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

ul {
  list-style: none;
  padding: 0 !important;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--off);
  color: var(--ink);
  overflow-x: hidden
}

a {
  text-decoration: none
}

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

button,
input,
select {
  font: inherit
}

.z-2 {
  z-index: 2
}

.z-3 {
  z-index: 3
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff
}

.loader-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 700 10px "Space Grotesk";
  letter-spacing: .2em
}

.loader-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-top-color: var(--orange);
  border-right-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite
}

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

@keyframes rotateText {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  32% {
    opacity: 1;
    transform: translateY(0);
  }

  33% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.rotating-text {
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 220px;
  transform: translateY(-68px);
}

.text-rotating {
  display: inline-block;
  position: absolute;
  opacity: 0;
  animation: rotateText 9s infinite;
  left: 0;
  top: 0;
  color: #fff
}

.text-rotating:nth-child(1) {
  animation-delay: 0s;
}

.text-rotating:nth-child(2) {
  animation-delay: 3s;
}

.text-rotating:nth-child(3) {
  animation-delay: 6s;
}

.campaign-nav {
  padding: 0;
  background: #01071096;
  border-bottom: 1px solid rgba(56, 189, 231, .24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  z-index: 1000;
  position: absolute;
  width: 100%;
  padding: 10px 0;
}

.campaign-nav .container-fluid {
  height: 100%;
  align-items: center
}

.brand {
  align-self: stretch;
  width: 250px;
  margin: 0 !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 130px;
  max-width: 100%;
  object-fit: contain
}

.campaign-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font: 700 10px "Space Grotesk";
  letter-spacing: .2em;
  color: #d7e6ee
}

.nav-demo {
  background: var(--orange);
  color: #061a2f;
  padding: 13px 20px;
  font: 800 10px "Space Grotesk";
  letter-spacing: .12em;
  transition: .3s
}

.nav-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 153, 51, .25)
}

.hero {
  position: relative;
  min-height: 100svh;
  background: radial-gradient(circle at 72% 48%, #0d4c6d 0, #082b49 32%, #061a2f 72%);
  color: #fff;
  overflow: hidden
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(45deg, black, transparent);
  mix-blend-mode: multiply
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, #000, transparent 90%);
  opacity: .55
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.glow-one {
  width: 480px;
  height: 480px;
  right: 10%;
  top: 25%;
  background: rgba(20, 137, 200, .18)
}

.glow-two {
  width: 250px;
  height: 250px;
  left: 15%;
  bottom: 5%;
  background: rgba(255, 153, 51, .08)
}

.hero-row {
  padding-top: 60px
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 80px 0 40px
}

.eyebrow {
  font: 700 10px "Space Grotesk";
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 24px
}

.eyebrow.dark {
  color: #60737d
}

.hero h1,
.section h2,
.section-heading h2,
.machine-copy h2,
.origin-copy h2,
.cta-section h2 {
  font-family: "Space Grotesk";
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92
}

.hero h1 {
  font-size: clamp(55px, 7vw, 74px);
  margin: 0;
  line-height: 86px;
}

.hero h1 .orange {
  color: var(--orange);
  display: block;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  margin: 32px 0
}

.hero-badges {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, .17);
  padding: 9px 12px;
  font: 700 14px "Space Grotesk";
  letter-spacing: 0.12em;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}


.btn {
  border-radius: 0;
  font: 900 14px "Space Grotesk";
  letter-spacing: .12em;
  padding: 12px 10px;
}

.btn-saffron {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #061a2f;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}

.btn-saffron:hover {
  background: #ffad57;
  color: #061a2f
}

.btn-green {
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff
}

.btn-green:hover {
  background: #1aa70c;
  color: #fff
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff
}

.btn-outline-light:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.independence-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 55px;
  font-size: 9px;
  letter-spacing: .17em
}

.independence-line b {
  color: #3bbd75
}

.independence-line small {
  color: #8198a5
}

.mini-tricolor {
  display: flex;
  width: 45px;
  height: 3px
}

.mini-tricolor i {
  flex: 1
}

.mini-tricolor i:nth-child(1) {
  background: var(--orange)
}

.mini-tricolor i:nth-child(2) {
  background: #fff
}

.mini-tricolor i:nth-child(3) {
  background: var(--green)
}

.hero-product-wrap {
  position: relative;
  height: 85vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-product {
  position: relative;
  z-index: 4;
  height: 82%;
  max-width: 78%;
  object-fit: contain;
  filter: drop-shadow(0 45px 35px rgba(0, 0, 0, .48));
  transform-origin: center bottom
}

.product-water-splash {
  position: absolute;
  width: 72%;
  height: 38%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42, 182, 228, .55), transparent 65%);
  filter: blur(20px);
  bottom: 12%;
  z-index: 1
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(75, 198, 232, .32);
  border-radius: 50%;
  z-index: 2;
  transform: rotate(-20deg)
}

.orbit-a {
  width: 82%;
  height: 34%;
}

.orbit-b {
  width: 95%;
  height: 24%;
  transform: rotate(20deg)
}

.orbit-c {
  width: 65%;
  height: 50%;
  transform: rotate(68deg);
  border-color: rgba(255, 153, 51, .25)
}

.product-tag {
  position: absolute;
  right: 8%;
  bottom: 11%;
  z-index: 5;
  font: 700 10px "Space Grotesk";
  letter-spacing: .16em;
  color: #89a8b8
}

.product-tag b {
  color: #fff
}

.floating-spec {
  position: absolute;
  z-index: 6;
  font: 700 8px "Space Grotesk";
  letter-spacing: .14em;
  color: #a9c3ce;
  border-top: 1px solid rgba(255, 255, 255, .28);
  padding-top: 7px
}

.floating-spec b {
  color: #fff
}

.spec-1 {
  left: 4%;
  top: 27%
}

.spec-2 {
  right: 2%;
  top: 34%;
  color: var(--orange)
}

.spec-3 {
  left: 10%;
  bottom: 28%;
  color: #4bd78b
}

.tricolor-flow {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 220px;
  overflow: visible;
  transform: rotate(-6deg)
}

.flow-main {
  left: 0;
  bottom: 11%
}

.tricolor-flow span {
  position: absolute;
  left: -8%;
  width: 116%;
  height: 15px;
  border-radius: 50%;
  filter: blur(.2px);
  transform-origin: center;
  animation: flowMove 7s ease-in-out infinite alternate
}

.flow-saffron {
  top: 60px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 16%, #ffbb70 42%, transparent 78%);
  box-shadow: 0 0 22px rgba(255, 153, 51, .5)
}

.flow-white {
  top: 82px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, .9) 23%, #fff 45%, transparent 80%);
  animation-delay: .2s
}

.flow-green {
  top: 104px;
  background: linear-gradient(90deg, transparent 2%, #39a93b 25%, var(--green) 48%, transparent 82%);
  box-shadow: 0 0 20px rgba(19, 136, 8, .35);
  animation-delay: .4s
}

@keyframes flowMove {
  from {
    transform: translateX(-2%) scaleY(.8)
  }

  to {
    transform: translateX(3%) scaleY(1.2)
  }
}

.scroll-cue {
  position: absolute;
  left: 5%;
  bottom: 25px;
  color: #728b99;
  font: 700 8px "Space Grotesk";
  letter-spacing: .18em
}

.scroll-cue span {
  display: inline-block;
  width: 55px;
  height: 1px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 10px
}

.section {
  padding: 145px 0
}

.bill-section {
  padding: 0;
  background: #f5f7f5;
  border-top: 1px solid rgba(9, 32, 58, .12);
  border-bottom: 1px solid rgba(9, 32, 58, .12)
}

.bill-layout {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(280px, 30%) minmax(390px, 45%) minmax(280px, 25%);
  background: linear-gradient(110deg, #f8fafb, #eaf0f4);
  overflow: hidden
}

.bill-intro {
  padding: 47px 60px 28px;
}

.bill-chapter {
  font: 700 10px "Space Grotesk";
  letter-spacing: .06em;
  color: #1974b5;
  margin-bottom: 12px
}

.bill-section h2 {
  font-size: 28px;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 12px;
  color: #0a2550
}

.bill-section h3 {
  font: 700 14px "Space Grotesk";
  letter-spacing: -.025em;
  color: #102a50;
  margin: 0 0 16px
}

.bill-section p {
  font-size: 12px;
  line-height: 1.45;
  color: #344962;
  margin: 0;
  max-width: 260px
}

.cost-points {
  margin-top: 30px;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.cost-points div {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-right: 1px solid rgba(9, 32, 58, .1);
  text-align: center
}

.cost-points div:last-child {
  border-right: 0
}

.cost-points i {
  font: 700 23px "Space Grotesk";
  line-height: 1;
  color: #326b9d;
  font-style: normal
}

.cost-points span {
  font: 700 8px/1.35 "Space Grotesk";
  letter-spacing: 0;
  color: #53677a
}

.bill-cta {
  position: relative;
  padding: 64px 28px;
  color: #102a50;
  background: linear-gradient(120deg, rgba(255, 255, 255, .3), rgba(230, 238, 243, .68))
}

.bill-cta .bill-question {
  font: 500 22px / 1.32 "Space Grotesk";
  letter-spacing: -.05em;
  color: #263954;
  margin-bottom: 54px;
}

.bill-question b {
  font-weight: 700;
  font-size: 40px;
}

.bill-cta .bill-answer {
  font-size: 18px;
  line-height: 1.32;
  color: #344962;
  position: relative;
  z-index: 99;
}

.bill-answer strong {
  font: 700 40px/1.2 "Space Grotesk";
  letter-spacing: -.05em;
  color: #102a50
}

.bill-tricolor {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: 390px;
  height: 60px;
  transform: rotate(-10deg);
}

.bill-tricolor i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  border-radius: 50%
}

.bill-tricolor i:nth-child(1) {
  top: 18px;
  background: linear-gradient(90deg, transparent, #ff9933 45%, transparent)
}

.bill-tricolor i:nth-child(2) {
  top: 27px;
  background: linear-gradient(90deg, transparent, #fff 45%, transparent)
}

.bill-tricolor i:nth-child(3) {
  top: 36px;
  background: linear-gradient(90deg, transparent, #138808 45%, transparent)
}

.section h2,
.section-heading h2 {
  font-size: clamp(50px, 6vw, 90px);
  color: var(--ink);
  margin: 0 0 25px
}

.section h2 span,
.section-heading h2 span {
  color: #035488
}

.bill-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 500px
}

.cost-points {
  margin-top: 45px;
  border-top: 1px solid var(--line)
}

.cost-points div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line)
}

.cost-points b {
  font: 700 11px "Space Grotesk";
  color: var(--orange)
}

.cost-points span {
  font: 700 9px "Space Grotesk";
  letter-spacing: .14em
}


.drum-scene:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(6, 26, 47, .06))
}

.drum {
  position: absolute;
  width: 150px;
  height: 190px;
  border-radius: 16px 16px 25px 25px;
  background: linear-gradient(90deg, #07518a, #148bd0 45%, #064b80);
  box-shadow: 0 25px 30px rgba(6, 26, 47, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ecf6;
  font: 800 10px "Space Grotesk";
  letter-spacing: .16em;
  z-index: 2
}

.drum:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 7px;
  background: rgba(255, 255, 255, .12)
}

.drum-1 {
  left: 10%;
  bottom: 17%
}

.drum-2 {
  left: 32%;
  bottom: 24%;
  z-index: 3
}

.drum-3 {
  left: 54%;
  bottom: 15%;
  z-index: 4
}

.drum-4 {
  left: 73%;
  bottom: 20%;
  z-index: 3
}

.dependency-stamp {
  position: absolute;
  z-index: 7;
  left: 41%;
  top: 43%;
  transform: rotate(-7deg);
  padding: 12px 22px;
  border: 3px solid var(--orange);
  color: #132c43;
  background: #fff;
  font: 900 20px "Space Grotesk";
  letter-spacing: .12em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .1)
}

/* Bill panel overrides: kept after the legacy drum styles for cascade priority. */
.bill-section h2 {
  font-size: 48px;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 12px;
  color: #0a2550
}

.bill-section h3 {
  font: 700 22px "Space Grotesk";
  letter-spacing: -.025em;
  color: #102a50;
  margin: 0 0 10px
}

.bill-section p {
  font-size: 15px;
  line-height: 1.45;
  color: #344962;
  margin: 0;
}

.bill-section .cost-points {
  margin-top: 30px;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.bill-section .cost-points div {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
  padding: 0 3px;
  border: 0;
  border-right: 1px solid rgba(9, 32, 58, .1);
  text-align: center;
}

.bill-section .cost-points div:last-child {
  border-right: 0
}

.bill-section .cost-points i {
  font: 700 30px "Space Grotesk";
  line-height: 1;
  color: #326b9d;
  font-style: normal
}

.bill-section .cost-points span {
  font: 700 13px / 1.25 "Space Grotesk";
  letter-spacing: 0;
  color: #000;
}

.bill-section .drum-scene img {
  width: 100%;
  height: 100%;
}

.bill-section .drum-scene:after {
  height: 92px
}

.bill-section .drum {
  width: 118px;
  height: 176px;
  border-radius: 14px 14px 20px 20px;
  background: linear-gradient(90deg, #06345c, #0878c4 48%, #032f59);
  box-shadow: 0 20px 20px rgba(6, 26, 47, .22);
  font-size: 9px
}

.bill-section .drum:before {
  top: 17px;
  height: 6px;
  box-shadow: 0 29px 0 rgba(255, 255, 255, .1), 0 58px 0 rgba(255, 255, 255, .1), 0 87px 0 rgba(255, 255, 255, .1)
}

.bill-section .drum-1 {
  left: 14%;
  bottom: 22%
}

.bill-section .drum-2 {
  left: 34%;
  bottom: 26%;
  z-index: 3
}

.bill-section .drum-3 {
  left: 55%;
  bottom: 20%;
  z-index: 4
}

.bill-section .drum-4 {
  left: 74%;
  bottom: 23%;
  z-index: 3
}

.bill-section .dependency-stamp {
  left: 33%;
  top: 46%;
  border-color: #173b61;
  color: #102a50;
  font-size: 21px;
  padding: 9px 15px
}

.place-section {
  background: #fff
}

.section-heading {
  text-align: center;
  max-width: 850px;
  margin: auto
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7
}

.place-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 60px 0 25px
}

.place-tab {
  background: #f3f6f4;
  border: 1px solid #dbe2df;
  color: #61717a;
  padding: 13px 15px;
  font: 700 8px "Space Grotesk";
  letter-spacing: .12em;
  cursor: pointer;
  transition: .3s
}

.place-tab.active,
.place-tab:hover {
  background: #e7f2ea;
  border-color: var(--green);
  color: var(--green)
}

.scenario-card {
  position: relative;
  min-height: 470px;
  background: #092742;
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr .85fr .35fr;
  align-items: center;
  overflow: hidden
}

.scenario-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(39, 177, 220, .2), transparent 35%)
}

.scenario-copy {
  position: relative;
  z-index: 2;
  padding: 60px
}

.scenario-copy h3 {
  font: 600 clamp(28px, 3.3vw, 52px) "Space Grotesk";
  line-height: 1.03;
  margin: 15px 0 25px
}

.scenario-copy ul {
  padding-left: 18px;
  color: #9eb5c0;
  line-height: 2;
  font-size: 12px
}

.scenario-copy .btn {
  margin-top: 15px
}

.scenario-visual {
  position: relative;
  height: 100%;
  min-height: 470px;
  display: grid;
  place-items: center
}

.scenario-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(54, 190, 231, .5);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(33, 171, 218, .15)
}

.scenario-ring:before,
.scenario-ring:after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%
}

.scenario-ring:after {
  inset: 65px;
  border-color: rgba(19, 136, 8, .25)
}

.hospital-icon {
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
  font: 300 70px "Space Grotesk";
  color: #fff
}

.scenario-label {
  position: absolute;
  bottom: 25%;
  font: 700 9px "Space Grotesk";
  letter-spacing: .15em;
  text-align: center;
  color: #86a3b2
}

.scenario-label b {
  color: #fff
}

.scenario-saving {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, .15);
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.scenario-saving small {
  font: 700 8px "Space Grotesk";
  letter-spacing: .14em;
  color: #86a0ad
}

.scenario-saving strong {
  font: 800 42px "Space Grotesk";
  color: var(--green);
  line-height: 1;
  margin: 10px 0
}

.scenario-saving span {
  font-size: 9px;
  color: #8197a4
}

.scenario-images {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.scenario-image {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.scenario-image.active {
  opacity: 1;
}

/* Chapter 02: tabbed place selector */
.place-section {
  padding: 0;
  background: linear-gradient(115deg, #fbfcfd, #edf3f6);
  border-top: 1px solid rgba(9, 32, 58, .12);
  border-bottom: 1px solid rgba(9, 32, 58, .12)
}

.place-layout {
  display: grid;
  grid-template-columns: minmax(270px, 29%) 1fr;
  min-height: 420px
}

.place-intro {
  padding: 48px 58px;
  text-align: left;
  border-right: 1px solid rgba(9, 32, 58, .1);
  align-self: stretch
}

.place-intro .eyebrow {
  font: 700 10px "Space Grotesk";
  letter-spacing: .06em;
  color: #1d75b4;
  margin-bottom: 10px
}

.place-intro h2 {
  font-size: 48px;
  line-height: 1;
  color: #0c2852;
  margin: 0 0 14px
}

.place-intro h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0c2852;
  margin: 0 0 14px;
  font-weight: 800;
}

.place-intro h2 span {
  color: #0c2852
}

.place-intro p {
  font-size: 15px;
  line-height: 1.6;
  color: #52667e;
  margin-bottom: 0;
}

.place-explore {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 24px;
  background: #07813e;
  color: #fff;
  font: 700 15px "Space Grotesk";
  letter-spacing: .02em;
  box-shadow: 0 6px 15px rgba(7, 129, 62, .22);
}

.place-content {
  padding: 20px 64px 28px;
  min-width: 0
}

.place-tabs {
  display: grid;
  grid-template-columns: repeat(10, minmax(55px, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  justify-content: normal
}

.place-tab {
  position: relative;
  padding: 56px 3px 9px;
  background: transparent;
  border: 1px solid transparent;
  color: #40557a;
  font: 900 12px / 1.45 "Space Grotesk";
  letter-spacing: 0;
  text-align: center;
}

.place-tab:before {
  content: "⌂";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  color: #31567f;
  font: 400 30px/1 Arial
}

.place-tab.active,
.place-tab:hover {
  background: rgba(255, 255, 255, .65);
  border-color: #55b97b;
  color: #16844d;
  box-shadow: 0 0 0 1px rgba(85, 185, 123, .15)
}

.place-tab.active:before,
.place-tab:hover:before {
  color: #16844d
}

.place-tab {
  padding-top: 54px
}

.place-tab:before {
  display: none
}

.place-tab svg {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 45px;
  height: 45px;
  transform: translateX(-50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.scenario-card {
  min-height: 150px;
  background: rgba(255, 255, 255, .45);
  color: #18395d;
  display: grid;
  grid-template-columns: 30% 45% 25%;
  border: 1px solid #d7e0e7;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(10, 41, 76, .04)
}

.scenario-card:before {
  display: none
}

.scenario-visual {
  grid-column: 1;
  grid-row: 1;
  min-height: 148px;
  height: 288px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(217, 232, 240, .92), rgba(246, 250, 252, .38)), repeating-linear-gradient(90deg, transparent 0 38px, rgba(63, 111, 150, .08) 39px 41px), linear-gradient(145deg, #b9d0dd, #eff6f8);
  display: grid;
  place-items: center
}

.scenario-ring {
  display: none
}

.hospital-icon {
  width: 44px;
  height: 44px;
  border-color: #7a9ab5;
  color: #477397;
  font-size: 32px;
  position: absolute
}

.scenario-label {
  display: none
}

.scenario-copy {
  grid-column: 2;
  grid-row: 1;
  padding: 18px 26px;
  background: transparent
}

.scenario-copy .eyebrow {
  font: 700 24px "Space Grotesk";
  letter-spacing: 0;
  color: #16844d;
  margin: 0 0 12px
}

.scenario-copy h3 {
  display: none
}

.scenario-copy ul {
  margin: 0;
  padding-left: 14px;
  color: #3c526d;
  line-height: 2.05;
  font-size: 15px;
  font-weight: 600
}

.scenario-copy li::marker {
  color: #f28c24
}

.scenario-copy .btn {
  display: none
}

.scenario-saving {
  grid-column: 3;
  grid-row: 1;
  height: auto;
  padding: 20px 30px;
  border-left: 1px solid #d7e0e7;
  display: block
}

.scenario-saving small {
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  color: #40557a;
}

.scenario-saving strong {
  display: block;
  margin: 10px 0 10px;
  font-size: 42px;
  color: #17375f;
}

.scenario-saving span {
  display: block;
  font: 700 13px "Space Grotesk";
  color: #274467
}

.place-demo {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #f28c24;
  color: #fff;
  font: 700 8px "Space Grotesk";
  letter-spacing: 0
}

.scenario-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  font: 400 44px/1 Arial;
  color: #486889
}

.scenario-prev {
  left: -32px
}

.scenario-next {
  right: -32px
}

.machine-section {
  position: relative;
  isolation: isolate;
  padding: 78px 0 66px;
  background:
    linear-gradient(90deg, rgba(11, 79, 139, .035) 1px, transparent 1px),
    linear-gradient(rgba(11, 79, 139, .035) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
  color: #123d6d;
  overflow: hidden
}

.machine-section::before,
.machine-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 80px;
  border-radius: 50%;
  transform: rotate(8deg);
  opacity: .85;
  pointer-events: none
}

.machine-section::before {
  top: -58px;
  left: -72px;
  border-top: 7px solid #ff9933;
  border-bottom: 7px solid #ff9933;
  box-shadow: 0 11px 0 #fff, 0 15px 0 #138808
}

.machine-logo-wrap {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.machine-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.machine-copy h2 {
  margin: 5px 0 10px;
  color: #133e70;
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: .96;
  letter-spacing: -.06em
}

.machine-section .eyebrow {
  font: 700 22px "Space Grotesk";
  letter-spacing: .2em;
  color: #1771aa;
  margin-bottom: 15px;
}

.machine-copy h2 span {
  color: #138808
}

.machine-copy>p {
  color: #42607c;
  line-height: 1.55;
  font-size: 18px;
}

.machine-copy .eyebrow {
  margin-bottom: 3px;
  color: #1771aa
}

.ingredients {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 28px
}

.ingredients div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px
}

.ingredients span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: #2586c0;
  font: 700 40px / 1 Arial;
}

.ingredients b {
  font: 700 14px "Space Grotesk";
  letter-spacing: .1em;
  color: #214a78
}

.ingredients i {
  font-style: normal;
  color: #286ca5;
  font-size: 22px
}

.formula-line {
  margin-top: 18px;
  font: 700 24px "Space Grotesk";
  letter-spacing: .05em;
  color: #214a78
}

.formula-line b {
  color: #133e70
}

.machine-stage {
  height: 435px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.machine-product {
  height: 164%;
  max-width: 58%;
  margin-left: -60%;
  object-fit: contain;
  z-index: 4;
  filter: drop-shadow(0 22px 20px rgba(9, 32, 58, .22));
}

.tech-circle {
  position: absolute;
  border: 1px solid rgba(38, 134, 192, .24);
  border-radius: 50%
}

.tc-1 {
  width: 245px;
  height: 245px;
  margin-left: -60%
}

.tc-2 {
  width: 305px;
  height: 305px;
  margin-left: -60%;
  border-color: rgba(38, 134, 192, .12)
}

.tech-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1d83bf, transparent);
  width: 48%;
  margin-left: -60%;
  z-index: 1
}

.tl-1 {
  transform: rotate(25deg)
}

.tl-2 {
  transform: rotate(-25deg)
}

.machine-callout {
  position: absolute;
  z-index: 6;
  right: 26%;
  top: 38%;
  font: 700 14px "Space Grotesk";
  letter-spacing: .12em;
  color: #071d32;
  border-top: 1px solid #4f9bc4;
  padding-top: 8px;
}

.machine-callout b {
  color: #143f70
}

.formula-count {
  position: absolute;
  right: -2%;
  top: 28%;
  z-index: 6;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px rgba(19, 136, 8, .12), 0 7px 15px rgba(19, 136, 8, .15);
  color: #fff;
}

.formula-count strong {
  font: 800 50px "Space Grotesk";
  line-height: 1;
}

.formula-count span {
  font: 700 11px "Space Grotesk";
  letter-spacing: .15em;
}

.formula-list {
  position: absolute;
  right: -50%;
  top: -7%;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 6;
  font: 700 16px "Space Grotesk";
  letter-spacing: .1em;
  color: #2e6d51;
}

.formula-list span {
  position: relative;
  color: #000;
  padding-left: 17px
}

.formula-list span::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #138808;
  font-size: 13px;
  line-height: 22px
}

.benefit-band {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 4% 45%, rgba(41, 130, 177, .3), transparent 20%),
    linear-gradient(100deg, #062644 0%, #042c51 52%, #062341 100%);
  color: #fff;
  padding: 25px 0;
  overflow: hidden
}

.band-flow {
  width: 435px;
  height: 160px;
  top: 42px;
  right: -135px;
  opacity: .95;
  transform: rotate(-13deg)
}

.band-flow span {
  left: 0;
  width: 115%;
  height: 10px;
  animation: none
}

.band-flow .flow-saffron {
  top: 67px;
  background: linear-gradient(90deg, transparent, #ff9933 24%, #ffb35b 48%, transparent 92%)
}

.band-flow .flow-white {
  top: 81px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .78) 25%, #fff 51%, transparent 93%)
}

.band-flow .flow-green {
  top: 95px;
  background: linear-gradient(90deg, transparent, #138808 24%, #54bd5d 49%, transparent 93%)
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
  z-index: 4
}

.benefit {
  min-height: 65px;
  padding: 4px 20px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important
}

.benefit:first-child {
  padding-left: 20px
}

.benefit:last-child {
  border-right: 0
}

.benefit-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115, 191, 221, .8);
  border-radius: 50%;
  color: #75c4e9;
  font: 700 34px / 1 Arial;
}

.environment-icon {
  border-color: 1px solid rgba(115, 191, 221, .8);
  color: #75c4e9
}

.benefit b {
  display: block;
  margin: 0 0 7px;
  font: 800 20px / 1.35 "Space Grotesk";
  letter-spacing: .02em;
  color: #fff;
}

.benefit span {
  display: block;
  font: 500 14px "Space Grotesk";
  line-height: 1.32;
  letter-spacing: .02em;
  color: #fff;
}

.freedom-calculator {
  position: relative;
  overflow: hidden;
  color: #123d6d;
  background: #f7fbfc
}

.calculator-top {
  position: relative;
  padding: 52px 0 30px;
  background: linear-gradient(90deg, #fff 0%, #f7fbfc 61%, #d9e9ed 100%)
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.5fr .65fr 1.45fr;
  align-items: center;
  gap: 38px
}

.calculator-costs h2,
.origin-copy-new h2 {
  margin: 8px 0 15px;
  color: #133e70;
  font: 800 clamp(26px, 2.4vw, 40px)/1 "Space Grotesk";
  letter-spacing: -.055em
}

.calculator-costs h3,
.why-g6 h3 {
  margin: 0 0 15px;
  font: 700 18px "Space Grotesk";
  color: #416797
}

.cost-table {
  border: 1px solid #dce5e8;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, .7)
}

.cost-row {
  display: grid;
  grid-template-columns: .85fr 1.08fr 1.08fr;
  min-height: 53px;
  border-top: 1px solid #dce5e8;
  align-items: center;
}

.cost-row:first-child {
  border-top: 0
}

.cost-row>* {
  padding: 12px 15px;
  border-left: 1px solid #dce5e8;
  font: 900 16px / 1.1 "Space Grotesk";
  color: #213e61;
}

.cost-row>*:first-child {
  border-left: 0
}

.cost-head>* {
  font-size: 16px;
  color: #1b405f;
}

.cost-head em {
  font-style: normal;
  color: #229257
}

.cost-row strong {
  font-size: 16px;
}

.savings-tile {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border: 1px solid #f0dcc8;
  border-radius: 18px;
  background: #fffbf5;
  box-shadow: 0 4px 18px rgb(224 125 48 / 72%)
}

.savings-tile span {
  font: 800 20px / 1.3 "Space Grotesk";
  color: #e07d30;
}

.savings-tile strong {
  margin-top: 14px;
  font: 800 clamp(42px, 4.2vw, 65px)/.9 "Space Grotesk";
  letter-spacing: -.07em;
  color: #158740
}

.why-g6 {
  padding: 6px 0 6px 31px;
  border-left: 3px solid #2e638e
}

.why-g6 h3 {
  color: #183b66;
  font-size: 20px
}

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

.why-g6 li {
  margin: 13px 0;
  font: 600 18px "Space Grotesk";
  color: #38536f
}

.why-g6 li::before {
  content: "•";
  color: #178b49;
  padding-right: 14px;
  font-size: 20px;
  vertical-align: -2px
}

.calculator-origin {
  position: relative;
  min-height: 330px;
  padding: 30px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fdff, #ddecf3);
  background-image: url(../images/industry_back.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.calculator-origin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff96;
  z-index: 0;
}


.origin-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.3fr;
  align-items: end;
  min-height: 300px
}

.origin-copy-new {
  align-self: start;
  padding-top: 5px
}

.origin-copy-new h2 {
  font-size: clamp(26px, 2.5vw, 28px)
}

.origin-copy-new p {
  margin: 0;
  color: #3c5874;
  font-size: 15px;
  line-height: 1.5
}

.origin-flags {
  display: flex;
  gap: 34px;
  margin-top: 14px
}

.origin-flags span {
  display: grid;
  gap: 5px;
  color: #df3f32;
  font: 800 34px/1 Arial
}

.origin-flags span:nth-child(2) {
  font-size: 28px
}

.origin-flags small {
  color: #34516e;
  font: 700 12px/1.3 "Space Grotesk"
}

.claude-placeholder-wrap {
  position: relative;
  justify-self: center;
  align-self: end;
  width: 310px
}

.claude-placeholder {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  object-position: bottom
}

.claude-nameplate {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 50%;
  width: 220px;
  padding: 11px;
  transform: translateX(-50%);
  border-radius: 12px;
  text-align: center;
  background: #0a3259;
  color: #fff
}

.claude-nameplate b {
  display: block;
  font: 800 20px "Space Grotesk"
}

.claude-nameplate span {
  font-size: 16px;
  line-height: 1.25;
  color: #cad9e5
}

.origin-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 42px;
  align-self: center;
  padding: 25px 0 0 55px
}

.origin-proof div {
  display: flex;
  align-items: center;
  gap: 12px
}

.origin-proof i {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 2px solid #7396b9;
  border-radius: 50%;
  color: #345f8a;
  font-style: normal;
  font-size: 20px
}

.origin-proof span {
  font: 800 16px/1.35 "Space Grotesk";
  color: #3b5875
}

.economics {
  background: #f5f7f5
}

.economics-table {
  margin-top: 45px;
  border-top: 1px solid var(--line)
}

.economics-table>div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  font-size: 11px
}

.economics-table .table-head {
  font: 700 8px "Space Grotesk";
  letter-spacing: .13em;
  color: #66777e
}

.economics-table strong {
  color: var(--green)
}

.disclaimer {
  display: block;
  margin-top: 12px;
  color: #87969b;
  font-size: 9px
}

.saving-card {
  position: relative;
  min-height: 330px;
  background: #fff;
  border: 1px solid #e1e7e3;
  padding: 50px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(9, 32, 58, .06)
}

.saving-card span {
  font: 700 9px "Space Grotesk";
  letter-spacing: .15em;
  color: #6a7c83
}

.saving-card strong {
  display: block;
  font: 800 clamp(65px, 8vw, 110px) "Space Grotesk";
  letter-spacing: -.08em;
  color: var(--green);
  line-height: .9;
  margin: 20px 0
}

.saving-card small {
  color: #74848a;
  font-size: 10px
}

.saving-wave {
  position: absolute;
  left: -20%;
  bottom: -30%;
  width: 150%;
  height: 50%;
  border: 2px solid rgba(19, 136, 8, .15);
  border-radius: 50%
}

.origin-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #eaf2f0, #dfe9e6);
  overflow: hidden
}

.mountain-art {
  height: 420px;
  position: relative;
  overflow: hidden
}

.mountain {
  position: absolute;
  bottom: -10%;
  width: 70%;
  height: 80%;
  background: #b6c9c9;
  clip-path: polygon(50% 0, 100% 100%, 0 100%)
}

.m1 {
  left: 0
}

.m2 {
  left: 28%;
  height: 100%;
  background: #91aaa9
}

.m3 {
  left: 56%;
  height: 70%;
  background: #c9d5d3
}

.origin-badge {
  position: absolute;
  left: 20%;
  bottom: 15%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 15px 40px rgba(9, 32, 58, .1);
  display: grid;
  place-items: center;
  text-align: center;
  font: 700 12px "Space Grotesk";
  letter-spacing: .1em;
  color: #0a3150
}

.origin-badge b {
  color: #0b8c43
}

.origin-copy h2 {
  font-size: clamp(50px, 6vw, 88px)
}

.origin-copy h2 span {
  color: #6e8792
}

.origin-copy>p {
  color: #62757d;
  line-height: 1.8;
  max-width: 520px
}

.origin-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  border-top: 1px solid rgba(9, 32, 58, .13)
}

.origin-points span {
  padding: 15px 0;
  border-bottom: 1px solid rgba(9, 32, 58, .13);
  font: 700 9px "Space Grotesk";
  letter-spacing: .12em
}

.decision-section {
  background: #fff
}

.decision-section .container {
  padding-right: 0 !important;
  margin-right: 0 !important;
  margin-left: 7.2%;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 90px;
  position: relative
}

.decision-grid:before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  height: 1px;
  background: #c5cdce
}

.decision-step {
  position: relative;
  padding-top: 65px
}

.decision-step:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--navy);
  border-radius: 50%;
  z-index: 2
}

.decision-step b {
  font: 800 10px "Space Grotesk";
  color: var(--orange)
}

.decision-step h3 {
  font: 700 18px "Space Grotesk";
  margin-top: 14px
}

.decision-step p {
  font-size: 12px;
  line-height: 1.7;
  color: #6b7b81
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: #082b49;
  color: #fff;
  padding: 140px 0
}

.cta-water {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(43, 186, 230, .25), transparent 30%)
}

.cta-flow {
  right: -10%;
  top: 38%;
  opacity: .65;
  transform: rotate(3deg)
}

.cta-section h2 {
  font-size: clamp(58px, 7vw, 105px)
}

.cta-section p {
  font: 600 clamp(24px, 3vw, 43px) "Space Grotesk";
  margin: 28px 0 0
}

.cta-section p strong {
  color: var(--orange)
}

.cta-section small {
  color: #8da5b3;
  font-size: 10px;
  letter-spacing: .12em
}

.demo-form {
  background: rgba(3, 18, 32, .45);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  backdrop-filter: blur(12px)
}

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

.field label {
  font: 700 8px "Space Grotesk";
  letter-spacing: .15em;
  color: #8da8b5
}

.field input,
.field select {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 11px 0;
  outline: none;
  font-size: 12px
}

.field select option {
  color: #061a2f
}

.full {
  grid-column: 1/-1
}

.whatsapp {
  color: #8fe2a7;
  font: 700 9px "Space Grotesk";
  letter-spacing: .14em
}

.form-message {
  font-size: 11px;
  color: #4dd58a;
  margin: 0
}

.faq-section {
  background: #f5f7f5
}

.faq-list {
  margin-top: 70px;
  border-top: 1px solid var(--line)
}

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

summary {
  cursor: pointer;
  list-style: none;
  padding: 25px 0;
  font: 600 19px "Space Grotesk";
  display: flex;
  justify-content: space-between
}

summary::-webkit-details-marker {
  display: none
}

summary:after {
  content: "+";
  color: var(--orange)
}

details[open] summary:after {
  content: "−"
}

details p {
  color: #66777e;
  line-height: 1.8;
  max-width: 800px;
  padding-bottom: 25px;
  margin: 0
}

.footer {
  background: #061a2f;
  color: #fff;
  padding: 75px 0 30px
}

.footer-brand {
  margin-bottom: 20px
}

.footer p {
  font: 700 16px "Space Grotesk";
  line-height: 1.9;
  color: #819aa8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  margin-top: 10px;
  padding-top: 15px;
  font: 700 16px "Space Grotesk";
  letter-spacing: .12em;
  color: #79919e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  float: right;
  color: #607a89
}

/* Decision and client band, placed directly before the footer */
.decision-section {
  background: #f7f8f5;
  border-top: 1px solid #dbe2df;
  overflow: hidden;
  padding: 30px 0 !important;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(305px, 1.15fr);
  min-height: 330px;
  min-width: 107%;
}

.decision-steps {
  padding: 42px 34px 35px 0
}

.decision-kicker {
  margin: 0 0 8px;
  color: #4386ae;
  font: 800 11px "Space Grotesk";
  letter-spacing: .1em
}

.decision-steps h2 {
  margin: 0;
  font: 800 50px "Space Grotesk";
  letter-spacing: -.045em;
  color: var(--ink)
}

.decision-steps h3 {
  margin: 4px 0 32px;
  font: 700 20px "Space Grotesk";
  color: #263e59
}

.decision-grid-new {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  gap: 15px;
  align-items: start;
  text-align: center
}

.decision-grid-new>div {
  display: grid;
  justify-items: center;
  gap: 15px;
  font: 800 18px "Space Grotesk";
  color: var(--ink);
}

.decision-grid-new i {
  color: #6aa6ca;
  font-size: 28px;
  font-style: normal;
  padding-top: 29px
}

.decision-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid #88a3bd;
  border-radius: 50%;
  color: #286b97;
  font: 700 16px "Space Grotesk"
}

.decision-grid-new small {
  display: block;
  min-height: 25px;
  color: #657787;
  font: 500 14px/1.35 Inter, sans-serif
}

.decision-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 43px;
  color: #fff;
  border-radius: 22px 0 0 22px;
  background: radial-gradient(circle at 92% 85%, rgba(43, 125, 177, .2), transparent 32%), linear-gradient(135deg, #082d52, #031629)
}

.decision-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: radial-gradient(circle, #d99539 1px, transparent 1.7px);
  background-size: 17px 17px;
  background-position: right -5px bottom 34px;
  mask-image: linear-gradient(105deg, transparent 49%, #000 82%);
  pointer-events: none
}

.decision-cta-content {
  position: relative;
  z-index: 2;
  width: min(100%, 350px)
}

.decision-cta p {
  margin: 0 0 12px;
  font: 800 29px/1.08 "Space Grotesk";
  letter-spacing: -.035em
}

.decision-cta em,
.demo-modal h2 em {
  color: var(--orange);
  font-style: normal
}

.decision-cta>span {
  margin-bottom: 22px;
  color: #ccd8e1;
  font-size: 14px
}

.decision-cta .btn {
  width: 100%;
  text-align: center;
  padding: 16px 10px;
  margin-top: 20px;
}

.decision-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 12px;
  padding: 13px 10px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  color: #fff;
  font: 800 14px "Space Grotesk";
  letter-spacing: .04em;
  transition: .2s ease
}

.decision-whatsapp:hover {
  border-color: #65d67b;
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.decision-whatsapp b {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #20b65a;
  color: #fff;
  font: 900 26px/1 Arial;
}

.decision-flow {
  position: absolute;
  right: -42px;
  bottom: -38px;
  z-index: 1;
  width: 270px;
  height: 190px;
  transform: rotate(-12deg);
  opacity: .95
}

.decision-flow i {
  position: absolute;
  right: -25px;
  bottom: 0;
  display: block;
  width: 300px;
  height: 47px;
  border-radius: 50% 0 0 50%;
  transform: rotate(-20deg) skewX(-25deg);
  box-shadow: 0 0 18px rgba(255, 255, 255, .42)
}

.decision-flow i:nth-child(1) {
  bottom: 76px;
  background: linear-gradient(90deg, transparent 0 11%, #ff8d20 41%, #f4bd52 68%, transparent 96%)
}

.decision-flow i:nth-child(2) {
  bottom: 39px;
  background: linear-gradient(90deg, transparent 0 9%, #fff 39%, #d8e4e4 67%, transparent 96%)
}

.decision-flow i:nth-child(3) {
  bottom: 2px;
  background: linear-gradient(90deg, transparent 0 7%, #129744 38%, #78be75 67%, transparent 96%)
}

.client-marquee {
  display: flex;
  align-items: center;
  min-height: 94px;
  border-top: 1px solid #dbe2df;
  background: #fff
}

.client-marquee-label {
  flex: 0 0 auto;
  width: max(190px, calc((100vw - 1120px) / 2 + 205px));
  padding-left: max(15px, calc((100vw - 1140px) / 2));
  color: #061a2f;
  font: 900 24px "Space Grotesk";
  letter-spacing: .05em;
}

.client-marquee-window {
  flex: 1;
  overflow: hidden
}

.client-marquee-track {
  display: flex;
  animation: client-scroll 10s linear infinite
}

.client-logo-set {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
  white-space: nowrap;
}

.client-logo-set img {
  width: 20%;
}

.client-logo {
  color: #20426b;
  font: 700 21px "Space Grotesk";
  letter-spacing: -.06em
}

.ecolab {
  color: #1670b8;
  font-weight: 900
}

.johnson {
  font-size: 15px;
  color: #3662a0
}

.nilfisk {
  font-size: 24px
}

.karcher {
  font-weight: 900
}

.three-m {
  color: #d4212d;
  font-size: 30px;
  font-weight: 900
}

.hygiene {
  color: #477aaf;
  font-weight: 500
}

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

.demo-modal .modal-content {
  border: 0;
  border-radius: 0;
  background: #f7f8f5;
  box-shadow: 0 20px 65px rgba(1, 15, 30, .36)
}

.demo-modal .modal-body {
  padding: 44px 48px 40px
}

.demo-modal-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 17px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 31px;
  line-height: 1
}

.demo-modal h2 {
  margin: 0 0 11px;
  color: var(--ink);
  font: 800 34px/1 "Space Grotesk";
  letter-spacing: -.05em
}

.demo-modal-copy {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55
}

.demo-modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.demo-modal-form label {
  gap: 7px;
  color: #37516a;
  font: 900 13px "Space Grotesk";
  letter-spacing: 0;
  display: flex;
  margin-bottom: 4px;
}

.demo-modal-form input,
.form-control {
  width: 100%;
  border: 0;
  border: 1px solid #a8b8c2;
  outline: none;
  padding: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  border-radius: 0;
}

.demo-modal-form input:focus {
  border-color: var(--orange)
}

.demo-modal-form button,
.form-message {
  grid-column: 1 / -1
}

.demo-modal-form button {
  margin-top: 8px;
  padding: 15px
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: #15753a;
  font-size: 12px;
  line-height: 1.45
}

.reveal {
  opacity: 0;
  transform: translateY(30px)
}

@media(max-width:991px) {
  .bill-layout {
    grid-template-columns: 1fr 1fr
  }

  .bill-intro {
    padding: 45px
  }

  .bill-section .drum-scene img {
    object-fit: contain;
  }

  .drum-scene {
    min-height: 360px
  }

  .bill-cta {
    grid-column: 1/-1;
    min-height: 230px;
    padding: 45px
  }

  .bill-cta .bill-question,
  .bill-cta .bill-answer {
    max-width: none
  }

  .bill-cta .bill-answer strong br {
    display: none;
    position: relative;
    z-index: 99;

  }

  .campaign-title {
    display: none
  }

  .hero {
    min-height: 760px
  }

  .hero-copy {
    padding-top: 40px;
    max-width: 52rem
  }

  .hero-product-wrap {
    height: 600px;
    min-height: 0;
    margin-top: -50px
  }

  .hero-product {
    height: 90%;
    max-width: 85%
  }

  .floating-spec {
    display: none
  }

  .place-layout {
    grid-template-columns: 1fr
  }

  .place-intro {
    padding: 34px 22px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(9, 32, 58, .1)
  }

  .place-content {
    padding: 16px 18px 20px
  }

  .place-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .place-tab {
    padding: 10px 8px;
    font-size: 12px;
  }

  .place-tab svg {
    width: 73px;
    height: 40px;
    top: inherit;
    position: inherit;
    margin-bottom: 5px;
  }

  .scenario-card {
    grid-template-columns: 29% 45% 25%;
    min-height: 0
  }

  .machine-product {
    height: 60%;
    max-width: 50%;
    margin: 0 auto;
  }

  .band-flow {
    top: 200px;
  }

  .machine-callout {
    top: inherit !important;
    right: inherit !important;
    position: inherit;
    font: 900 30px "Space Grotesk";
    margin-bottom: 15px;
  }

  .formula-count {
    position: inherit;
    right: inherit;
    top: inherit;
  }

  .formula-list {
    font-size: 16px;
    margin-top: 30px;
    top: inherit;
    bottom: auto;
    position: inherit;
    right: inherit;
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: inherit;
  }

  .formula-list span {
    position: relative;
    color: #000;
    padding-left: 12px;
    margin: 10px 0px;
  }

  .scenario-visual {
    min-height: 350px;
    height: 350px
  }

  .scenario-saving {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    height: auto
  }

  .machine-stage {
    height: inherit;
    display: inline-block;
    margin-top: 15px
  }
  

  .formula-list {
    right: 2%;
    top: 18%
  }

  .machine-callout {
    right: 42%;
    top: 25%
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px
  }

  .benefit {
    padding: 4px 18px
  }

  .benefit:nth-child(3) {
    border-right: 0
  }

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

  .why-g6 {
    grid-column: 1 / -1
  }

  .origin-grid {
    grid-template-columns: 1fr
  }

  .origin-copy-new p br {
    display: none;
  }

  .origin-proof {
    padding-left: 25px;
    margin-bottom: 30px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .bg_video video {
    object-fit: contain !important;
    width: 100%;
  }

  section.bg_video {
    height: 46vh;
  }
}

@media(max-width:767px) {
  .hero {
    min-height: 640px
  }

  .hero-row {
    padding-top: 20px
  }

  .hero-copy {
    padding-top: 40px;
    max-width: 100%
  }

  .hero h1 {
    font-size: clamp(38px, 9vw, 42px);
    line-height: 1.08
  }

  .rotating-text {
    transform: translateY(-37px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 90%
  }


  .hero-video-overlay {
    background: linear-gradient(90deg, rgba(4, 14, 28, .88) 0%, rgba(4, 14, 28, .66) 38%, rgba(4, 14, 28, .18) 100%)
  }
}

@media(max-width:575px) {
  .bill-layout {
    grid-template-columns: 1fr
  }

  .bill-intro {
    padding: 0px 28px
  }

  .drum-scene {
    min-height: 330px;
    grid-row: 2;
    border-top: 1px solid rgba(9, 32, 58, .1)
  }

  .bill-cta {
    grid-column: auto;
    min-height: 210px;
    padding: 36px 28px
  }

  .bill-cta .bill-question {
    font-size: 20px;
    margin-bottom: 15px
  }

  .bill-answer strong {
    font-size: 30px
  }

  .cost-points {
    margin-top: 25px
  }

  .campaign-nav {
    height: inherit
  }

  .brand {
    width: 170px
  }

  .brand img {
    width: 140px;
    height: 61px
  }

  .nav-demo {
    padding: 11px 12px;
    font-size: 8px
  }

  .place-layout {
    grid-template-columns: 1fr
  }

  .place-intro {
    padding: 24px 18px 16px
  }

  .place-intro h2 {
    font-size: 38px
  }

  .place-intro h3 {
    font-size: 16px
  }

  .place-intro p {
    font-size: 13px
  }

  .place-content {
    padding: 12px 14px 18px
  }

  .place-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .place-tab {
    min-width: 96px;
    min-height: 68px;
    font-size: 7px;
    padding: 36px 6px 8px;
    scroll-snap-align: start
  }

  .place-tab svg {
    width: 73px;
    height: 40px;
    top: inherit;
    position: inherit;
    margin-bottom: 5px;
  }

  .scenario-card {
    display: block;
    border-radius: 12px
  }

  .scenario-saving small {
    font-size: 18px;
  }

  .scenario-copy {
    padding: 24px 18px
  }

  .scenario-copy .eyebrow {
    font-size: 24px
  }

  .scenario-copy ul {
    font-size: 14px;
    line-height: 1.7
  }

  .scenario-saving {
    border-left: none;
    border-top: 1px solid #d7e0e7;
    padding: 18px
  }

  .scenario-saving strong {
    font-size: 44px
  }

  .scenario-saving span {
    font: 700 16px "Space Grotesk";
  }

  .hero {
    min-height: 560px;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 70px;
  }

  .hero-description {
    font-size: 16px
  }

  .hero-video {
    object-position: inherit;
  }

  .hero-badges {
    display: none
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-product-wrap {
    height: 520px
  }

  .hero-product {
    height: 88%;
    max-width: 92%
  }

  .product-tag {
    right: 2%;
    bottom: 6%;
    font-size: 8px
  }

  .flow-main {
    bottom: 3%
  }

  .section {
    padding: 30px 0
  }

  .benefit-band {
    padding: 30px 0
  }

  .bg_video video {
    object-fit: contain !important;
    width: 100%;
  }

  section.bg_video {
    height: 26vh;
  }

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

  .benefit,
  .benefit:first-child {
    padding: 14px 0;
    border-right: 0;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
  }

  .calculator-costs h3,
  .why-g6 h3 {
    font: 700 22px "Space Grotesk";
  }

  .benefit:last-child {
    border-bottom: 0
  }

  .calculator-top {
    padding: 55px 0 36px
  }

  .calculator-grid,
  .origin-grid {
    grid-template-columns: 1fr
  }

  .cost-row>* {
    padding: 10px 7px;
    font-size: 13px
  }

  .cost-head>* {
    font-size: 14px;
  }

  .cost-row strong {
    font-size: 13px;
  }

  .savings-tile {
    min-height: 155px
  }

  .why-g6 {
    grid-column: auto;
    padding-left: 20px
  }

  .calculator-origin {
    padding-top: 40px
  }

  .origin-copy-new {
    text-align: center
  }

  .origin-flags {
    justify-content: center
  }

  .claude-placeholder-wrap {
    margin-top: 15px
  }

  .origin-proof {
    padding: 35px 0;
    gap: 20px;
    justify-self: center
  }

  .section h2,
  .section-heading h2 {
    font-size: 47px
  }

  .machine-copy h2 {
    margin: 30px 0 10px;
    font-size: 45px;
  }

  .machine-section .eyebrow {
    font: 700 16px "Space Grotesk";

  }

  .machine-copy>p {
    font-size: 16px;
  }

  .drum-scene {
    height: inherit;
  }

  .drum {
    width: 95px;
    height: 130px;
    font-size: 7px
  }

  .dependency-stamp {
    left: 29%;
    top: 45%;
    font-size: 14px;
    padding: 8px 12px
  }

  .place-tabs {
    gap: 5px
  }

  .place-tab {
    padding: 10px 8px;
    font-size: 12px;
  }

  .scenario-copy {
    padding: 20px
  }

  .scenario-copy h3 {
    font-size: 29px
  }

  .machine-product {
    height: 100%;
    max-width: 100%;
    margin-left: inherit
  }


  .machine-callout {
    top: inherit;
    right: inherit;
    position: inherit;
    font: 900 30px "Space Grotesk";
    margin-bottom: 15px;
  }

  .machine-callout br {
    display: none;
  }

  .formula-count {
    position: inherit;
    right: inherit;
    top: inherit;
  }

  .formula-count strong {
    font-size: 36px
  }

  .formula-count span {
    font: 700 14px "Space Grotesk";
  }

  .band-flow {
    top: -58px;
    right: -245px;
  }

  .formula-list {
    font-size: 16px;
    margin-top: 30px;
    top: inherit;
    bottom: auto;
    position: inherit;
    right: inherit;
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: inherit;
  }

  .formula-list span {
    position: relative;
    color: #000;
    padding-left: 12px;
    margin: 10px 0px;
  }

  .origin-copy-new h2 {
    font-size: clamp(30px, 2.5vw, 28px);
    line-height: 36px;
  }

  .origin-copy-new p {
    font-size: 20px;
  }

  .origin-flags small {
    font: 700 16px / 1.3 "Space Grotesk";
  }

  .claude-nameplate {
    width: 300px;
  }

  .claude-nameplate b {
    font: 800 24px "Space Grotesk";
    margin-bottom: 10px;
  }

  .claude-nameplate span {
    font-size: 18px;
  }

  .origin-proof span {
    font: 800 22px / 1.35 "Space Grotesk";
  }

  .origin-proof i {
    font-size: 24px;
  }

  .origin-proof span br {
    display: none;
  }

  .origin-proof {
    grid-template-columns: repeat(1, 1fr);
  }

  .formula-list span::before {
    font-size: 15px;
    line-height: 14px;
  }

  .ingredients {
    gap: 8px
  }

  .ingredients span {
    font-size: 22px
  }

  .ingredients b {
    font-size: 12px
  }

  .formula-line {
    font-size: 22px
  }

  .economics-table>div {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    font-size: 9px
  }

  .saving-card {
    margin-top: 20px;
    padding: 35px;
    min-height: 260px
  }

  .origin-points {
    grid-template-columns: 1fr
  }

  .mountain-art {
    height: 300px
  }

  .decision-grid {
    grid-template-columns: 1fr
  }

  .decision-grid:before {
    display: none
  }

  .decision-step {
    padding-top: 45px
  }

  .decision-step:before {
    top: 5px
  }

  .demo-form {
    grid-template-columns: 1fr;
    padding: 25px
  }

  .full {
    grid-column: 1
  }

  .cta-section {
    padding: 100px 0
  }

  .cta-section h2 {
    font-size: 55px
  }

  .footer-bottom span {
    float: none;
    display: block;
    margin-top: 10px
  }

  .bill-section .cost-points i {
    font: 700 50px "Space Grotesk";
  }

  .bill-section .cost-points span {
    font: 700 12px / 1.25 "Space Grotesk";
  }
}

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

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

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

.calculator-costs .eyebrow {
  font: 700 16px "Space Grotesk";
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .decision-panel {
    grid-template-columns: 1fr
  }

  .decision-steps {
    padding: 42px 0 34px
  }

  .decision-cta {
    padding: 38px;
    text-align: center;
    align-items: center;
    border-radius: 22px !important;
  }

  .decision-cta .btn {
    max-width: 390px
  }

  .client-marquee-label {
    width: 165px
  }
}

@media (max-width: 640px) {
  .decision-steps h2 {
    font-size: 30px
  }

  .decision-steps h3 {
    font-size: 12px;
    margin-bottom: 24px
  }

  .decision-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px
  }

  .decision-section .container {
    margin-left: inherit;
    padding: 10px !important;
  }

  .decision-grid-new br {
    display: none;
  }

  .decision-grid-new>div {
    gap: 8px;
  }

  .decision-panel {
    display: grid;
    grid-template-columns: inherit;
    min-height: inherit;
    min-width: 100%;
  }

  .decision-grid-new i {
    display: none
  }

  .decision-grid-new small {
    font-size: 12px;
  }

  .decision-cta p {
    font-size: 26px
  }

  .client-marquee {
    display: block;
    padding: 16px 0
  }

  .client-marquee-label {
    width: auto;
    padding: 0 15px 13px
  }

  .client-logo-set {
    gap: 35px;
    padding-right: 35px
  }

  .client-logo-set img {
    width: 40%;
  }

  .demo-modal .modal-body {
    padding: 38px 26px 30px
  }

  .demo-modal-form {
    grid-template-columns: 1fr
  }

  .modal.show .modal-dialog {
    transform: none;
    width: 100% !important;
    min-width: 100% !important;
  }

  .footer-bottom {

    display: inline-block;
  }
}

.brand.footer-brand img {
  width: 130px;
}

.social_media ul li {
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  margin: 10px 0;
}

.social_media ul li a {
  color: #fff;
}

.social_media ul li a i {
  color: #fff;
  margin-right: 15px;
}

.social_media ul.social-icons {
  display: flex;
}

.social_media ul.social-icons i {
  font-size: 20px;
}

.modal.show .modal-dialog {
  transform: none;
  width: 80%;
  min-width: 80%;
}

section.bg_video {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
@media(min-width:767.98px) and (max-width:991px){
    .machine-product {
        height: 100%;
        max-width: 100%;
        margin-left: inherit;
    }
        .machine-stage {
        justify-content: flex-start;
    }
        .machine-callout {
        right: 59%;
    }
        .formula-list {
        right: 10%;
    }
    .calculator-grid {
    display: grid;
    grid-template-columns: 1.5fr .65fr;
    }
    .origin-copy-new h2 {
    font-size: clamp(40px, 2.5vw, 28px);
    line-height: 36px;  
}
}

@media(min-width:992px) and (max-width:1199px) {
  .bill-section .drum-scene img {
    object-fit: contain;
  }

  .place-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .place-tab svg {
    width: 73px;
    height: 40px;
    top: inherit;
    position: inherit;
    margin-bottom: 5px;
  }

  .place-tab {
    padding-top: 10px;
  }

  .place-intro h2 {
    font-size: 30px;
  }

  .scenario-card {
    display: block;
    border-radius: 12px;
  }

  .machine-product {
    height: 100%;
    max-width: 100%;
    margin-left: inherit;
  }

  .machine-stage {
    justify-content: flex-start;
  }

  .machine-callout {
    right: 59%;
  }

  .formula-count {
    right: 42%;
  }

  .formula-list {
    right: 10%;
  }

  .bg_video video {
    object-fit: contain !important;
    width: 100%;
  }

  .origin-proof span br {
    display: none;
  }

  .decision-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.15fr);
    min-width: 100%;
  }

  .client-logo-set img {
    width: 30%;
  }

  .origin-flags small br {
    display: none;
  }

  .decision-panel {
    display: grid;
    grid-template-columns: inherit;
    min-height: inherit;
    min-width: 100%;
  }

  .decision-section .container {
    margin-left: inherit;
    padding: 10px !important;
  }

  .decision-cta {
    border-radius: 22px !important;
  }

  .social_media ul li {
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    margin: 10px 0;
  }
  .bill-answer strong {
    font: 700 30px / 1.2 "Space Grotesk";
  }
  
}
