@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Nunito+Sans:wght@500;650;750;850;900;1000&display=swap");

:root {
  --font-display: "Baloo 2";
  --font-body: "Nunito Sans";
  --ink: #112033;
  --blue: #0a4b93;
  --deep: #062342;
  --green: #10bd66;
  --lime: #dff75a;
  --yellow: #ffe45f;
  --red: #ee263b;
  --orange: #ff8a25;
  --paper: #ffffff;
  --mist: #f4fbff;
  --mint: #ecfff4;
  --cream: #fff6cf;
  --line: #d8e7ee;
  --muted: #607284;
  --shadow: 0 18px 42px rgba(7, 36, 66, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", var(--font-body), ui-sans-serif, system-ui, sans-serif;
  padding-bottom: 74px;
}

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

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

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

.topbar {
  background: var(--red);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1.2;
  padding: 0.55rem 1rem;
  text-align: center;
}

.nav {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  color: var(--deep);
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 950;
}

.brand span {
  color: var(--blue);
}

.nav nav {
  display: flex;
  flex: 1 1 100%;
  gap: 0.35rem;
  justify-content: stretch;
  min-width: 0;
  width: 100%;
}

.nav a:not(.brand) {
  border-radius: 8px;
  color: var(--blue);
  flex: 1;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 42px;
  padding: 0.78rem 0.58rem;
  white-space: nowrap;
}

.nav .navCta {
  background: var(--green);
  color: #fff;
}

.hero {
  background:
    linear-gradient(180deg, #f4fff8 0%, #eef9ff 74%, #fff 100%);
  display: grid;
  gap: 1.2rem;
  padding: 1.15rem 1rem 2.25rem;
  text-align: center;
}

.heroCopy {
  display: grid;
  gap: 0.86rem;
  margin: 0 auto;
  max-width: 1040px;
  position: relative;
}

.eyebrow {
  color: #0a8f55;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 0;
  text-transform: uppercase;
}

h1 {
  color: var(--blue);
  font-family: "Baloo 2", var(--font-display), var(--font-body), ui-sans-serif, system-ui, sans-serif;
  font-size: 2.34rem;
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 0;
  text-wrap: balance;
}

h2 {
  color: var(--blue);
  font-family: "Baloo 2", var(--font-display), var(--font-body), ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 0;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-family: "Baloo 2", var(--font-display), var(--font-body), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 0.45rem;
}

.lead,
.band p,
.offerLead,
.finalCta p,
details p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.lead {
  color: #314961;
  font-size: 1.02rem;
  font-weight: 650;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

p strong,
li strong,
.lead strong,
.offerLead strong,
details strong {
  color: var(--deep);
  font-weight: 1000;
  white-space: normal;
}

main :where(.lead, .band p, details p, .finalCta p) strong {
  background: linear-gradient(180deg, transparent 61%, rgba(255, 228, 95, 0.72) 61%, rgba(255, 228, 95, 0.72) 84%, transparent 84%);
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.03em;
}

.mark {
  background: linear-gradient(180deg, transparent 56%, rgba(255, 228, 95, 0.9) 56%, rgba(255, 228, 95, 0.9) 82%, transparent 82%);
  border-radius: 3px;
  color: var(--deep);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.08em;
}

.actions {
  display: grid;
  gap: 0.72rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 3;
}

.cta,
.ghost {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 950;
  gap: 0.55rem;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.15rem;
  text-align: center;
}

.cta {
  background: var(--green);
  box-shadow: 0 16px 30px rgba(16, 189, 102, 0.32);
  color: #fff;
}

.ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
}

.big {
  width: 100%;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.5rem 0.62rem;
}

.microcopy {
  color: #6d8192;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.photoFrame {
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(10, 75, 147, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  width: 100%;
}

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

.heroPhoto {
  aspect-ratio: 4 / 3;
}

.heroMockup {
  filter: drop-shadow(0 24px 46px rgba(10, 75, 147, 0.16));
  margin: -1.45rem auto 0;
  max-width: 900px;
  pointer-events: none;
  position: relative;
  width: 100%;
  z-index: 1;
}

.heroMockup img {
  width: 100%;
}

.meetingPhoto img {
  object-position: center 64%;
}

.actionPhoto img,
.offerPhoto img {
  object-position: center center;
}

.faqPhoto img {
  object-position: center 54%;
}

.trustStrip {
  background: var(--deep);
  color: #fff;
  display: grid;
  gap: 1px;
}

.trustStrip span {
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.87rem;
  font-weight: 900;
  line-height: 1.3;
  padding: 1rem;
  text-align: center;
}

.band {
  padding: 3.5rem 1rem;
}

.bluewash {
  background: var(--mist);
}

.greenwash {
  background: var(--mint);
}

.yellowwash {
  background: var(--cream);
}

.sectionTitle {
  display: grid;
  gap: 0.7rem;
  margin: 0 auto 1.55rem;
  max-width: 910px;
  text-align: center;
}

.problem {
  background: #fff;
}

.cards,
.featureList,
.roleGrid,
.timeline,
.bonusGrid,
.faqList,
.limitsGrid,
.deliverables {
  display: grid;
  gap: 0.82rem;
}

.cards article,
.featureList article,
.roleGrid article,
.timeline article,
.bonusGrid article,
.positive,
.notFor,
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 36, 66, 0.07);
  padding: 1rem;
}

.tag {
  background: var(--yellow);
  border-radius: 8px;
  color: var(--deep);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 950;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.48rem;
  text-transform: uppercase;
}

.split,
.offerInner {
  display: grid;
  gap: 1.55rem;
  margin: 0 auto;
  max-width: 1160px;
}

.split > div {
  min-width: 0;
}

.featureList {
  margin-top: 1.2rem;
}

.featureList article {
  align-items: flex-start;
  display: flex;
  gap: 0.72rem;
}

.featureList p {
  margin-bottom: 0;
}

.iconCheck {
  align-items: center;
  background: var(--lime);
  border: 2px solid #b4d726;
  border-radius: 999px;
  color: #0c6f3c;
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 0.9rem;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.roleGrid {
  margin-top: 1rem;
}

.roleGrid article {
  align-content: start;
  column-gap: 0.64rem;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 132px;
  position: relative;
}

.roleGrid h3 {
  align-self: center;
  grid-column: 2;
  margin-bottom: 0.18rem;
}

.roleGrid p {
  grid-column: 2;
  margin-bottom: 0;
}

.roleIcon {
  align-items: center;
  align-self: center;
  background: #ffcf45;
  border: 2px solid #f08a1a;
  border-radius: 999px;
  box-shadow: 0 5px 12px rgba(240, 138, 26, 0.2);
  color: #0f7c46;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 1000;
  grid-column: 1;
  height: 24px;
  justify-content: center;
  line-height: 1;
  margin-top: 0.1rem;
  width: 24px;
}

.timeline article {
  align-items: flex-start;
  border-color: #efd45a;
  display: flex;
  gap: 0.8rem;
}

.timeline article > strong {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 0.95rem;
  height: 42px;
  justify-content: center;
}

.bonusSplit {
  align-items: start;
}

.bonusGrid {
  margin-top: 1rem;
}

.bonusGrid article {
  align-items: center;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 92px minmax(0, 1fr);
}

.bonusThumb {
  aspect-ratio: 3 / 4.22;
  background: linear-gradient(135deg, #ffffff, #f1f8ff);
  border: 1px solid rgba(10, 75, 147, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 36, 66, 0.14);
  margin: 0;
  overflow: hidden;
  transform: rotate(-1.8deg);
}

.bonusGrid article:nth-child(even) .bonusThumb {
  transform: rotate(1.6deg);
}

.bonusThumb img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.bonusText {
  min-width: 0;
}

.bonusGrid span {
  color: #0a8f55;
  display: block;
  font-size: 0.74rem;
  font-weight: 950;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.limits {
  background: #fff;
}

.limitsGrid {
  margin: 0 auto;
  max-width: 960px;
}

.positive {
  background: linear-gradient(135deg, #f2fff7, #fff);
  border-color: #bbebd0;
}

.positive h3 {
  margin-bottom: 0.45rem;
}

.positive p {
  align-items: center;
  border-bottom: 1px solid rgba(16, 189, 102, 0.16);
  color: var(--ink);
  display: flex;
  font-weight: 900;
  gap: 0.58rem;
  line-height: 1.35;
  margin-bottom: 0;
  padding: 0.76rem 0;
}

.positive p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.positive .iconCheck {
  background: #dff9ec;
  border-color: #95ddb8;
  flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.notFor h3 {
  color: var(--red);
}

.notFor p {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-weight: 900;
  gap: 0.58rem;
  margin-bottom: 0;
  padding: 0.78rem 0;
}

.notFor p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.notFor span {
  align-items: center;
  background: #ffe9ec;
  border-radius: 999px;
  color: var(--red);
  display: inline-flex;
  flex: 0 0 26px;
  font-weight: 950;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.testimonialBand {
  background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}

.testimonialGrid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1160px;
}

.testimonialCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 36, 66, 0.1);
  overflow: hidden;
}

.testimonialPhoto {
  aspect-ratio: 4 / 3;
  background: #eaf4fb;
  margin: 0;
  overflow: hidden;
}

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

.testimonialCopy {
  padding: 1rem;
}

.testimonialCopy span {
  color: var(--green);
  display: block;
  font-size: 0.78rem;
  font-weight: 1000;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.testimonialCopy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.testimonialCopy .quote {
  color: var(--deep);
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.32;
  margin-bottom: 0.62rem;
}

.offer {
  background: linear-gradient(135deg, #062342 0%, #0a4b93 100%);
  color: #fff;
  padding: 3.8rem 1rem;
}

.offerVisual {
  display: grid;
  gap: 0.85rem;
}

.offerProof {
  display: grid;
  gap: 0.6rem;
}

.offerProof span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 950;
  padding: 0.75rem 0.85rem;
  text-align: center;
}

.packageCard {
  background: var(--deep);
  border: 1px solid rgba(16, 189, 102, 0.55);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  color: #fff;
  overflow: hidden;
}

.packageHeader {
  background: var(--red);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 1000;
  line-height: 1;
  padding: 1.22rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.packageBody {
  padding: 1.1rem 1rem 1.15rem;
}

.packageAlert {
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 950;
  margin-bottom: 0.72rem;
  text-align: center;
}

.offerBridge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.38;
  margin: 0 0 1rem;
  padding: 0.82rem;
  text-align: center;
}

.offerBridge strong {
  color: #fff;
  font-weight: 1000;
}

.packageList {
  display: grid;
  gap: 0.72rem;
}

.packageList p {
  align-items: flex-start;
  color: #fff;
  display: flex;
  font-size: 0.95rem;
  font-weight: 760;
  gap: 0.62rem;
  line-height: 1.28;
  margin-bottom: 0;
}

.packageList .iconCheck {
  background: #43a3ff;
  border-color: #43a3ff;
  color: #fff;
  flex-basis: 25px;
  height: 25px;
  margin-top: -1px;
  width: 25px;
}

.valueStack {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 0.1rem;
  margin: 1.18rem 0 0.95rem;
  padding: 0.55rem 0.75rem;
}

.valueStack p {
  align-items: baseline;
  color: #fff;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  line-height: 1.25;
  margin-bottom: 0;
  padding: 0.45rem 0;
}

.valueStack span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 780;
}

.valueStack del {
  color: #ffb0a1;
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 950;
}

.packageCta {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(16, 189, 102, 0.28);
  color: #fff;
  display: flex;
  font-size: 0.95rem;
  font-weight: 1000;
  justify-content: center;
  line-height: 1.1;
  min-height: 58px;
  padding: 0 1rem;
  text-align: center;
  text-transform: uppercase;
}

.secureLine {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.35;
  margin: 0.75rem 0 0;
  text-align: center;
}

.offerCopy {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: 1.25rem;
}

.offerCopy h2 {
  font-size: 2.1rem;
  margin: 0.25rem 0 0.7rem;
}

.offerLead {
  color: #385069;
  font-weight: 780;
}

.deliverables {
  margin: 1.2rem 0;
}

.deliverables span {
  align-items: center;
  background: #f5fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  display: flex;
  font-size: 0.92rem;
  font-weight: 900;
  gap: 0.55rem;
  line-height: 1.25;
  min-height: 52px;
  padding: 0.65rem;
}

.priceBox {
  background: transparent;
  border: 0;
  border-radius: 8px;
  margin: 0.95rem 0 1rem;
  padding: 0;
  text-align: center;
}

.priceBox small {
  color: #ffb0a1;
  display: block;
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: none;
}

.priceBox small del {
  color: #ffb0a1;
}

.priceBox strong {
  color: #26df7d;
  display: block;
  font-size: 3.6rem;
  font-weight: 1000;
  line-height: 1;
  margin: 0.28rem 0 0;
}

.priceBox span {
  color: #fff;
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.faqBand {
  background: #f6fffa;
}

.faqList {
  margin-top: 1.1rem;
}

summary {
  color: var(--blue);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1.25;
  list-style-position: outside;
}

details p {
  margin: 0.72rem 0 0;
}

.finalCta {
  background: linear-gradient(135deg, #eafff2 0%, #fff0a4 100%);
  padding: 3.4rem 1rem 4rem;
  text-align: center;
}

.finalCta h2,
.finalCta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.finalCta h2 {
  margin-bottom: 1.1rem;
}

.finalCta .cta {
  margin-top: 0.7rem;
}

.stickyOffer {
  align-items: center;
  background: rgba(6, 35, 66, 0.96);
  border-radius: 8px;
  bottom: 0.82rem;
  box-shadow: 0 16px 38px rgba(7, 36, 66, 0.34);
  color: #fff;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 0.82fr) minmax(134px, 1fr);
  left: 1rem;
  min-height: 64px;
  padding: 0.56rem;
  position: fixed;
  right: 1rem;
  z-index: 50;
}

.stickyTimer {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-width: 0;
  padding: 0 0.6rem 0 0.25rem;
}

.stickyTimer span {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 0.67rem;
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 0.14rem;
  text-transform: uppercase;
}

.stickyTimer strong {
  color: var(--yellow);
  display: block;
  font-family: var(--font-geist-mono), ui-monospace, monospace;
  font-size: 1.25rem;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
}

.stickyButton {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 0.85rem;
  font-weight: 950;
  justify-content: center;
  line-height: 1.1;
  min-height: 52px;
  padding: 0 0.76rem;
  text-align: center;
}

@media (min-width: 700px) {
  body {
    padding-bottom: 84px;
  }

  .topbar {
    font-size: 0.82rem;
  }

  .nav {
    align-items: center;
    flex-wrap: nowrap;
    padding: 1rem 2rem;
  }

  .nav nav {
    flex: 0 1 auto;
    justify-content: flex-end;
    width: auto;
  }

  .nav a:not(.brand) {
    flex: 0 0 auto;
  }

  .nav a:not(.brand) {
    font-size: 0.88rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .hero {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 2rem 3.2rem;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.58rem;
  }

  .actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta,
  .ghost {
    min-width: 214px;
  }

  .heroMockup {
    margin-top: -2.05rem;
  }

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

  .band,
  .offer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .three,
  .roleGrid,
  .bonusGrid,
  .limitsGrid,
  .testimonialGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offerInner {
    align-items: center;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .offerInner > * {
    min-width: 0;
  }

  .offerVisual {
    order: -1;
  }

  .stickyOffer {
    left: auto;
    margin: 0 auto;
    max-width: 520px;
    right: 1.5rem;
    width: min(520px, calc(100% - 3rem));
  }

  .stickyButton {
    font-size: 0.93rem;
  }
}

@media (min-width: 1020px) {
  .nav {
    padding-left: 4.6rem;
    padding-right: 4.6rem;
  }

  .brand {
    font-size: 1.15rem;
  }

  .hero {
    gap: 1.7rem;
    grid-template-columns: 1fr;
    padding: 2.8rem 4.6rem 4.4rem;
  }

  .heroCopy {
    max-width: 1080px;
  }

  h1 {
    font-size: 4.55rem;
  }

  h2 {
    font-size: 3.08rem;
  }

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

  .band,
  .offer {
    padding: 5.8rem 4.6rem;
  }

  .split {
    align-items: center;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  }

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

  .split > div {
    justify-self: center;
    max-width: 560px;
    width: 100%;
  }

  .split > .photoFrame {
    aspect-ratio: 4 / 3;
    justify-self: center;
    max-width: 560px;
  }

  .processSplit,
  .bonusSplit {
    align-items: start;
  }

  .processSplit {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .processSplit > .photoFrame {
    max-width: 590px;
  }

  .processSplit .timeline {
    max-width: 570px;
  }

  .processSplit .timeline article {
    min-height: 96px;
    padding: 0.92rem 1rem;
  }

  .three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1120px;
  }

  .bonusSplit {
    column-gap: 2.4rem;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .bonusSplit > .photoFrame {
    max-width: 570px;
  }

  .bonusSplit > div {
    max-width: 640px;
  }

  .bonusGrid {
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

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

  .bonusGrid article {
    align-content: start;
    align-items: start;
    gap: 0.82rem;
    grid-template-columns: minmax(0, 1fr);
    min-height: 294px;
    padding: 0.95rem;
    text-align: center;
  }

  .bonusThumb {
    justify-self: center;
    width: 118px;
  }

  .bonusText h3 {
    font-size: 1.06rem;
    margin-bottom: 0.4rem;
  }

  .bonusText p {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .limitsGrid {
    align-items: start;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    max-width: 1060px;
  }

  .offerCopy {
    padding: 2.35rem;
  }

  .offerInner {
    align-items: start;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .offerVisual,
  .packageCard {
    justify-self: center;
    max-width: 600px;
    width: 100%;
  }

  .offerVisual .photoFrame {
    aspect-ratio: 4 / 3;
  }

  .offerPhoto {
    border-color: rgba(255, 255, 255, 0.11);
  }

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