@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&display=swap");
:root {
  --ink: #223739;
  --muted: #697572;
  --blue: #416b80;
  --paper: #fffefa;
  --stone: #f2f1eb;
  --line: #dedfd8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #7aa1b7;
  outline-offset: 5px;
}
header {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  gap: 30px;
}
.logo {
  font-size: 44px;
  letter-spacing: -3px;
  line-height: 0.9;
  font-weight: 500;
  display: inline-flex;
  flex-direction: column;
  gap: 13px;
}
.logo span {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 600;
}
nav {
  display: flex;
  gap: 31px;
  font-size: 14px;
}
nav a:hover,
.text-link:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  background: var(--blue);
  color: white;
  padding: 17px 23px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #2d5366;
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
}
.button.small {
  padding: 12px 18px;
  font-size: 13px;
}
.hero {
  position: relative;
  min-height: 660px;
  height: calc(100svh - 140px);
  max-height: 850px;
  margin: 0 22px;
  border-radius: 9px;
  overflow: hidden;
  background: #deddd2;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(242, 241, 229, 0.93),
    rgba(239, 239, 227, 0.65) 38%,
    transparent 65%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 5.4%;
  max-width: 830px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 24px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(58px, 5.9vw, 89px);
  font-weight: 450;
  line-height: 1.02;
  letter-spacing: -4px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(40px, 4.05vw, 60px);
  font-weight: 450;
  line-height: 1.09;
  letter-spacing: -2.5px;
  margin-bottom: 25px;
}
h3 {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.hero-content > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.6;
}
.actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 550;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
.hero-caption {
  position: absolute;
  bottom: 25px;
  right: 30px;
  font-size: 12px;
  color: white;
  text-shadow: 0 1px 8px #000;
  z-index: 1;
}
.intro-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 26px 5%;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.intro-strip span {
  padding: 0 55px;
  border-right: 1px solid var(--line);
}
.intro-strip span:last-child {
  border: 0;
}
.section {
  padding: 110px 7.5%;
  scroll-margin-top: 20px;
}
.section-intro {
  max-width: 670px;
  margin: auto;
  text-align: center;
}
.section-intro > p:last-child {
  max-width: 530px;
  margin: 0 auto;
  color: var(--muted);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 62px;
}
.benefits article {
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
}
.line-icon {
  display: block;
  font-size: 34px;
  color: var(--blue);
  height: 62px;
}
.benefits p {
  font-size: 15px;
  color: var(--muted);
  max-width: 235px;
  margin-bottom: 0;
}
.filtration {
  background: var(--stone);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 8%;
  align-items: center;
}
.filter-image > img {
  width: 100%;
  mix-blend-mode: multiply;
  aspect-ratio: 1.1;
  object-fit: contain;
}
.filter-image > .eyebrow {
  font-size: 10px;
  text-align: center;
}
.water-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
}
.water-flow i {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, #a39883, #628fa2);
  position: relative;
}
.water-flow i:after {
  content: "›";
  position: absolute;
  right: -2px;
  top: -11px;
  color: var(--blue);
}
.image-note {
  font-size: 11px;
  text-align: center;
  color: var(--muted);
  margin: 19px 0 0;
}
.muted {
  color: var(--muted);
}
.filter-copy article {
  display: flex;
  gap: 23px;
  padding: 23px 0;
  border-bottom: 1px solid #d8dad3;
}
.filter-copy article > span {
  font-size: 13px;
  color: var(--blue);
  padding-top: 3px;
}
.filter-copy article p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.filter-copy article h3 {
  margin-bottom: 6px;
}
.fineprint {
  font-size: 12px;
  color: var(--muted);
  margin: 23px 0 0;
}
.every-tap {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 10%;
  align-items: center;
}
.every-tap > div > p:not(.eyebrow) {
  max-width: 350px;
  color: var(--muted);
  margin-bottom: 28px;
}
.home-map {
  position: relative;
}
.home-map img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 7px;
}
.tap-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -78px 16px 30px;
  position: relative;
}
.tap-labels span {
  background: rgba(255, 254, 250, 0.95);
  padding: 7px 13px;
  font-size: 12px;
  border-radius: 30px;
}
.home-map > p {
  font-size: 12px;
  text-align: center;
  margin: 0;
  color: var(--muted);
}
.family {
  height: 620px;
  position: relative;
  overflow: hidden;
  color: white;
  background: #3e4a3a;
}
.family > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 37, 31, 0.75),
    rgba(22, 37, 31, 0.35) 45%,
    transparent
  );
}
.family > div {
  position: absolute;
  z-index: 1;
  left: 7.5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 560px;
}
.family h2 {
  font-size: 62px;
}
.family p:not(.eyebrow) {
  max-width: 410px;
  color: #e4e7df;
}
.button.light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  margin-top: 12px;
}
.button.light:hover {
  background: #e4e7df;
}
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-title > p {
  color: var(--muted);
  padding-bottom: 8px;
}
.range-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 680px;
  margin: 10px 0 34px;
}
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.products article {
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.products article.featured {
  border-color: var(--blue);
}
.product-photo {
  background: #f1f1eb;
  position: relative;
  padding: 15px;
  height: 250px;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-tag {
  position: absolute;
  top: 15px;
  left: 18px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  border-radius: 20px;
  padding: 5px 12px;
  z-index: 1;
}
.product-info {
  padding: 28px;
}
.product-info .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
}
.product-info h3 {
  font-size: 31px;
  margin: 9px 0 13px;
}
.product-info p {
  font-size: 14px;
  color: var(--muted);
  min-height: 45px;
}
.product-info ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  font-size: 13px;
  line-height: 2.25;
}
.product-info li:before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px;
}
.product-info .button {
  width: 100%;
  padding: 13px 10px;
  font-size: 12px;
  gap: 10px;
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: #b9c4c4;
}
.button.outline:hover {
  background: var(--stone);
}
.installation {
  background: #f2f3ef;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  margin: 62px 0 65px;
}
.steps article > span {
  font-size: 14px;
  border: 1px solid #bac6c3;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
}
.steps p {
  font-size: 15px;
  max-width: 280px;
  margin: auto;
  color: var(--muted);
}
.trust {
  padding-top: 30px;
  border-top: 1px solid #d9dcd5;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
}
.trust span:before {
  content: "✓";
  margin-right: 9px;
  color: var(--blue);
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10%;
}
.faq > div > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 6px;
}
.faq .eyebrow {
  font-size: 10px;
}
.questions details {
  border-bottom: 1px solid var(--line);
}
.questions details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  padding: 22px 30px 22px 0;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  font-size: 22px;
  top: 15px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
