﻿@font-face {
  font-family: "Sweet Sans";
  src: url("../assets/fonts/SweetSansPro-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Sweet Sans";
  src: url("../assets/fonts/SweetSansPro-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Sweet Sans";
  src: url("../assets/fonts/SweetSansPro-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --bg: #f8f8f8;
  --text: #1d2526;
  --teal: #195f60;
  --teal-dark: #10484a;
  --olive: #a7bf53;
  --muted: #e9ebf3;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sweet Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

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

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

.container {
  width: min(1300px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.topbar.is-sticky {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(36, 60, 58, 0.1);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0 18px;
}

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

.logo-image {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #6d6f73;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--teal-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  background: linear-gradient(180deg, #d3e67e, #a5c047);
  color: #173a2c;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
}

.btn:hover {
  filter: brightness(0.96);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.84rem;
}

.header-apply {
  width: 154px;
  height: 50px;
  padding: 16px 24px;
  gap: 10px;
  border-radius: 33px;
  background: #2c6563;
  color: #bacb67;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
  flex-shrink: 0;
}

.header-apply:hover {
  background: #bacb67;
  color: #2c6563;
}

.btn-olive {
  background: #b5ca63;
}

.hero {
  position: relative;
  min-height: 584px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 101, 99, 0.78) 0%, rgba(179, 205, 112, 0.3) 50%, rgba(24, 88, 95, 0.78) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 118px 0 50px;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #426469;
  font-weight: 700;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: #cae2d0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-title {
  width: min(716px, 100%);
  margin: 0 auto 14px;
  font-size: clamp(2.5rem, 4.4vw, 54px);
  line-height: 60px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
}

.hero-subtitle {
  width: min(548px, 100%);
  margin: 0 auto 14px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3.8px rgba(0, 0, 0, 0.25);
}

.hero-text {
  width: min(890px, 100%);
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 400;
  color: #ffffff;
}

.hero-cta {
  width: min(432px, 100%);
  min-height: 50px;
  padding: 16px 24px;
  gap: 10px;
  border-radius: 38px;
  border: 2px solid #c9da7a;
  background: #ffffff;
  color: #2c6563;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-cta:hover {
  background: #f8fbe9;
  color: #2c6563;
}

.hero-note {
  width: min(196px, 100%);
  margin: 14px auto 0;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.section {
  padding: 84px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

h2 span {
  color: var(--teal);
}

.lead {
  color: #495b61;
  margin-bottom: 18px;
}

.real-problem {
  background: #ffffff;
}

.real-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 24px;
  align-items: start;
}

.real-problem-copy {
  padding-top: 8px;
}

.real-problem-label {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
  color: #2c6563;
}

.real-problem-title {
  max-width: 675px;
  margin-bottom: 18px;
  color: #111111;
  font-size: clamp(2.25rem, 4vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  font-weight: 700;
}

.real-problem-title span {
  color: #2c6563;
}

.real-problem-intro {
  margin-bottom: 28px;
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.real-problem-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 18px;
  margin-bottom: 26px;
}

.problem-point {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.problem-icon {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.problem-icon img {
  width: 47px;
  height: 47px;
}

.olive-point .problem-icon {
  background: #bacb67;
}

.purple-point .problem-icon {
  background: #614e92;
}

.teal-point .problem-icon {
  background: #2c6563;
}

.problem-point p {
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.real-problem-body {
  max-width: 664px;
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}

.real-problem-body p {
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.real-problem-cta {
  width: min(333px, 100%);
  min-height: 50px;
  padding: 16px 24px;
  gap: 10px;
  border-radius: 33px;
  background: #bacb67;
  color: #2c6563;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.real-problem-mobile-cta {
  display: none;
}

.real-problem-mobile-note {
  color: #2c6563;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}

.real-problem-media {
  width: 100%;
  aspect-ratio: 666 / 820;
  margin-left: auto;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  box-shadow: 0 28px 38px -30px rgba(7, 35, 38, 0.45);
}

.real-problem-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-muted {
  background: #e9e9f2;
}

.cleanup-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
}

.cleanup-visual {
  width: 100%;
}

.cleanup-visual img {
  width: min(1028px, 100%);
  height: auto;
  display: block;
}

.cleanup-copy {
  max-width: 572px;
}

.cleanup-label {
  margin-bottom: 18px;
  color: #2c6563;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.cleanup-title {
  margin-bottom: 14px;
  color: #101010;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  font-weight: 700;
}

.cleanup-title span {
  color: #2c6563;
}

.cleanup-intro {
  max-width: 425px;
  margin-bottom: 18px;
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.cleanup-subhead {
  margin-bottom: 16px;
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.cleanup-bullets {
  max-width: 531px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.cleanup-bullets li {
  position: relative;
  padding-left: 29px;
  color: #000000;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0;
  font-weight: 500;
}

.cleanup-bullets li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("./assets/img/bullets-points.svg") center/contain no-repeat;
}

.cleanup-result {
  max-width: 491px;
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.workflow {
  margin-top: 48px;
  text-align: center;
}

.workflow-title {
  margin-bottom: 56px;
  color: #101010;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  font-weight: 700;
}

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

.workflow-controls {
  display: none;
}

.workflow-card {
  position: relative;
  min-height: 298px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px 54px;
  text-align: left;
  box-shadow: 0 1px 1.9px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.workflow-card.is-active {
  display: block;
}

.workflow-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18px;
  background: #bacb67;
}

img.workflow-icon {
  width: 69px;
  height: 69px;
  margin-bottom: 18px;
  object-fit: contain;
}

.workflow-card h4 {
  margin-bottom: 14px;
  color: #2c6563;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}

.workflow-card p {
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.workflow-cta-copy {
  margin-bottom: 18px;
  color: #2c6563;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.workflow-cta {
  width: 166px;
  min-height: 50px;
  padding: 16px 24px;
  border-radius: 33px;
  background: #2c6563;
  color: #bacb67;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.workflow-cta:hover {
  background: #245856;
  color: #bacb67;
}

.workflow-note {
  margin-top: 18px;
  color: #2c6563;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.offer-cleanups {
  background: #ffffff;
}

.offer-cleanups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 24px;
  align-items: center;
}

.offer-cleanups-copy {
  max-width: 559px;
}

.offer-cleanups-title {
  max-width: 468px;
  margin-bottom: 24px;
  color: #111111;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  font-weight: 700;
}

.offer-cleanups-title span {
  color: #2c6563;
}

.offer-cleanups-body {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.offer-cleanups-body p {
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.offer-cleanups-cta {
  width: min(358px, 100%);
  min-height: 50px;
  padding: 16px 24px;
  gap: 10px;
  border-radius: 33px;
  background: #2c6563;
  color: #bacb67;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.offer-cleanups-cta:hover {
  background: #245856;
  color: #bacb67;
}

.offer-cleanups-media {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 28px 38px -30px rgba(7, 35, 38, 0.45);
}

.offer-cleanups-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section-dark {
  background: #2c6563;
  color: #fff;
}

.examples {
  text-align: center;
}

.case-studies {
  text-align: center;
}

.case-studies-label {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.case-studies-title {
  max-width: 691px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 223px 72px 305px 72px 223px;
  justify-content: center;
  align-items: start;
  column-gap: 28px;
  row-gap: 24px;
  margin: 0 auto 26px;
}

.case-study-start,
.case-study-middle,
.case-study-result {
  text-align: center;
}

.case-study-icon-shell {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: #bacb67;
  box-shadow: 0 1px 1.9px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
}

.case-study-hand-icon {
  width: 78px;
  height: 78px;
}

.case-study-start h3 {
  max-width: 119px;
  margin: 0 auto 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
}

.case-study-start p {
  max-width: 223px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
}

.case-study-arrow {
  display: grid;
  place-items: center;
  padding-top: 39px;
}

.case-study-arrow img {
  width: 72px;
  height: 72px;
  display: block;
}

.case-study-tag {
  width: 150px;
  min-height: 50px;
  margin: 24px auto 16px;
  border-radius: 7px;
  background: #bacb67;
  box-shadow: 0 1px 1.9px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  color: #2c6563;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
}

.result-tag {
  width: 90px;
}

.case-study-bullets {
  max-width: 305px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  display: grid;
  gap: 0;
}

.case-study-bullets li {
  position: relative;
  padding-left: 24px;
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  font-weight: 500;
}

.case-study-bullets li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("./assets/img/bullets-points.svg") center/contain no-repeat;
}

.case-study-result p {
  max-width: 223px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: left;
  font-weight: 500;
}

.case-study-cta {
  width: 237px;
  min-height: 50px;
  padding: 16px 24px;
  border-radius: 38px;
  border: 2px solid #c9da7a;
  background: #ffffff;
  color: #2c6563;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.case-study-cta:hover {
  background: #f8fbe9;
  color: #2c6563;
}

.case-study-note {
  max-width: 278px;
  margin: 22px auto 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
}

.video-embed-section {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  padding: 0 0 24px;
}

.video-embed-shell {
  width: min(1200px, 100%);
  height: 460px;
  margin: 0 auto;
  border: 1px solid #ffffff;
  border-radius: 31px;
  overflow: hidden;
  background: #1e4f50;
}

.video-embed-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ideal {
  text-align: center;
}

.who-this-is-for {
  text-align: center;
}

.who-this-is-for-label {
  margin-bottom: 8px;
  color: #2c6563;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.who-this-is-for-title {
  max-width: 505px;
  margin: 0 auto 60px;
  color: #111111;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
}

.who-this-is-for-title span {
  color: #2c6563;
}

.who-this-is-for-grid {
  display: grid;
  grid-template-columns: 1fr 104px 1fr 104px 1fr 104px 1fr;
  align-items: start;
  column-gap: 10px;
  row-gap: 24px;
  margin-bottom: 32px;
}

.who-node {
  display: grid;
  justify-items: center;
}

.who-node-icon-shell {
  width: 128px;
  height: 128px;
  margin-bottom: 17px;
  border-radius: 50%;
  background: #bacb67;
  display: grid;
  place-items: center;
}

.who-node-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.who-node p {
  max-width: 229px;
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
}

.who-vector {
  display: grid;
  place-items: center;
  padding-top: 64px;
}

.who-vector img {
  width: 104px;
  height: auto;
  display: block;
}

.who-this-is-for-link {
  color: #2c6563;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0;
}

.details {
  background: #bacb67;
  padding-bottom: 220px;
}

.important-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1px;
  row-gap: 28px;
  align-items: start;
}

.important-notes-copy {
  max-width: 429px;
}

.important-notes-label {
  margin-bottom: 14px;
  color: #2c6563;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.important-notes-title {
  max-width: 385px;
  margin-bottom: 28px;
  color: #2c6563;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  font-weight: 700;
}

.important-notes-bullets {
  max-width: 429px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.important-notes-bullets li {
  position: relative;
  padding-left: 30px;
  color: #000000;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 500;
}

.important-notes-bullets li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("./assets/img/bullets-points2.svg") center/contain no-repeat;
}

.important-notes-media {
  width: 100%;
  max-width: 649px;
  border: 1px solid #ffffff;
  border-radius: 31px;
  overflow: hidden;
}

.important-notes-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.footer-cta {
  width: min(1200px, 100%);
  min-height: 350px;
  margin: 0 auto;
  padding: 52px 22px 40px;
  border-radius: 31px;
  text-align: center;
  color: #ffffff;
  transform: translateY(-175px);
  background:
    linear-gradient(0deg, rgba(44, 101, 99, 0.4), rgba(44, 101, 99, 0.4)),
    url("./assets/img/cta-footer-img.png") center/cover;
}

.footer-cta h2 {
  max-width: 541px;
  margin: 0 auto 16px;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
}

.footer-cta p {
  max-width: 349px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: 16px;
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
}

.footer-cta-button {
  width: min(318px, 100%);
  min-height: 50px;
  padding: 16px 24px;
  border-radius: 38px;
  border: 2px solid #c9da7a;
  background: #ffffff;
  color: #2c6563;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 700;
}

.footer-cta-button:hover {
  background: #f8fbe9;
  color: #2c6563;
}

.footer-cta small {
  display: block;
  margin-top: 15px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.footer-cta-section {
  position: relative;
  z-index: 2;
  height: 0;
  margin-top: 0;
  padding: 0;
}

.footer {
  background: #2c6563;
  color: #f0f8f7;
  padding: 10px 0 28px;
}

.pre-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  min-height: 569px;
}

.pre-footer-copy {
  max-width: 481px;
  padding-bottom: 54px;
}

.pre-footer-copy h3 {
  max-width: 333px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.8vw, 48px);
  line-height: 50px;
  letter-spacing: 0;
  font-weight: 700;
}

.pre-footer-copy p {
  max-width: 481px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
}

.pre-footer-copy p + p {
  margin-top: 18px;
}

.pre-footer-media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.pre-footer-media img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgb(255, 255, 255);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 170px;
}

.footer-brand-column {
  display: grid;
  gap: 18px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.footer-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-links-column {
  display: grid;
  gap: 10px;
  color: #ddedeb;
  font-size: 0.96rem;
}

.footer-links-column a {
  color: #ddedeb;
}

.footer-legal-column {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.footer-call-button {
  background: #bacb67;
  color: #2c6563;
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
  padding: 16px 24px;
  min-height: 50px;
  border-radius: 33px;
}

.footer-call-button:hover {
  color: #2c6563;
}

.footer-copyright {
  width: 293px;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: right;
  font-weight: 500;
}

.footer-mini-links {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-mini-links a,
.footer-mini-links span {
  color: #ffffff;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .topbar-inner {
    gap: 18px;
  }

  .logo-image {
    height: 44px;
  }

  .nav {
    gap: 24px;
    font-size: 15px;
  }

  .header-apply {
    width: 138px;
    padding: 14px 18px;
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .real-problem-grid,
  .offer-cleanups-grid,
  .split-grid,
  .cleanup-includes-grid,
  .important-notes-grid,
  .pre-footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .who-this-is-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .case-study-start,
  .case-study-middle,
  .case-study-result {
    text-align: center;
  }

  .case-study-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .case-study-result p,
  .case-study-bullets {
    max-width: 100%;
  }

  .case-study-bullets {
    max-width: 300px;
    margin: 0 auto;
    justify-items: stretch;
  }

  .case-study-bullets li {
    width: 100%;
    text-align: left;
  }

  .case-study-start p {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }

  .case-study-result p {
    text-align: center;
  }

  .who-vector {
    display: none;
  }

  .video-embed-section {
    margin-top: -80px;
    padding-bottom: 12px;
  }

  .video-embed-shell {
    height: 360px;
  }

  .footer-cta {
    min-height: 320px;
    transform: translateY(-128px);
  }

  .footer-cta p {
    line-height: 1.6;
  }

  .hero {
    min-height: 520px;
  }

  .real-problem-media {
    width: 100%;
    height: auto;
    border-radius: 25px;
  }

  .cleanup-visual img {
    margin-left: 0;
    width: 100%;
  }

  .important-notes-media {
    max-width: 649px;
  }

  .pre-footer-grid {
    min-height: 0;
  }

  .pre-footer-copy {
    padding-bottom: 0;
  }

  .footer-legal-column {
    justify-items: start;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-mini-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1300px);
  }

  .topbar .container {
    width: min(100%, 375px);
  }

  .topbar-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 16px;
    padding: 5px 16px;
    align-items: center;
    justify-items: start;
  }

  .logo {
    max-width: 100%;
    justify-self: start;
  }

  .logo-image {
    height: 34px;
    max-width: 100%;
    transition: transform 260ms ease;
  }

  .menu-toggle {
    display: inline-flex;
    width: 32px;
    height: 32px;
    gap: 5px;
    justify-self: end;
  }

  .menu-toggle span {
    width: 28px;
    height: 3px;
  }

  .nav {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    padding: 0;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      max-height 280ms ease,
      opacity 220ms ease,
      transform 280ms ease,
      padding 280ms ease;
  }

  .nav.is-open {
    max-height: 320px;
    padding: 12px 0 10px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .topbar.menu-open .logo-image {
    transform: translateY(6px);
  }

  .header-apply {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 76px 0 36px;
  }

  .hero-title {
    font-size: 35px;
    line-height: 42px;
  }

  .hero-subtitle,
  .hero-text,
  .hero-note {
    width: 100%;
  }

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

  .real-problem-points {
    grid-template-columns: 1fr;
  }

  .who-this-is-for-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-grid {
    margin-bottom: 20px;
  }

  .workflow-card {
    display: none;
    width: min(282px, 100%);
    min-height: 298px;
    margin: 0 auto;
    padding: 24px 20px 52px;
  }

  .workflow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    margin-bottom: 28px;
  }

  .workflow-control {
    width: 31.78px;
    height: 31.78px;
    padding: 0;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .workflow-control img {
    width: 31.78px;
    height: 31.78px;
    display: block;
    object-fit: contain;
  }

  .case-studies-title {
    font-size: 45px;
    line-height: 42px;
  }

  .video-embed-section {
    display: none;
  }

  .footer-cta {
    padding: 38px 18px 30px;
    min-height: 0;
    border-radius: 24px;
    transform: translateY(-92px);
  }

  .footer-cta h2 {
    font-size: 45px;
    line-height: 42px;
  }

  .footer-cta p {
    line-height: 1.5;
  }

  .pre-footer-copy h3 {
    font-size: 45px;
    line-height: 42px;
  }

  .footer-copyright {
    width: auto;
  }

  .real-problem-title {
    font-size: 45px;
    line-height: 42px;
  }

  .offer-cleanups-title {
    font-size: 45px;
    line-height: 42px;
  }

  .who-this-is-for-title {
    font-size: 45px;
    line-height: 42px;
  }

  .important-notes-title {
    font-size: 45px;
    line-height: 42px;
  }

  .important-notes-media {
    display: none;
  }

  .details {
    padding-bottom: 140px;
  }

  .cleanup-title {
    font-size: 45px;
    line-height: 42px;
  }

  .workflow-title {
    font-size: 45px;
    line-height: 42px;
  }

  .real-problem-points {
    row-gap: 22px;
    margin-bottom: 34px;
  }

  .real-problem-copy > .real-problem-cta {
    display: none;
  }

  .real-problem-mobile-cta {
    display: grid;
    gap: 14px;
    justify-items: center;
    margin-top: 18px;
  }

  .real-problem-mobile-cta .real-problem-cta {
    width: min(333px, 100%);
  }

  .problem-point {
    grid-template-columns: 72px 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    font-size: 18px;
    line-height: 20px;
  }

  .workflow-cta {
    width: auto;
  }

  .footer-bottom {
    padding-top: 5px;
    gap: 22px;
  }

  .footer-brand-column,
  .footer-links-column,
  .footer-legal-column {
    gap: 16px;
  }

  .footer-logo {
    width: min(240px, 100%);
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-socials a {
    width: 50px;
    height: 50px;
  }

  .footer-links-column {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
  }

  .footer-legal-column {
    gap: 18px;
  }

  .footer-call-button {
    min-width: 220px;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    padding: 16px 22px;
    border-radius: 999px;
  }

  .footer-copyright {
    max-width: 293px;
    font-size: 14px;
    line-height: 18px;
  }

  .footer-mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 14px;
    line-height: 1.2;
  }

  .footer-mini-links span {
    margin: 0 8px;
  }

  .btn-small {
    width: auto;
  }

}