.questions details p {
  font-size: 14px;
  color: var(--muted);
  padding-right: 24px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.assessment {
  background: #233c3f;
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 9%;
  align-items: center;
}
.assessment .eyebrow {
  color: #b5cbd0;
}
.assessment h2 {
  font-size: 57px;
}
.assessment > div > p:not(.eyebrow) {
  color: #c7d1cf;
  max-width: 380px;
}
.assessment-note {
  display: block;
  font-size: 12px;
  color: #b6c7c5;
  margin-top: 40px;
}
form {
  background: #fffefa;
  color: var(--ink);
  border-radius: 7px;
  padding: 32px;
}
.form-title {
  font-size: 25px;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.demo-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 22px;
}
label {
  display: block;
  font-size: 12px;
  margin-bottom: 7px;
}
input,
select {
  width: 100%;
  height: 47px;
  padding: 10px 12px;
  background: #fafaf7;
  border: 1px solid #d9ddd5;
  border-radius: 3px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 17px;
}
input:focus,
select:focus {
  outline: 2px solid #799daf;
  outline-offset: 2px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
form .button {
  width: 100%;
  margin-top: 7px;
}
#form-status {
  font-size: 14px;
  margin: 12px 0 0;
}
#selected-system {
  font-size: 13px;
  color: var(--blue);
}
footer {
  padding: 60px 7.5% 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
footer > p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
footer > a:not(.logo) {
  font-size: 14px;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 25px;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .section {
    padding-left: max(7.5%, calc((100vw - 1380px) / 2));
    padding-right: max(7.5%, calc((100vw - 1380px) / 2));
  }
}
@media (max-width: 1000px) {
  header {
    height: 85px;
    padding: 0 4%;
  }
  nav {
    gap: 17px;
  }
  nav a {
    font-size: 12px;
  }
  .button.small {
    font-size: 11px;
    gap: 10px;
  }
  .hero {
    min-height: 590px;
    height: 75svh;
  }
  .hero-content {
    padding-top: 110px;
  }
  h1 {
    font-size: 65px;
  }
  .section {
    padding: 80px 5%;
  }
  .intro-strip span {
    padding: 0 25px;
    font-size: 11px;
  }
  .benefits {
    gap: 22px;
  }
  .benefits h3 {
    font-size: 17px;
  }
  .filtration {
    gap: 5%;
  }
  .product-info {
    padding: 20px;
  }
  .product-info ul {
    font-size: 11px;
  }
  .product-photo {
    height: 210px;
  }
  .family h2 {
    font-size: 54px;
  }
  .faq {
    gap: 6%;
  }
  .assessment h2 {
    font-size: 46px;
  }
  .trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 35px;
  }
}
@media (max-width: 700px) {
  header {
    height: 80px;
    padding: 0 6%;
  }
  .logo {
    font-size: 36px;
    gap: 10px;
  }
  .logo span {
    font-size: 7px;
    letter-spacing: 1.7px;
  }
  nav {
    display: none;
  }
  .button.small {
    font-size: 11px;
    padding: 10px 12px;
  }
  .hero {
    margin: 0 10px;
    min-height: 660px;
    height: calc(100svh - 95px);
    max-height: 850px;
  }
  .hero > img {
    object-position: 65% center;
  }
  .hero:after {
    background: linear-gradient(
      180deg,
      rgba(242, 241, 229, 0.94),
      rgba(239, 239, 227, 0.8) 43%,
      rgba(239, 239, 227, 0.08) 76%
    );
  }
  .hero-content {
    padding: 53px 6%;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.6px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: 55px;
    letter-spacing: -2.9px;
    line-height: 1.04;
  }
  h2 {
    font-size: 41px;
    letter-spacing: -1.9px;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 27px;
  }
  .button {
    font-size: 12px;
    padding: 15px 18px;
    gap: 19px;
  }
  .hero-caption {
    font-size: 10px;
    right: 15px;
    bottom: 17px;
  }
  .intro-strip {
    padding: 23px 15px;
    justify-content: space-around;
    gap: 10px;
  }
  .intro-strip span {
    padding: 0 8px;
    line-height: 1.4;
    font-size: 10px;
    max-width: 125px;
  }
  .section {
    padding: 67px 6%;
  }
  .section-intro {
    text-align: left;
  }
  .section-intro > p:last-child {
    font-size: 15px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
    margin-top: 35px;
    gap: 26px;
  }
  .benefits p {
    font-size: 13px;
  }
  .benefits article {
    padding-top: 17px;
  }
  .line-icon {
    font-size: 29px;
    height: 51px;
  }
  .filtration {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .filter-image {
    order: 2;
  }
  .filter-image > img {
    aspect-ratio: 1.25;
  }
  .filter-copy article {
    padding: 19px 0;
  }
  .filter-copy article p {
    font-size: 14px;
  }
  .every-tap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-map img {
    height: 340px;
  }
  .tap-labels {
    gap: 6px;
    margin: -93px 12px 34px;
  }
  .tap-labels span {
    font-size: 11px;
    padding: 6px 10px;
  }
  .family {
    height: 650px;
  }
  .family > img {
    object-position: 62% center;
  }
  .family:after {
    background: linear-gradient(
      180deg,
      rgba(22, 37, 31, 0.03) 10%,
      rgba(22, 37, 31, 0.8) 75%
    );
  }
  .family > div {
    left: 6%;
    right: 6%;
    top: auto;
    bottom: 40px;
    transform: none;
  }
  .family h2 {
    font-size: 44px;
  }
  .family p:not(.eyebrow) {
    font-size: 14px;
  }
  .section-title {
    display: block;
  }
  .section-title > p {
    font-size: 15px;
  }
  .products {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-photo {
    height: 280px;
  }
  .product-info {
    padding: 25px;
  }
  .product-info ul {
    font-size: 14px;
  }
  .product-info p {
    min-height: 0;
  }
  .product-info .button {
    font-size: 14px;
  }
  .steps {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
    margin: 40px 0;
  }
  .steps article {
    position: relative;
    padding-left: 65px;
  }
  .steps article > span {
    position: absolute;
    left: 0;
    top: 0;
  }
  .steps p {
    max-width: none;
    font-size: 14px;
  }
  .installation {
    text-align: left;
  }
  .trust {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 11px;
    gap: 20px 12px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  summary {
    font-size: 14px;
  }
  .assessment {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .assessment h2 {
    font-size: 42px;
  }
  .assessment-note {
    margin-top: 25px;
  }
  form {
    padding: 24px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer {
    padding: 45px 6% 22px;
    gap: 30px;
  }
  footer > p {
    font-size: 12px;
  }
  footer > a:not(.logo) {
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
  }
  .desktop {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
/* Boss Water Filters: supplied brand and full-screen opening. */
:root {
  --blue: #173f70;
  --ink: #202a33;
}
.hero-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 138px;
  padding: 24px 5.5%;
  color: white;
}
.logo {
  display: block;
  letter-spacing: normal;
}
.logo img {
  width: 210px;
  height: auto;
  display: block;
}
.hero-header nav {
  font-size: 16px;
  gap: 38px;
}
.hero-header nav a:hover {
  color: #d6e6f6;
}
.hero-header > .button {
  background: white;
  color: #152432;
  border-color: white;
  border-radius: 50px;
  padding: 17px 24px;
  font-size: 14px;
}
.video-hero {
  height: 100svh;
  min-height: 730px;
  max-height: 1100px;
  margin: 0;
  border-radius: 0 0 18px 18px;
  background: #253139;
  color: white;
}
.video-hero > video,
.image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-hero > img {
  object-position: center 38%;
}
.video-hero:after {
  background: linear-gradient(
    180deg,
    rgba(0, 12, 23, 0.5),
    rgba(0, 12, 23, 0.18) 35%,
    rgba(0, 12, 23, 0.65)
  );
  pointer-events: none;
}
.video-hero .hero-content {
  position: absolute;
  left: 5.5%;
  right: 5.5%;
  bottom: 145px;
  max-width: none;
  padding: 0;
}
.video-hero h1 {
  font-size: clamp(64px, 7.2vw, 112px);
  letter-spacing: -4.5px;
  line-height: 1.07;
  margin-bottom: 28px;
  font-weight: 450;
}
.video-hero .hero-content > p {
  font-size: 23px;
  margin-bottom: 30px;
  color: #f6f7f8;
}
.video-hero .hero-cta {
  background: white;
  color: #132b43;
  border-color: white;
  border-radius: 50px;
  padding: 17px 28px;
  font-size: 15px;
}
.video-hero .hero-cta:hover,
.hero-header > .button:hover {
  background: #e5edf4;
}
.mobile-break {
  display: none;
}
.video-toggle {
  position: absolute;
  z-index: 2;
  right: 5.5%;
  bottom: 40px;
  border: 1px solid #ffffff80;
  border-radius: 30px;
  background: #142b3a50;
  color: white;
  padding: 9px 15px;
  font-size: 12px;
  cursor: pointer;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 5.5%;
  bottom: 42px;
  font-size: 12px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.scroll-cue span {
  font-size: 21px;
}
.boss-why {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 6%;
  padding: 90px 5.5%;
  min-height: 780px;
}
.why-copy h2 {
  font-size: clamp(40px, 4.3vw, 65px);
  color: #101820;
}
.why-copy > p:not(.eyebrow):not(.fineprint) {
  max-width: 530px;
  color: #56616a;
  font-size: 17px;
}
.why-copy h3 {
  font-size: 24px;
  line-height: 1.35;
  margin: 28px 0;
}
.why-copy .button {
  min-width: 205px;
  border-radius: 35px;
}
.why-copy .fineprint {
  max-width: 390px;
  font-size: 11px;
}
.why-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  border-radius: 9px;
}
.boss-benefits {
  padding-top: 70px;
  background: #f5f6f7;
}
.boss-benefits .section-intro h2 {
  font-size: 47px;
}
footer {
  background: #172d42;
  color: white;
}
footer .logo img {
  width: 185px;
}
footer > p,
footer .footer-bottom {
  color: #c2cdd7;
}
footer .footer-bottom {
  border-color: #ffffff25;
}
@media (max-width: 1050px) {
  .hero-header nav {
    gap: 22px;
    font-size: 14px;
  }
  .logo img {
    width: 170px;
  }
  .hero-header > .button {
    font-size: 12px;
    padding: 14px 18px;
  }
  .boss-why {
    min-height: auto;
  }
  .video-hero h1 {
    font-size: 76px;
    letter-spacing: -3px;
  }
}
@media (max-width: 700px) {
  .hero-header {
    height: 102px;
    padding: 17px 6%;
    gap: 14px;
  }
  .hero-header .logo img {
    width: 135px;
  }
  .hero-header > .button {
    font-size: 10px;
    padding: 12px 14px;
    max-width: 153px;
    text-align: center;
  }
  .video-hero {
    height: 100svh;
    min-height: 670px;
    max-height: 1000px;
    border-radius: 0 0 12px 12px;
  }
  .video-hero .hero-content {
    left: 6%;
    right: 6%;
    bottom: 135px;
  }
  .video-hero h1 {
    font-size: clamp(49px, 11vw, 72px);
    line-height: 1.06;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }
  .mobile-break {
    display: block;
  }
  .video-hero .hero-content > p {
    font-size: 17px;
    max-width: 290px;
    line-height: 1.6;
    margin-bottom: 27px;
  }
  .video-hero .hero-cta {
    font-size: 13px;
    padding: 15px 22px;
  }
  .video-hero > video {
    object-position: 55% center;
  }
  .scroll-cue {
    left: 6%;
    bottom: 36px;
    font-size: 10px;
    gap: 10px;
  }
  .video-toggle {
    right: 6%;
    bottom: 36px;
    font-size: 10px;
    padding: 7px 10px;
  }
  .boss-why {
    display: flex;
    flex-direction: column;
    padding: 58px 6%;
    gap: 35px;
  }
  .why-copy h2 {
    font-size: 43px;
  }
  .why-copy > p:not(.eyebrow):not(.fineprint) {
    font-size: 15px;
  }
  .why-copy h3 {
    font-size: 21px;
  }
  .why-photo {
    width: 100%;
  }
  .why-photo img {
    max-height: none;
  }
  .boss-benefits {
    padding-top: 58px;
  }
  .boss-benefits .section-intro h2 {
    font-size: 38px;
  }
  footer .logo img {
    width: 150px;
  }
}
/* Three-step service journey. */
.process-section {
  background: #fffefa;
  padding-top: 95px;
  padding-bottom: 70px;
}
.process-section .section-title {
  margin-bottom: 46px;
}
.process-section .section-title h2 {
  margin-bottom: 0;
}
.process-section .section-title > p {
  margin: 0;
  color: #697572;
  font-size: 17px;
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.process-photo {
  aspect-ratio: 1.4;
  background: #ecebe5;
  overflow: hidden;
  border-radius: 7px;
}
.process-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-number {
  display: block;
  font-size: 51px;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 450;
  margin: 28px 0 21px;
  color: #173f70;
}
.process-grid h3 {
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.process-grid article > p {
  font-size: 16px;
  color: #697572;
  line-height: 1.7;
  max-width: 360px;
  margin: 0;
}
.process-end {
  margin-top: 46px;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #dedfd8;
}
.process-end p {
  font-size: 16px;
  margin: 0;
  color: #697572;
}
.process-end .button {
  border-radius: 30px;
  white-space: normal;
}
.process-section > .trust {
  margin-top: 4px;
}
@media (max-width: 1000px) {
  .process-grid {
    gap: 22px;
  }
  .process-grid h3 {
    font-size: 18px;
  }
  .process-grid article > p {
    font-size: 15px;
  }
  .process-number {
    font-size: 44px;
  }
  .process-section .section-title > p {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .process-section {
    padding-top: 60px;
    padding-bottom: 48px;
  }
  .process-section .section-title {
    margin-bottom: 32px;
  }
  .process-section .section-title > p {
    margin-top: 20px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .process-photo {
    aspect-ratio: 1.55;
  }
  .process-number {
    font-size: 45px;
    margin: 23px 0 17px;
  }
  .process-grid h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .process-grid article > p {
    font-size: 16px;
    max-width: none;
  }
  .process-end {
    margin-top: 35px;
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }
  .process-end p {
    font-size: 15px;
  }
  .process-end .button {
    font-size: 14px;
  }
  .process-section .trust {
    font-size: 12px;
  }
}
/* A shorter six-section journey with one consistent assessment CTA. */
a.button.assessment-cta,
button.button.assessment-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 62px;
  padding: 18px 32px;
  border-radius: 999px;
  background: #fff;
  color: #121c27;
  border: 1px solid #e1e5e9;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.2px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(14, 36, 58, 0.04);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
a.button.assessment-cta:hover,
button.button.assessment-cta:hover {
  background: #f1f5f8;
  border-color: #cbd5df;
  box-shadow: 0 6px 20px rgba(14, 36, 58, 0.08);
  transform: translateY(-2px);
}
.hero-header > a.button.assessment-cta {
  min-height: 58px;
  padding: 16px 26px;
  font-size: 14px;
  border-color: white;
}
.video-hero a.button.assessment-cta {
  font-size: 17px;
  min-height: 66px;
  padding: 20px 34px;
}
.filter-copy > .assessment-cta {
  margin-top: 28px;
}
.faq .assessment-cta {
  margin-top: 22px;
}
.process-end .assessment-cta {
  flex-shrink: 0;
}
.why-copy .assessment-cta {
  margin-top: 3px;
}
.assessment form .assessment-cta {
  background: #173f70;
  color: #fff;
  border-color: #173f70;
  box-shadow: none;
  font-size: 15px;
  padding: 17px 20px;
}
.assessment form .assessment-cta:hover {
  background: #102f57;
  color: #fff;
  border-color: #102f57;
}
.process-section {
  border-bottom: 1px solid #e8ebe9;
}
.faq {
  background: #f7f8f6;
}
.assessment h2 {
  font-size: clamp(40px, 4.1vw, 59px);
}
@media (max-width: 1050px) {
  .hero-header > a.button.assessment-cta {
    font-size: 12px;
    min-height: 52px;
    padding: 14px 18px;
  }
  .hero-header nav {
    gap: 20px;
  }
  a.button.assessment-cta,
  button.button.assessment-cta {
    font-size: 14px;
    padding: 17px 24px;
    min-height: 58px;
  }
  .process-end {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .hero-header > a.button.assessment-cta {
    font-size: 10px;
    min-height: 48px;
    max-width: 158px;
    padding: 11px 15px;
  }
  .video-hero a.button.assessment-cta {
    font-size: 14px;
    padding: 18px 25px;
    min-height: 58px;
  }
  .why-copy a.button.assessment-cta,
  .filter-copy a.button.assessment-cta,
  .process-end a.button.assessment-cta,
  .faq a.button.assessment-cta {
    font-size: 14px;
    min-height: 58px;
    padding: 18px 24px;
  }
  .process-end {
    align-items: stretch;
  }
  .process-end .assessment-cta {
    align-self: flex-start;
  }
  .assessment form .assessment-cta {
    font-size: 14px;
  }
}
/* Premium product story and supporting pages. */
.premium-statement {
  padding: 100px 7.5%;
  text-align: center;
  background: #0f2f52;
  color: white;
}
.premium-statement h2 {
  font-size: clamp(42px, 5vw, 72px);
  margin-bottom: 24px;
}
.premium-statement > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #d4e0e9;
  font-size: 18px;
}
.premium-statement .text-link {
  border-color: #9db5c9;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
}
.inner-header {
  height: 118px;
  padding: 20px 5.5%;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.inner-header nav {
  font-size: 15px;
}
.inner-header .assessment-cta {
  background: #173f70 !important;
  color: white !important;
  border-color: #173f70 !important;
}
.page-hero {
  padding: 105px 7.5% 90px;
  background: #f2f4f5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  align-items: center;
  min-height: 610px;
}
.page-hero h1 {
  font-size: clamp(53px, 6vw, 88px);
  color: #101820;
}
.page-hero > div > p:not(.eyebrow) {
  font-size: 19px;
  color: #56616a;
  max-width: 590px;
}
.page-hero img {
  width: 100%;
  height: 470px;
  object-fit: contain;
}
.page-hero.dark {
  background: #0e2e50;
  color: white;
}
.page-hero.dark h1 {
  color: white;
}
.page-hero.dark > div > p:not(.eyebrow) {
  color: #d4e0e9;
}
.editorial {
  max-width: 1180px;
  margin: auto;
}
.editorial-intro {
  max-width: 760px;
  margin-bottom: 65px;
}
.editorial-intro > p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stage-card {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
.stage-card .stage-no {
  font-size: 48px;
  color: #173f70;
  display: block;
  margin-bottom: 45px;
}
.stage-card h3 {
  font-size: 25px;
}
.stage-card p {
  color: var(--muted);
}
.stage-card ul {
  padding-left: 18px;
  color: #56616a;
  font-size: 14px;
}
.stage-card li {
  margin: 8px 0;
}
.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.split-story img {
  width: 100%;
  border-radius: 10px;
}
.split-story p {
  color: var(--muted);
  font-size: 17px;
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit-list article {
  background: var(--paper);
  padding: 45px;
}
.benefit-list h3 {
  font-size: 25px;
}
.benefit-list p {
  color: var(--muted);
  margin: 0;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 45px;
}
.comparison th,
.comparison td {
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.comparison th {
  font-size: 13px;
  letter-spacing: 1px;
}
.comparison td:first-child {
  font-weight: 600;
}
.comparison td:not(:first-child) {
  color: var(--muted);
}
.page-cta {
  background: #173f70;
  color: white;
  text-align: center;
}
.page-cta h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-cta p {
  color: #cedbe5;
}
.page-cta .assessment-cta {
  margin-top: 20px;
}
.page-footer {
  margin-top: 0;
}
@media (max-width: 900px) {
  .inner-header nav {
    display: none;
  }
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .page-hero img {
    height: 380px;
  }
  .stage-grid {
    grid-template-columns: 1fr;
  }
  .split-story {
    grid-template-columns: 1fr;
  }
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .footer-links {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .premium-statement {
    padding: 65px 6%;
    text-align: left;
  }
  .premium-statement > p:not(.eyebrow) {
    font-size: 16px;
  }
  .inner-header {
    height: 88px;
    padding: 15px 6%;
  }
  .inner-header .logo img {
    width: 135px;
  }
  .page-hero {
    padding: 58px 6%;
    min-height: auto;
  }
  .page-hero h1 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }
  .page-hero > div > p:not(.eyebrow) {
    font-size: 17px;
  }
  .page-hero img {
    height: 300px;
  }
  .stage-card {
    padding: 28px;
  }
  .stage-card .stage-no {
    margin-bottom: 28px;
  }
  .benefit-list article {
    padding: 30px 25px;
  }
  .comparison {
    font-size: 13px;
  }
  .comparison th,
  .comparison td {
    padding: 15px 9px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
/* Editorial redesign: varied silhouettes, fewer repeated blocks. */
.hero-kicker {
  font-size: 11px !important;
  letter-spacing: 2.4px;
  font-weight: 650;
  margin-bottom: 25px !important;
}
.video-hero > video {
  filter: saturate(0.82) contrast(1.04);
}
.video-hero:after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 19, 32, 0.72) 0%,
      rgba(5, 19, 32, 0.25) 48%,
      rgba(5, 19, 32, 0.12) 70%
    ),
    linear-gradient(0deg, rgba(5, 19, 32, 0.52), transparent 55%);
}
.boss-why {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 4%;
  padding-right: 0;
  overflow: hidden;
}
.why-photo img {
  border-radius: 180px 0 0 180px;
  background: #eef1f2;
  padding: 25px 0 25px 25px;
}
.filtration {
  grid-template-columns: 1fr 1fr;
  padding-top: 140px;
  padding-bottom: 140px;
}
.filter-image {
  transform: translateY(40px);
}
.filter-copy article {
  margin-left: -55px;
  padding-left: 55px;
  background: linear-gradient(90deg, #f2f1eb 80%, transparent);
}
.process-grid article:nth-child(2) {
  transform: translateY(55px);
}
.process-grid article:nth-child(3) {
  transform: translateY(110px);
}
.process-end {
  margin-top: 150px;
}
.faq {
  padding-top: 150px;
  padding-bottom: 150px;
}
.questions details {
  background: white;
  padding: 0 24px;
  margin-bottom: 10px;
  border: 1px solid #e3e6e4 !important;
  border-radius: 8px;
}
.product-page .page-hero {
  grid-template-columns: 0.8fr 1.2fr;
  background: linear-gradient(135deg, #eef1f2 55%, #dce6eb 55%);
  overflow: hidden;
}
.product-page .page-hero img {
  height: 560px;
  transform: scale(1.1) translateY(25px);
}
.product-page .stage-grid {
  display: block;
  border-top: 1px solid var(--line);
}
.product-page .stage-card {
  display: grid;
  grid-template-columns: 110px 0.8fr 1.2fr;
  align-items: start;
  gap: 35px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 45px 0;
}
.product-page .stage-card .stage-no {
  margin: 0;
}
.product-page .stage-card h3 {
  font-size: 30px;
  margin-top: 10px;
}
.product-page .stage-card p,
.product-page .stage-card ul {
  margin-top: 10px;
}
.product-page .split-story {
  grid-template-columns: 1.25fr 0.75fr;
  padding-left: 0;
}
.product-page .split-story img {
  border-radius: 0 220px 220px 0;
  height: 610px;
  object-fit: cover;
}
.benefits-page .page-hero {
  display: block;
  padding: 0;
  position: relative;
  height: 760px;
  overflow: hidden;
}
.benefits-page .page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefits-page .page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 28, 48, 0.75),
    rgba(8, 28, 48, 0.08) 72%
  );
}
.benefits-page .page-hero > div {
  position: absolute;
  z-index: 1;
  left: 7.5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 650px;
}
.benefits-page .benefit-list {
  background: transparent;
  border: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.benefits-page .benefit-list article {
  padding: 45px 38px;
  border-top: 1px solid var(--line);
  background: transparent;
}
.benefits-page .benefit-list article:nth-child(2),
.benefits-page .benefit-list article:nth-child(5) {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.benefits-page .split-story {
  grid-template-columns: 0.7fr 1.3fr;
}
.benefits-page .split-story img {
  height: 650px;
  object-fit: cover;
  border-radius: 220px 0 0 220px;
  order: 2;
}
.difference-page .page-hero {
  padding: 0;
  grid-template-columns: 1fr 1fr;
  background: #102f50;
}
.difference-page .page-hero > div {
  padding: 100px 12%;
}
.difference-page .page-hero h1 {
  color: white;
}
.difference-page .page-hero > div > p:not(.eyebrow) {
  color: #cfdae4;
}
.difference-page .page-hero img {
  height: 700px;
  object-fit: cover;
}
.difference-page .editorial {
  max-width: none;
  padding-left: 12%;
  padding-right: 12%;
}
.difference-page .comparison {
  border-top: 1px solid var(--line);
}
.difference-page .comparison tbody tr:hover {
  background: #f0f3f4;
}
.system-build {
  padding-left: 12%;
  padding-right: 12%;
  background: #102f50;
  color: #fff;
}
.system-build-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8%;
  align-items: end;
  margin-bottom: 64px;
}
.system-build-intro .eyebrow {
  grid-column: 1 / -1;
  color: #a9c7df;
}
.system-build-intro h2 {
  margin: 0;
  max-width: 760px;
}
.system-build-intro > p:last-child {
  margin: 0;
  color: #cedae4;
  font-size: 17px;
  line-height: 1.7;
}
.system-build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.system-build-grid article {
  padding: 36px 34px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}
.system-build-grid article:last-child {
  border-right: 0;
}
.system-build-grid span {
  display: block;
  margin-bottom: 64px;
  color: #8db7d5;
  font-size: 42px;
  font-weight: 350;
}
.system-build-grid h3 {
  margin-bottom: 16px;
  font-size: 23px;
}
.system-build-grid p {
  margin: 0;
  color: #cedae4;
  line-height: 1.7;
}
.system-build > .fineprint {
  color: #aebdca;
  margin-top: 22px;
}
.difference-page .split-story {
  background: #fff !important;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 0;
}
.difference-page .split-story img {
  border-radius: 0;
  height: 680px;
  object-fit: cover;
}
.difference-page .split-story > div {
  padding: 80px 12% 80px 5%;
}
@media (max-width: 900px) {
  .system-build-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .system-build-grid {
    grid-template-columns: 1fr;
  }
  .system-build-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }
  .system-build-grid article:last-child {
    border-bottom: 0;
  }
  .system-build-grid span {
    margin-bottom: 30px;
  }
  .process-grid article:nth-child(2),
  .process-grid article:nth-child(3) {
    transform: none;
  }
  .process-end {
    margin-top: 46px;
  }
  .product-page .stage-card {
    grid-template-columns: 75px 1fr;
  }
  .product-page .stage-card > p,
  .product-page .stage-card > ul {
    grid-column: 2;
  }
  .benefits-page .benefit-list {
    grid-template-columns: 1fr 1fr;
  }
  .difference-page .page-hero {
    grid-template-columns: 1fr;
  }
  .difference-page .page-hero img {
    height: 480px;
  }
  .difference-page .split-story {
    grid-template-columns: 1fr;
  }
  .difference-page .split-story > div {
    padding: 60px 7%;
  }
}
@media (max-width: 700px) {
  .boss-why {
    padding-right: 0;
  }
  .why-copy {
    padding-right: 6%;
  }
  .why-photo img {
    border-radius: 100px 0 0 100px;
  }
  .filtration {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .filter-image {
    transform: none;
  }
  .filter-copy article {
    margin-left: 0;
    padding-left: 0;
    background: none;
  }
  .faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .questions details {
    padding: 0 16px;
  }
  .product-page .page-hero {
    display: flex;
    background: #eef1f2;
  }
  .product-page .page-hero img {
    height: 330px;
    transform: none;
  }
  .product-page .stage-card {
    grid-template-columns: 55px 1fr;
    gap: 15px;
  }
  .product-page .stage-card h3 {
    font-size: 23px;
  }
  .product-page .split-story {
    padding: 0;
    display: block;
  }
  .product-page .split-story img {
    height: 360px;
    border-radius: 0 100px 100px 0;
    margin-bottom: 45px;
  }
  .product-page .split-story > div {
    padding: 0 6% 60px;
  }
  .benefits-page .page-hero {
    height: 690px;
  }
  .benefits-page .page-hero > div {
    left: 6%;
    right: 6%;
  }
  .benefits-page .benefit-list {
    grid-template-columns: 1fr;
  }
  .benefits-page .benefit-list article:nth-child(2),
  .benefits-page .benefit-list article:nth-child(5) {
    border-left: 0;
    border-right: 0;
  }
  .benefits-page .split-story {
    display: flex;
    flex-direction: column;
    padding: 60px 0 0;
  }
  .benefits-page .split-story > div {
    padding: 0 6%;
  }
  .benefits-page .split-story img {
    order: 2;
    height: 400px;
    border-radius: 100px 0 0 100px;
    margin-top: 40px;
  }
  .difference-page .page-hero > div {
    padding: 60px 6%;
  }
  .difference-page .page-hero img {
    height: 380px;
  }
  .difference-page .editorial {
    padding-left: 6%;
    padding-right: 6%;
  }
  .difference-page .split-story img {
    height: 400px;
  }
  .difference-page .split-story > div {
    padding: 55px 6%;
  }
}
/* Corrected filtration rows and Water Facts. */
.product-page .stage-card {
  grid-template-columns: 110px minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  grid-template-areas: "number title detail" "number bullets detail";
}
.product-page .stage-card .stage-no {
  grid-area: number;
}
.product-page .stage-card h3 {
  grid-area: title;
}
.product-page .stage-card > p {
  grid-area: detail;
  font-size: 17px;
  line-height: 1.75;
}
.product-page .stage-card ul {
  grid-area: bullets;
  margin: 0;
  padding-left: 20px;
}
/* Premium editorial refresh: legible brand header and a calmer process rhythm. */
.inner-header {
  background: #0d2947;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
.inner-header nav a {
  color: #fff;
}
.inner-header .assessment-cta {
  background: #fff !important;
  color: #0d2947 !important;
  border-color: #fff !important;
}
.inner-header .logo img {
  width: 190px;
  height: auto;
}
.process-grid {
  gap: 0;
  border-top: 1px solid #d9dfdf;
  border-bottom: 1px solid #d9dfdf;
}
.process-grid article {
  min-height: 320px;
  padding: 38px 34px 42px;
  border-right: 1px solid #d9dfdf;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}
.process-grid article:last-child {
  border-right: 0;
}
.process-grid article:nth-child(2),
.process-grid article:nth-child(3) {
  transform: none;
}
.process-number {
  margin: 0 0 70px;
  font-size: 68px;
  font-weight: 350;
}
.process-grid h3 {
  font-size: 24px;
}
.process-end {
  margin-top: 38px;
}
.page-hero img,
.facts-hero img {
  object-fit: cover;
}
.product-page .page-hero img {
  background: #e8edf0;
  object-fit: contain;
}
.split-story.text-only {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  text-align: center;
}
.split-story.text-only p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.facts-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #102f50;
  color: white;
}
.facts-hero > div {
  padding: 110px 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facts-hero h1 {
  font-size: clamp(55px, 6vw, 88px);
}
.facts-hero > div > p:last-child {
  color: #ccdae5;
  font-size: 18px;
  max-width: 570px;
}
.facts-hero img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}
.facts-intro {
  padding: 65px 12%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  font-size: 24px;
  border-bottom: 1px solid var(--line);
}
.facts-intro p:last-child {
  color: var(--muted);
  font-size: 17px;
}
.fact-stories {
  padding: 20px 12% 100px;
}
.fact-stories article {
  display: grid;
  grid-template-columns: 80px 0.8fr 1.2fr;
  gap: 40px;
  padding: 65px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.fact-stories article > span {
  font-size: 42px;
  color: #173f70;
}
.fact-stories h2 {
  font-size: clamp(31px, 3vw, 46px);
  margin: 0;
}
.fact-stories article > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 650px;
}
.facts-note {
  margin: 0 7.5% 100px;
  padding: 65px;
  background: #eef2f4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
.facts-note h2 {
  font-size: 40px;
}
.facts-note > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .product-page .stage-card {
    grid-template-columns: 75px 1fr;
    grid-template-areas: "number title" "number detail" "number bullets";
  }
  .facts-hero {
    grid-template-columns: 1fr;
  }
  .facts-hero img {
    min-height: 420px;
  }
  .fact-stories article {
    grid-template-columns: 60px 1fr;
  }
  .fact-stories article > p {
    grid-column: 2;
  }
  .facts-note {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .product-page .stage-card {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "number title" "detail detail" "bullets bullets";
  }
  .facts-hero > div {
    padding: 65px 6%;
  }
  .facts-hero h1 {
    font-size: 49px;
  }
  .facts-hero img {
    min-height: 340px;
  }
  .facts-intro {
    padding: 45px 6%;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .fact-stories {
    padding: 10px 6% 60px;
  }
  .fact-stories article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 45px 0;
  }
  .fact-stories article > span {
    font-size: 30px;
  }
  .fact-stories article > p {
    grid-column: 1 / -1;
  }
  .facts-note {
    margin: 0 6% 70px;
    padding: 38px 27px;
  }
  .facts-note h2 {
    font-size: 32px;
  }
}
.home-journey {
  padding: 110px 7.5%;
  background: #102f50;
  color: white;
}
.home-journey-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9%;
  align-items: end;
  margin-bottom: 65px;
}
.home-journey-head h2 {
  margin: 0;
}
.home-journey-head > div > p:last-child {
  color: #cbd8e2;
  font-size: 17px;
}
.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ffffff45;
}
.journey-track article {
  padding: 30px 28px 5px 0;
  border-right: 1px solid #ffffff30;
}
.journey-track article + article {
  padding-left: 28px;
}
.journey-track article:last-child {
  border-right: 0;
}
.journey-track span {
  font-size: 12px;
  color: #9db5c9;
}
.journey-track h3 {
  font-size: 22px;
  margin: 30px 0 12px;
}
.journey-track p {
  color: #cbd8e2;
  font-size: 14px;
}
.home-journey .text-link {
  margin-top: 45px;
  border-color: #9db5c9;
}
@media (max-width: 900px) {
  .home-journey-head {
    grid-template-columns: 1fr;
  }
  .journey-track {
    grid-template-columns: 1fr 1fr;
  }
  .journey-track article {
    border-bottom: 1px solid #ffffff30;
  }
}
@media (max-width: 700px) {
  .home-journey {
    padding: 70px 6%;
  }
  .home-journey-head {
    margin-bottom: 40px;
  }
  .journey-track {
    grid-template-columns: 1fr;
  }
  .journey-track article,
  .journey-track article + article {
    padding: 27px 0;
    border-right: 0;
  }
  .journey-track h3 {
    margin-top: 15px;
  }
}
