@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

:root {
  --green-950: #003e36;
  --green-900: #045b54;
  --green-800: #007062;
  --green-700: #008f82;
  --green-600: #009989;
  --green-100: #b9dcd5;
  --green-050: #f8fcfb;
  --orange: #f26a21;
  --orange-deep: #c94b09;
  --ink: #102a27;
  --body: #49635e;
  /*
   * LP-wide type roles:
   * IBM Plex Sans JP = headings/body/UI, Noto Sans JP = hero copy,
   * Inter = figures and ordered labels.
   */
  --font-main: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
  --font-display: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-heading: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
  --font-number: "Inter", "Noto Sans JP", sans-serif;
  --weight-display: 900;
  --weight-heading: 700;
  --weight-card-title: 700;
  --type-display: 48px;
  --leading-display: 79px;
  --type-section: 36px;
  --leading-section: 52px;
  --type-card-title: 22px;
  --leading-card-title: 34px;
  --type-body-small: 13px;
  --leading-body-small: 24px;
  /* LP layout regulation: use only this spacing scale for new section work. */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --content-max: 1200px;
  --content-gutter: 32px;
  --section-space: 80px;
  --section-space-compact: 64px;
  --type-heading-lg: clamp(40px, 3.7vw, 56px);
  --type-heading-md: clamp(32px, 3vw, 40px);
  --type-heading-sm: clamp(20px, 1.8vw, 24px);
  --type-callout: clamp(24px, 2.2vw, 30px);
  --type-body: 16px;
  --type-note: 12px;
  --leading-note: 1.7;
  --radius-control: 10px;
  --radius-media: 8px;
  --radius-card: 16px;
  --radius-panel: 24px;
  --shadow-control: 0 5px 0 rgba(16, 42, 39, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-main);
  font-feature-settings: "palt";
  font-kerning: normal;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
}

main {
  width: 100%;
  overflow: hidden;
}

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

img[src$=".svg"] {
  object-fit: contain;
}

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

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

h1 {
  font-family: var(--font-display);
}

h2,
h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-kerning: normal;
  line-break: strict;
  text-wrap: balance;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 68px;
  border: 0;
  background: #fff;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: stretch;
  width: min(1366px, 100%);
  height: 68px;
  margin: 0 auto;
}

.header-logo {
  display: grid;
  align-items: center;
  justify-items: start;
  padding-left: clamp(28px, 4vw, 78px);
}

.header-logo img {
  width: 128px;
  height: 34px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 38px);
  height: 68px;
  padding-inline: clamp(22px, 2.6vw, 36px);
  border: 0;
}

.site-header nav a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.site-header nav a + a {
  border: 0;
}

.header-actions {
  display: grid;
  grid-template-columns: 168px 180px;
  height: 68px;
}

.header-download,
.header-contact {
  display: grid;
  place-items: center;
  height: 68px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.header-download {
  border: 0;
  color: var(--green-700);
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-deep);
  color: #fff;
}

.header-contact span {
  margin-left: 8px;
}

.hero {
  --hero-height: clamp(
    520px,
    min(calc(100vh - 68px), calc(100svh - 68px)),
    640px
  );
  position: relative;
  height: 640px;
  height: var(--hero-height);
  overflow: hidden;
  background: linear-gradient(142.81deg, #003e36 2.25%, #04574c 101.18%);
}

.hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1366px, 100%);
  height: 640px;
  height: var(--hero-height);
  margin: 0 auto;
}

.hero__copy {
  grid-column: 1;
  grid-row: 1;
  padding: 76px 36px 0 clamp(48px, 5.7vw, 78px);
}

.hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(40px, 3.5vw, var(--type-display));
  font-weight: var(--weight-display);
  line-height: 1.64;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-crop {
  position: relative;
  display: block;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  left: -17.42%;
  top: -92.72%;
  width: 138.63%;
  height: 298.23%;
  max-width: none;
}

.hero__logo {
  width: 286px;
  height: 88px;
  margin-top: 26px;
}

.hero__visual {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(190px, 35%);
  height: 640px;
  height: var(--hero-height);
}

.hero__person {
  align-self: end;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero__credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  height: 100%;
  padding: 28px 12px;
  background: #fff;
}

.hero__card {
  width: min(210px, 100%);
  height: auto;
  aspect-ratio: 1205 / 874;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}

.hero__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__awards {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.hero-award {
  position: relative;
  width: 164px;
  height: 164px;
}

.hero-award__base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-award__logo {
  position: absolute;
  left: 31%;
  top: 29%;
  width: 40%;
  height: 40%;
  border-radius: 6px;
  object-fit: contain;
}

.hero-award--indeed .hero-award__logo {
  left: 30%;
  width: 42%;
}

.hero-award span {
  position: absolute;
  left: 23%;
  right: 18%;
  bottom: 20%;
  display: grid;
  place-items: center;
  min-height: 27px;
  border: 1px solid rgba(213, 173, 69, 0.82);
  border-radius: 4px;
  background: rgba(0, 77, 64, 0.92);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.hero__actions {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 230px));
  gap: 16px;
  padding: 0 36px 64px clamp(48px, 5.7vw, 78px);
}

.arrow-button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 45px;
  align-items: center;
  gap: 14px;
  width: 506px;
  min-height: 75px;
  padding: 8px 14px 8px 28px;
  border: 2px solid #e2ca8b;
  border-radius: var(--radius-control);
  background: var(--orange-deep);
  box-shadow: var(--shadow-control);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.arrow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(16, 42, 39, 0.18);
}

.arrow-button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 rgba(16, 42, 39, 0.2);
}

.arrow-button:focus-visible {
  outline: 3px solid rgba(242, 106, 33, 0.35);
  outline-offset: 4px;
}

.arrow-button i {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.arrow-button--white {
  border-color: #fff;
  background: #fff;
  color: var(--green-700);
}

.arrow-button--white i {
  border: 1px solid var(--green-700);
  color: var(--green-700);
}

.hero .arrow-button {
  width: 100%;
  min-height: 56px;
  padding: 7px 10px 7px 18px;
  font-size: 15px;
}

.hero .arrow-button i {
  width: 34px;
  height: 34px;
  font-size: 17px;
}

.problems {
  position: relative;
  height: 723px;
  background: #fff;
}

.problem-eyebrow {
  position: absolute;
  left: 50%;
  top: 40px;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--orange);
  color: var(--orange);
  font-size: 21px;
  font-weight: 700;
  line-height: 24px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.problems h2 {
  position: absolute;
  left: 50%;
  top: 97px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: var(--type-section);
  font-weight: 700;
  line-height: var(--leading-section);
  transform: translateX(-50%);
  white-space: nowrap;
}

.problem-bubble {
  position: absolute;
}

.problem-bubble img {
  width: 100%;
  height: 100%;
}

.problem-bubble--2 img {
  transform: scaleX(-1);
}

.problem-bubble--3 img {
  transform: scaleY(-1);
}

.problem-bubble--4 img {
  transform: scale(-1, -1);
}

.problem-bubble p {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86%;
  color: #102429;
  font-size: 19px;
  font-weight: 700;
  line-height: 31px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.problem-bubble--1 {
  left: calc(50% - 471px);
  top: 210px;
  width: 430px;
  height: 134px;
}

.problem-bubble--2 {
  left: calc(50% + 66px);
  top: 232px;
  width: 400px;
  height: 128px;
}

.problem-bubble--3 {
  left: calc(50% - 428px);
  top: 535px;
  width: 360px;
  height: 154px;
}

.problem-bubble--4 {
  left: calc(50% + 66px);
  top: 535px;
  width: 400px;
  height: 154px;
}

.problem-person {
  position: absolute;
  left: 50%;
  top: 318px;
  display: grid;
  justify-items: center;
  width: 260px;
  transform: translateX(-50%);
}

.problem-person img {
  width: 156px;
  height: 153px;
}

.problem-person strong {
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  color: var(--green-700);
  font-size: 30px;
  line-height: 36px;
  white-space: nowrap;
}

.service {
  position: relative;
  height: 700px;
  background: linear-gradient(95.1deg, #02493f 4.5%, #024c42 75.75%, #05af97 134.5%);
  color: #fff;
}

.service__eyebrow {
  position: absolute;
  left: calc(50% - 8px);
  top: 54px;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 24px;
  font-feature-settings: normal;
  transform: translateX(-50%);
  white-space: nowrap;
}

.service h2 {
  position: absolute;
  left: calc(50% - 8px);
  top: 115px;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 59px;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.service__underline {
  padding-bottom: 0;
  border: 0;
  text-decoration-line: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-skip-ink: none;
}

.service__product {
  position: absolute;
  left: max(44px, calc((100% - 1366px) / 2 + 84px));
  top: 254px;
  width: 531px;
  height: 379px;
  object-fit: contain;
}

.service__lede {
  position: absolute;
  left: calc(50% + 12px);
  top: 280px;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
}

.service-proof {
  position: absolute;
  left: calc(50% + 12px);
  display: grid;
  grid-template-columns: 66px 1fr;
  column-gap: 16px;
  align-items: center;
  width: 560px;
  border-top: 1px solid #4e746d;
}

.service-proof--id {
  top: 394px;
  height: 114px;
}

.service-proof--indeed {
  top: 508px;
  height: 116px;
}

.service-proof img {
  justify-self: center;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-proof--id img {
  width: 44px;
  height: 59px;
}

.service-proof p {
  display: grid;
  gap: 7px;
  font-size: 14px;
  line-height: 20px;
}

.service-proof strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.service-proof--indeed strong {
  font-size: 19px;
  line-height: 27px;
}

.service-proof a {
  text-decoration: underline;
}

.mid-cta {
  position: relative;
  display: grid;
  justify-items: center;
  background: #fff;
  text-align: center;
}

.mid-cta--1 {
  height: 232px;
}

.mid-cta--2 {
  height: 252px;
}

.mid-cta--3 {
  height: 212px;
}

.mid-cta p {
  position: absolute;
  top: 40px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  line-height: 30px;
}

.mid-cta .arrow-button {
  position: absolute;
  top: 117px;
  font-size: 30px;
}

.mid-cta--2 p {
  top: 40px;
}

.mid-cta--2 .arrow-button {
  top: 106px;
}

.mid-cta--3 p {
  top: 26px;
}

.mid-cta--3 .arrow-button {
  top: 103px;
}

.benefits {
  position: relative;
  height: 700px;
  overflow: visible;
  background: #fff;
}

.benefits > h2,
.company-use > h2 {
  position: absolute;
  left: 50%;
  top: 28px;
  font-family: var(--font-heading);
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: var(--leading-section);
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.benefits > h2 strong,
.company-use > h2 span {
  display: block;
  color: var(--orange);
}

.section-rule {
  position: absolute;
  left: 50%;
  top: 162px;
  width: min(1242px, calc(100% - 64px));
  height: 1px;
  background: var(--green-100);
  transform: translateX(-50%);
}

.benefit-grid {
  position: absolute;
  left: 50%;
  top: 208px;
  display: grid;
  grid-template-columns: repeat(3, 390px);
  gap: 36px;
  width: 1242px;
  transform: translateX(-50%);
}

.benefit-card,
.stage-card {
  position: relative;
}

.number-badge {
  position: absolute;
  z-index: 3;
  left: 0;
  top: -24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  border-radius: 3px;
  background: #fff;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
}

.offset-image {
  position: relative;
  width: 390px;
  height: auto;
  aspect-ratio: 16 / 9;
}

.offset-image::after {
  position: absolute;
  z-index: 0;
  left: 8px;
  top: 8px;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--orange);
  content: "";
}

.offset-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.benefit-card--1 .offset-image img,
.benefit-card--2 .offset-image img {
  object-position: center 44%;
}

.benefit-card--3 .offset-image img,
.stage-card--3 .offset-image img {
  object-position: center 38%;
}

.stage-card--1 .offset-image img,
.stage-card--2 .offset-image img {
  object-position: center 50%;
}

.benefit-card h3 {
  display: grid;
  margin-top: 30px;
  font-family: var(--font-heading);
  font-size: var(--type-card-title);
  font-weight: var(--weight-card-title);
  line-height: var(--leading-card-title);
}

.accent-rule {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  background: var(--orange);
}

.benefit-card > p {
  display: grid;
  margin-top: 16px;
  color: #596b73;
  font-size: var(--type-body-small);
  font-weight: 500;
  line-height: var(--leading-body-small);
}

.employee {
  position: relative;
  height: 618px;
  background: #fff;
}

.employee h2 {
  position: absolute;
  left: calc(50% - 620px);
  top: 184px;
  width: 396px;
  font-family: var(--font-heading);
  font-size: var(--type-section);
  font-weight: 700;
  line-height: var(--leading-section);
}

.employee h2 strong,
.employee h2 span {
  display: block;
}

.employee h2 strong {
  color: var(--orange);
}

.price-card {
  position: absolute;
  top: 95px;
  display: grid;
  justify-items: center;
  height: 280px;
  border: 1px solid var(--green-700);
  background: #fff;
  color: var(--green-700);
}

.price-card--meal {
  left: calc(50% - 180px);
  width: 262px;
  border-color: #6e7878;
  color: #6e7878;
}

.price-card--employee {
  left: calc(50% + 108px);
  width: 247px;
}

.price-card--company {
  left: calc(50% + 380px);
  width: 247px;
}

.price-card > span {
  position: absolute;
  top: 22px;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.price-card img {
  position: absolute;
  top: 76px;
  width: 112px;
  height: 106px;
  object-fit: contain;
}

.price-card--employee img {
  width: 100px;
}

.price-card--company img {
  height: 102px;
}

.price-card--meal img {
  top: 73px;
  width: 159px;
  height: 105px;
  border-radius: 4px;
  object-fit: cover;
}

.price-card > strong {
  position: absolute;
  bottom: 13px;
  font-size: 36px;
  line-height: 88px;
}

.price-card small {
  margin-left: 8px;
  font-size: 32px;
  line-height: 46px;
}

.split-arrow {
  position: absolute;
  z-index: 2;
  left: calc(50% + 56px);
  top: 216px;
  width: 92px;
  height: 42px;
  pointer-events: none;
}

.employee__note {
  position: absolute;
  left: calc(50% + 222px);
  top: 389px;
  width: 413px;
  color: #52686d;
  font-size: 13px;
  line-height: 20px;
}

.employee__message {
  position: absolute;
  left: 50%;
  top: 455px;
  width: 848px;
  color: var(--green-700);
  font-size: 37px;
  font-weight: 700;
  line-height: 68px;
  text-align: center;
  transform: translateX(-50%);
}

.employee__message br {
  display: none;
}

.employee__bottom-rule {
  position: absolute;
  left: 50%;
  top: 571px;
  width: 782px;
  height: 1px;
  background: var(--green-100);
  transform: translateX(-50%);
}

.merchants {
  position: relative;
  height: 736px;
  background: #fff;
}

.merchants h2 {
  position: absolute;
  left: 50%;
  top: 25px;
  display: grid;
  color: #10242a;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 84px;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.merchants h2 strong {
  color: var(--orange);
  font-family: var(--font-number);
  font-size: 72px;
}

.merchant-title__line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.24em;
}

.merchant-title__word {
  display: inline-block;
  transform-origin: 50% 72%;
}

.merchant-intro {
  position: absolute;
  left: 50%;
  top: 269px;
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--green-700);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%);
}

.merchant-intro img {
  width: 126px;
  height: 81px;
  object-fit: contain;
}

.merchant-marquee {
  position: absolute;
  overflow: hidden;
  background: #fff;
}

.merchant-marquee--desktop {
  left: calc(50% - 656px);
  top: 439px;
  width: 1435px;
  height: 214px;
  --merchant-gap: 16px;
  --merchant-logo-width: 112px;
  --merchant-logo-height: 86px;
  --merchant-image-width: 88px;
  --merchant-image-height: 62px;
}

.merchant-marquee--mobile {
  display: none;
}

.merchant-row {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.merchant-marquee--desktop .merchant-row {
  height: 86px;
}

.merchant-marquee--desktop .merchant-row:nth-child(1) {
  top: 4px;
}

.merchant-marquee--desktop .merchant-row:nth-child(2) {
  top: 112px;
}

.merchant-track,
.merchant-set {
  display: flex;
  width: max-content;
}

.merchant-track {
  will-change: transform;
}

.merchant-set {
  flex: none;
  gap: var(--merchant-gap);
  padding-right: var(--merchant-gap);
}

.merchant-track--forward {
  animation: merchant-marquee-forward 42s linear infinite;
}

.merchant-track--reverse {
  animation: merchant-marquee-reverse 39s linear infinite;
}

.merchant-logo {
  display: grid;
  flex: 0 0 var(--merchant-logo-width);
  place-items: center;
  width: var(--merchant-logo-width);
  height: var(--merchant-logo-height);
  overflow: hidden;
  border: 1px solid #d4e8e3;
  border-radius: 4px;
  background: #fff;
}

.merchant-logo img {
  width: var(--merchant-image-width);
  height: var(--merchant-image-height);
  object-fit: contain;
}

@keyframes merchant-marquee-forward {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes merchant-marquee-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.merchant-note {
  position: absolute;
  left: 50%;
  top: 680px;
  color: #5c6f74;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.company-use {
  position: relative;
  height: 676px;
  background: #fff;
}

.company-use > h2 {
  top: 23px;
  color: var(--ink);
}

.company-use > h2 span {
  color: var(--orange);
}

.company-use .section-rule {
  top: 162px;
  width: 1222px;
}

.stage-grid {
  position: absolute;
  left: 50%;
  top: 218px;
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 71px;
  width: 1222px;
  transform: translateX(-50%);
}

.stage-card .number-badge {
  top: -24px;
  width: 46px;
  height: 46px;
  font-size: 22px;
}

.stage-card .offset-image {
  width: 360px;
  height: auto;
  aspect-ratio: 16 / 9;
}

.stage-card h3 {
  display: grid;
  min-height: 60px;
  margin: 24px 7px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.stage-card > p {
  display: grid;
  margin: 4px 7px 0;
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.tax-reform {
  position: relative;
  height: 600px;
  background: #fff;
}

.tax-infographic {
  position: absolute;
  left: calc(50% - 611px);
  top: 88px;
  width: 586px;
  height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-900);
  color: #fff;
  text-align: center;
}

.tax-infographic::before {
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--orange);
  content: "";
}

.tax-infographic > p {
  margin-top: 28px;
  color: var(--green-100);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.tax-infographic h3 {
  margin-top: 4px;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 39px;
}

.tax-infographic > i {
  display: block;
  width: 210px;
  height: 3px;
  margin: 0 auto 15px;
  background: var(--orange);
}

.tax-infographic > strong {
  display: grid;
  place-items: center;
  width: 266px;
  height: 34px;
  margin: 0 auto;
  border-radius: 8px;
  background: var(--orange);
  font-size: 16px;
}

.tax-chart {
  position: absolute;
  left: 32px;
  top: 204px;
  width: 522px;
  height: 190px;
  overflow: visible;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.tax-before,
.tax-after {
  position: absolute;
  top: 18px;
  width: 170px;
  height: 146px;
}

.tax-before {
  left: 24px;
}

.tax-after {
  left: 220px;
}

.tax-before small,
.tax-after small {
  display: block;
  color: #374c48;
  font-size: 12px;
  font-weight: 700;
}

.tax-before b,
.tax-after b {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 20px;
}

.tax-after small,
.tax-after b {
  color: var(--orange);
}

.tax-before span,
.tax-after span {
  position: absolute;
  left: 18px;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 96px;
  height: 44px;
  border-radius: 4px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 15px;
  font-weight: 700;
}

.tax-after span {
  left: 24px;
  width: 136px;
  height: 76px;
  background: var(--green-700);
  color: #fff;
  font-size: 18px;
}

.tax-chart > .tax-chart__arrow {
  position: absolute;
  left: 140px;
  top: 91px;
  display: block;
  width: 90px;
  height: 44px;
  color: transparent;
  font-size: 0;
  font-style: normal;
  transform: rotate(-22deg);
  transform-origin: left center;
}

.tax-chart > .tax-chart__arrow::before {
  position: absolute;
  left: 0;
  top: 20px;
  width: 82px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.tax-chart > .tax-chart__arrow::after {
  position: absolute;
  right: 2px;
  top: 14px;
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  content: "";
  transform: rotate(45deg);
}

.tax-up {
  position: absolute;
  right: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
}

.tax-chart > p {
  position: absolute;
  left: 24px;
  bottom: 2px;
  width: 474px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
}

.tax-points {
  --tp-rule-gap: 12px;
  --tp-list-gap: 24px;
  --tp-row-y: 16px;
  --tp-note-gap: 16px;
  --tp-row-min: 70px;
  --tp-indent: 50px;
  position: absolute;
  left: calc(50% + 27px);
  top: 88px;
  width: 584px;
}

.tax-points h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 43px;
}

.tax-points > i {
  display: block;
  width: 88px;
  height: 4px;
  margin-top: var(--tp-rule-gap);
  border-radius: 2px;
  background: var(--orange);
}

.tax-points ul {
  margin: var(--tp-list-gap) 0 0;
  padding: 0;
  list-style: none;
}

.tax-points li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--tp-row-min);
  padding: var(--tp-row-y) 0 var(--tp-row-y) var(--tp-indent);
  border-bottom: 1px solid #d3e4e1;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
}

.tax-points li::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange) url("../assets/check-mark.svg") center / 18px 13px no-repeat;
  content: "";
  transform: translateY(-50%);
}

.tax-points li strong {
  color: var(--orange);
}

.tax-points > p {
  margin-top: var(--tp-note-gap);
  color: #374c48;
  font-size: var(--type-note);
  font-weight: 500;
  line-height: var(--leading-note);
  text-align: left;
}

.third-wage {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 160px;
  padding: 24px max(32px, calc((100% - 1204px) / 2));
  background: var(--green-800);
  color: #fff;
}

.third-wage__icon {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: rgba(205, 238, 232, 0.15);
}

.third-wage__icon img {
  width: 64px;
  height: 64px;
}

.third-wage__copy {
  min-width: 0;
}

.third-wage__copy > p {
  max-width: 1000px;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  text-wrap: balance;
}

.third-wage__copy > p strong {
  color: #ffd31a;
}

.tax-merit {
  position: relative;
  height: 960px;
  overflow: hidden;
  background: #70c7b9;
}

.tax-merit::before {
  position: absolute;
  inset: 34px 3.8%;
  border-radius: 36px;
  background: #fff;
  content: "";
}

.tax-merit > h2 {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 77px;
  width: min(1120px, calc(100% - 120px));
  color: #299d8f;
  font-size: clamp(32px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
  transform: translateX(-50%);
}

.tax-merit > h2 strong {
  color: var(--orange);
}

.money-proof {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 226px;
  width: min(1216px, calc(100% - 32px));
  height: 672px;
  transform: translateX(-50%);
}

.takehome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
}

.takehome-panel h3 {
  display: grid;
  place-items: center;
  height: 85px;
  border-radius: 12px;
  background: #57bdac;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 1200px) {
  .tax-merit > h2 {
    width: min(1240px, calc(100% - 80px));
    font-size: clamp(30px, 2.5vw, 34px);
  }
}

.takehome-chart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 19px;
  height: 482px;
  padding: 0 29px;
  border-bottom: 2px solid #424242;
}

.takehome-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-width: 0;
}

.takehome-column h4 {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 68px;
  color: #142b37;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.takehome-bar {
  width: 100%;
  height: 340px;
  color: #fff;
  text-align: center;
}

.takehome-bar--gross,
.takehome-bar--allowance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.takehome-bar--allowance {
  gap: 3px;
}

.takehome-bar--gross {
  background: #898989;
}

.takehome-bar--allowance {
  background: #f29351;
}

.takehome-bar--gross strong,
.takehome-bar--allowance strong,
.takehome-company-total strong,
.takehome-net strong {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.takehome-bar--allowance > span,
.takehome-company-total span,
.takehome-net span {
  font-size: 16px;
  line-height: 1.35;
}

.takehome-bar--allowance small,
.takehome-company-total small,
.takehome-net small {
  font-size: 19px;
  line-height: 1.35;
}

.takehome-bar--cash-net {
  display: flex;
  flex-direction: column;
  background: #57bdac;
}

.takehome-deduction {
  display: grid;
  flex: 0 0 auto;
  row-gap: 2px;
  place-content: center;
  padding: 6px 3px;
  border: 2px dashed #57bdac;
  background: #e7f5f4;
  color: #57bdac;
}

.takehome-deduction--insurance {
  height: 72px;
}

.takehome-deduction--tax {
  height: 91px;
  border-top: 0;
}

.takehome-deduction span,
.takehome-company-insurance span {
  font-size: 16px;
  line-height: 1.25;
}

.takehome-deduction strong,
.takehome-company-insurance strong {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.takehome-net {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.takehome-bar--company-cash {
  display: flex;
  flex-direction: column;
  height: 422px;
  background: #57bdac;
}

.takehome-company-insurance {
  display: grid;
  flex: 0 0 76px;
  row-gap: 2px;
  place-content: center;
  padding: 5px 3px;
  border: 2px dashed #fff;
}

.takehome-company-total {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.money-proof__note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 32px;
  margin: 24px auto 0;
  max-width: 1130px;
  color: #142b37;
  font-size: var(--type-note);
  font-weight: 500;
  line-height: var(--leading-note);
  text-align: left;
}

.comparison {
  position: relative;
  height: 819px;
  background: #f7faf9;
}

.comparison > h2 {
  position: absolute;
  left: 50%;
  top: 42px;
  display: grid;
  width: 480px;
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  transform: translateX(-50%);
}

.comparison > h2 strong {
  color: var(--orange);
}

.comparison-scroll {
  position: absolute;
  left: 50%;
  top: 210px;
  width: 1312px;
  height: 602px;
  overflow: hidden;
  transform: translateX(-50%);
}

.comparison-table {
  position: relative;
  width: 1312px;
  height: 596px;
  overflow: visible;
}

.comparison-services {
  position: absolute;
  left: 148px;
  top: 0;
  display: grid;
  grid-template-columns: repeat(4, 291px);
  height: 174px;
}

.comparison-service {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  border-top: 1px solid #d2e6e2;
  border-right: 1px solid #d2e6e2;
  border-bottom: 1px solid #d2e6e2;
  background: #fff;
}

.comparison-service:first-child:not(.comparison-service--carelo) {
  border-left: 1px solid #d2e6e2;
}

.comparison-service--carelo {
  border: 3px solid var(--green-700);
  background: #e8faf7;
}

.comparison-service small {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 92px;
  height: 28px;
  background: var(--green-700);
  color: #fff;
  font-size: 11px;
}

.comparison-service b {
  display: grid;
  margin-top: 21px;
  color: #122128;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.comparison-service--carelo b {
  color: #006f64;
}

.comparison-service img {
  width: 244px;
  height: 96px;
  margin-top: 10px;
  border: 1px solid #d2e6e2;
  object-fit: cover;
}

.comparison-body {
  position: absolute;
  left: 0;
  top: 174px;
  width: 1312px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 148px 1164px;
  height: 70px;
}

.comparison-row > strong {
  display: grid;
  place-items: center;
  border-right: 0;
  border-bottom: 1px solid #d2e6e2;
  border-left: 1px solid #d2e6e2;
  background: #273841;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.comparison-row:first-child > strong {
  border-top: 1px solid #d2e6e2;
}

.comparison-cells {
  display: grid;
  grid-template-columns: repeat(4, 291px);
}

.comparison-cell {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-right: 1px solid #d2e6e2;
  border-bottom: 1px solid #d2e6e2;
  background: #fff;
}

.comparison-cell--0 {
  border-right: 3px solid var(--green-700);
  border-left: 3px solid var(--green-700);
  background: #e8faf7;
}

.comparison-row:last-child .comparison-cell--0 {
  border-bottom: 3px solid var(--green-700);
}

.comparison-cell b {
  color: #9ac646;
  font-size: 30px;
  text-align: center;
}

.comparison-cell--0 b {
  color: var(--green-700);
}

.comparison-cell--mark-excellent b {
  color: var(--green-700);
}

.comparison-cell--mark-good b {
  color: #e25d14;
}

.comparison-cell--mark-fair b {
  color: #9ac646;
}

.comparison-cell--mark-poor b {
  color: #1f5da1;
}

.comparison-cell span {
  display: grid;
  font-size: 13px;
  line-height: 20px;
}

.comparison-cell--0 span {
  color: #006f64;
  font-weight: 700;
}

.comparison-cell i {
  font-style: normal;
}

.outcomes {
  position: relative;
  height: 751px;
  background: var(--green-050);
}

.outcomes__bridge {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 303px;
  padding-top: 41px;
  background: #fff url("../assets/outcomes-bridge.svg") center bottom / 100% 100% no-repeat;
  text-align: center;
}

.outcomes__bridge p {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1020px, calc(100% - 48px));
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.outcomes__bridge p::before,
.outcomes__bridge p::after {
  flex: 1;
  height: 2px;
  background: var(--green-700);
  content: "";
}

.outcomes__bridge p span {
  flex: 0 0 auto;
}

.outcomes__bridge h2 {
  width: min(1040px, calc(100% - 64px));
  margin-top: 22px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 47px;
  text-wrap: balance;
}

.outcomes__bridge strong {
  margin-top: 18px;
  font-size: 30px;
  line-height: 42px;
}

.outcome-grid {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 205px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 430px));
  justify-content: center;
  width: 100%;
  height: 546px;
  padding-top: 136px;
  background: var(--green-050);
}

.outcome-card {
  height: 384px;
  padding: 0 34px;
  border-right: 1px solid var(--green-100);
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-card header {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  grid-template-rows: 64px 36px;
  row-gap: 30px;
  align-items: center;
}

.outcome-card header > span {
  color: var(--green-700);
  font-family: var(--font-number);
  font-size: 42px;
  font-weight: 300;
}

.outcome-card header img {
  grid-column: 2;
  justify-self: center;
  width: 64px;
  height: 64px;
}

.outcome-card h3 {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 300px);
  color: var(--green-700);
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 32px;
  text-align: center;
}

.outcome-card > p {
  min-height: 100px;
  margin-top: 26px;
  color: #536b70;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 26px;
}

.outcome-card > div {
  display: grid;
  gap: 8px;
  min-height: 102px;
  margin-top: 6px;
  place-content: center;
  border: 1px solid #8dccc7;
  background: #fff;
  text-align: center;
}

.outcome-card > div strong {
  font-family: var(--font-heading);
  font-size: 15px;
}

.outcome-card > div span {
  color: var(--green-700);
  font-family: var(--font-heading);
  font-size: 13px;
}

.flow {
  position: relative;
  height: 540px;
  background: #fff;
}

.flow > h2 {
  position: absolute;
  left: 50%;
  top: 41px;
  font-family: var(--font-heading);
  font-size: var(--type-section);
  font-weight: var(--weight-heading);
  line-height: var(--leading-section);
  transform: translateX(-50%);
  white-space: nowrap;
}

.flow > p {
  position: absolute;
  left: 50%;
  top: 135px;
  color: var(--body);
  font-size: 16px;
  line-height: 28px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.flow-grid {
  position: absolute;
  left: 50%;
  top: 256px;
  display: grid;
  grid-template-columns: repeat(6, 198px);
  width: 1190px;
  border-top: 2px solid var(--green-100);
  transform: translateX(-50%);
}

.flow-step {
  position: relative;
  display: block;
  padding-top: 28px;
}

.flow-step::before {
  position: absolute;
  left: 0;
  top: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.flow-step > span {
  position: absolute;
  left: 0;
  top: -53px;
  color: var(--orange);
  font-family: var(--font-number);
  font-size: 18px;
  font-weight: 700;
}

.flow-step img {
  width: 46px;
  height: 46px;
}

.flow-step h3 {
  width: 168px;
  height: 46px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 23px;
}

.flow-step p {
  width: 168px;
  margin-top: 5px;
  color: var(--body);
  font-size: 13px;
  line-height: 19.5px;
}

.faq {
  position: relative;
  height: 588px;
  background: #fff;
}

.faq > h2 {
  position: absolute;
  left: 50%;
  top: 34px;
  font-size: 36px;
  font-weight: 700;
  line-height: 63px;
  transform: translateX(-50%);
}

.faq-list {
  position: absolute;
  left: 50%;
  top: 130px;
  display: grid;
  gap: 19px;
  width: 850px;
  transform: translateX(-50%);
}

.faq details {
  min-height: 52px;
  border: 1px solid #bdddda;
  background: #fff;
}

.faq summary {
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  color: var(--green-600);
  font-size: 17px;
  font-weight: 900;
}

.faq summary b {
  font-size: 15px;
  font-weight: 900;
}

.faq summary::after {
  color: #00796f;
  content: "+";
  font-size: 28px;
  text-align: center;
}

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

.faq details > p {
  padding: 4px 64px 18px 62px;
  color: var(--body);
  font-size: 13px;
  line-height: 22px;
}

.contact-section {
  position: relative;
  height: 1305px;
  background: #fff;
}

.form-shell {
  position: absolute;
  left: 50%;
  top: 435px;
  width: 766px;
  height: 707px;
  overflow: hidden;
  background: #d9d9d9;
  transform: translateX(-50%);
}

.form-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
}

.form-placeholder strong,
.form-placeholder span,
.form-placeholder small {
  display: block;
}

.form-placeholder small {
  font-size: 19px;
}

.form-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.form-shell > a {
  position: absolute;
  right: 12px;
  bottom: 8px;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-700);
  font-size: 11px;
  text-decoration: underline;
}

@media (max-width: 1199px) {
  :root {
    --type-display: 28px;
    --leading-display: 44px;
    --type-section: 27px;
    --leading-section: 38px;
    --type-card-title: 17px;
    --leading-card-title: 24px;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .site-header {
    height: 50px;
  }

  .header-logo {
    left: 16px;
    top: 11px;
    width: 102px;
    height: 28px;
  }

  .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .site-header nav {
    display: none;
  }

  .header-download,
  .header-contact {
    top: 0;
    height: 50px;
    font-size: 13px;
  }

  .header-download {
    left: 35.897%;
    width: 32.051%;
  }

  .header-contact {
    left: 68.205%;
    width: 31.795%;
  }

  .hero {
    height: 548px;
  }

  .hero__stage {
    width: min(390px, 100%);
    height: 548px;
  }

  .hero__stage::after {
    display: none;
  }

  .hero h1 {
    left: 20px;
    top: 18px;
    font-size: var(--type-display);
    line-height: var(--leading-display);
  }

  .hero__logo {
    left: 20px;
    top: 170px;
    width: 173.65px;
    height: 53.76px;
  }

  .hero__person {
    left: 45.641%;
    top: 152px;
    width: 51.554%;
    height: 248px;
  }

  .hero__card {
    left: 68.718%;
    top: 221.6px;
    width: 28.444%;
    height: 63.23px;
  }

  .hero-award {
    top: 298px;
    width: 96.4px;
    height: 96.4px;
  }

  .hero-award--id {
    left: 46.154%;
  }

  .hero-award--indeed {
    left: 71.795%;
  }

  .hero-award__logo {
    left: 31.1%;
    top: 29%;
    width: 40%;
    height: 40%;
  }

  .hero-award span {
    left: 23.65%;
    right: 18%;
    bottom: 22.8%;
    min-height: 15.6px;
    border-width: 0.5px;
    border-radius: 3px;
    font-size: 4.9px;
  }

  .hero .arrow-button {
    left: 24px;
    width: calc(100% - 48px);
    height: 54px;
  }

  .hero__download {
    top: 410px !important;
  }

  .hero__consult {
    top: 476px !important;
  }

  .hero .arrow-button > span {
    padding-right: 36px;
  }

  .hero .arrow-button i {
    right: 29px;
  }

  .problems {
    height: 820px;
  }

  .problem-eyebrow {
    top: 28px;
    padding-bottom: 6px;
    border-bottom-width: 2.55px;
    font-size: 17.85px;
    line-height: 20.4px;
  }

  .problems h2 {
    top: 78px;
    font-size: 24.48px;
    line-height: 35.36px;
  }

  .problem-bubble--1 {
    left: 21px;
    top: 132px;
    width: calc(100% - 42px);
    height: 108.54px;
  }

  .problem-bubble--2 {
    left: 20px;
    top: 246px;
    width: calc(100% - 40px);
    height: 112px;
  }

  .problem-bubble--3 {
    left: 20px;
    top: 500px;
    width: calc(100% - 40.8px);
    height: 149.38px;
  }

  .problem-bubble--4 {
    left: 20px;
    top: 662px;
    width: calc(100% - 40px);
    height: 134.75px;
  }

  .problem-bubble p {
    font-size: 16px;
    line-height: 27px;
  }

  .problem-bubble--1 p {
    font-size: 15.39px;
    line-height: 25.11px;
  }

  .problem-bubble--3 p {
    font-size: 18.43px;
    line-height: 30.07px;
  }

  .problem-person {
    top: 366px;
    width: 250px;
  }

  .problem-person img {
    width: 85.8px;
    height: 84.15px;
  }

  .problem-person strong {
    margin-top: 1px;
    font-size: 22.5px;
    line-height: 27px;
  }

  .service {
    height: 720px;
  }

  .service__eyebrow {
    left: 50%;
    top: 26px;
    font-size: 25px;
    line-height: 32px;
  }

  .service h2 {
    left: 50%;
    top: 92px;
    padding-bottom: 0;
    border: 0;
    font-size: 23.5px;
    line-height: 38px;
  }

  .service h2::before {
    position: absolute;
    left: 50%;
    top: -22px;
    width: 300px;
    height: 3px;
    background: var(--orange);
    content: "";
    transform: translateX(-50%);
  }

  .service__product {
    left: 22.43px;
    top: 182px;
    width: calc(100% - 44.86px);
    height: 246.35px;
  }

  .service__lede {
    left: 27px;
    top: 446px;
    font-size: 14px;
    line-height: 24px;
  }

  .service-proof {
    left: 20px;
    width: calc(100% - 40px);
    grid-template-columns: 50px 1fr;
  }

  .service-proof--id {
    top: 532px;
    height: 83px;
  }

  .service-proof--indeed {
    top: 615px;
    height: 91px;
    grid-template-columns: 60px 1fr;
  }

  .service-proof--id img {
    width: 33px;
    height: 44.25px;
  }

  .service-proof--indeed img {
    width: 48px;
    height: 48px;
  }

  .service-proof p {
    gap: 2px;
    font-size: 14px;
    line-height: 20px;
  }

  .service-proof strong {
    font-size: 15px;
    line-height: 22px;
  }

  .service-proof--indeed strong {
    font-size: 15px;
    line-height: 22px;
    white-space: nowrap;
  }

  .mid-cta--1,
  .mid-cta--2 {
    height: 165px;
  }

  .mid-cta--3 {
    height: 150px;
  }

  .mid-cta p,
  .mid-cta--2 p {
    top: 20px;
    font-size: 18px;
    line-height: 27px;
  }

  .mid-cta .arrow-button,
  .mid-cta--2 .arrow-button {
    top: 88px;
    width: calc(100% - 56px);
    height: 49.5px;
    font-size: 19.8px;
  }

  .mid-cta--3 p {
    top: 10px;
  }

  .mid-cta--3 .arrow-button {
    top: 76px;
    width: calc(100% - 32px);
    height: 53px;
    font-size: 21.225px;
  }

  .mid-cta .arrow-button > span {
    padding-right: 38px;
  }

  .mid-cta .arrow-button i {
    right: 23px;
    top: 10px;
    width: 30px;
    height: 29px;
    font-size: 24px;
  }

  .benefits {
    height: auto;
    padding: 18px 16px 48px;
  }

  .benefits > h2,
  .company-use > h2 {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    font-size: var(--type-section);
    line-height: var(--leading-section);
    transform: none;
    white-space: normal;
  }

  .section-rule {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 22px;
    transform: none;
  }

  .benefit-grid,
  .stage-grid {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    width: 100%;
    margin-top: 28px;
    transform: none;
  }

  .benefit-card,
  .stage-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .number-badge {
    top: -8px;
    width: 31.2px;
    height: 31.2px;
    border-width: 1.3px;
    font-size: 14.95px;
  }

  .benefit-card .offset-image,
  .stage-card .offset-image {
    width: calc(100% - 4px);
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .offset-image::after {
    left: 4px;
    top: 4px;
  }

  .benefit-card h3 {
    margin-top: 12px;
    font-size: var(--type-card-title);
    line-height: var(--leading-card-title);
  }

  .accent-rule {
    width: 40px;
    margin-top: 8px;
  }

  .benefit-card > p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 18.5px;
  }

  .employee {
    height: 650px;
  }

  .employee h2 {
    left: 50%;
    top: 22px;
    width: 297px;
    font-size: var(--type-section);
    line-height: var(--leading-section);
    text-align: center;
    transform: translateX(-50%);
  }

  .price-card {
    top: 143px;
    height: 122px;
  }

  .price-card--meal {
    left: 16px;
    width: 114.23px;
  }

  .price-card--employee {
    left: 157px;
    width: 104.87px;
  }

  .price-card--company {
    left: 271px;
    width: 103px;
  }

  .price-card > span {
    top: 5px;
    width: 100%;
    font-size: 10px;
    line-height: 15px;
  }

  .price-card--meal > span {
    top: 7px;
    font-size: 13px;
  }

  .price-card img {
    top: 32px;
    width: 47px;
    height: 47px;
  }

  .price-card--employee img,
  .price-card--company img {
    width: 47px;
    height: 47px;
  }

  .price-card--meal img {
    top: 31px;
    width: 69.2px;
    height: 45.6px;
  }

  .price-card > strong {
    bottom: -8px;
    font-size: 23.4px;
    line-height: 57px;
  }

  .price-card small {
    margin-left: 5px;
    font-size: 20px;
  }

  .split-arrow {
    left: 128px;
    top: 196px;
    width: 40.1px;
    height: 18.3px;
  }

  .employee__note {
    left: 32px;
    top: 299px;
    width: calc(100% - 60px);
    font-size: 13px;
    line-height: 19px;
  }

  .employee__message {
    top: 347px;
    width: calc(100% - 32px);
    font-size: 22.5px;
    line-height: 32px;
  }

  .employee__message br {
    display: block;
  }

  .employee__bottom-rule {
    top: 630px;
    width: calc(100% - 60px);
  }

  .merchants {
    height: 404px;
  }

  .merchants h2 {
    top: 9px;
    font-size: 23.4px;
    line-height: 50.4px;
  }

  .merchants h2 strong {
    font-size: 55px;
  }

  .merchant-intro {
    top: 130px;
    gap: 13px;
    font-size: 14px;
  }

  .merchant-intro img {
    width: 69.3px;
    height: 44.55px;
  }

  .merchant-marquee--desktop {
    display: none;
  }

  .merchant-marquee--mobile {
    left: 16px;
    top: 188px;
    display: grid;
    grid-template-rows: repeat(2, 50.74px);
    gap: 7px;
    width: calc(100% - 32px);
    height: 108.48px;
    --merchant-gap: 6.9px;
    --merchant-logo-width: calc((min(calc(100vw - 32px), 736px) - 27.6px) / 5);
    --merchant-logo-height: 50.74px;
    --merchant-image-width: calc(var(--merchant-logo-width) - 14.16px);
    --merchant-image-height: 36.58px;
  }

  .merchant-marquee--mobile .merchant-row {
    position: relative;
    height: 50.74px;
  }

  .merchant-marquee--mobile .merchant-track--forward {
    animation-duration: 28s;
  }

  .merchant-marquee--mobile .merchant-track--reverse {
    animation-duration: 31s;
  }

  .merchant-note {
    top: 316px;
    width: calc(100% - 32px);
    font-size: 13.5px;
    line-height: 22px;
    white-space: normal;
  }

  .company-use {
    height: auto;
    padding: 18px 16px 48px;
  }

  .company-use > h2 {
    width: 100%;
  }

  .company-use .section-rule {
    width: 100%;
  }

  .stage-card .number-badge {
    top: -8px;
    width: 29.9px;
    height: 29.9px;
    font-size: 14.3px;
  }

  .stage-card h3 {
    min-height: 0;
    margin: 12px 0 0;
    font-size: 16.5px;
    line-height: 23px;
  }

  .stage-card > p {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 18.5px;
  }

  .tax-reform {
    height: 700px;
  }

  .tax-infographic {
    left: 16px;
    top: 20px;
    width: calc(100% - 32.54px);
    height: 256.2px;
    border-radius: 4.88px;
  }

  .tax-infographic::before {
    height: 4.88px;
  }

  .tax-infographic > p {
    margin-top: 17px;
    font-size: 9.76px;
    line-height: 14.64px;
  }

  .tax-infographic h3 {
    margin-top: 2px;
    font-size: 16.47px;
    line-height: 21.96px;
  }

  .tax-infographic > i {
    width: 128.1px;
    height: 1.83px;
    margin-bottom: 9px;
  }

  .tax-infographic > strong {
    width: 162.26px;
    height: 20.74px;
    border-radius: 4.88px;
    font-size: 9.76px;
  }

  .tax-chart {
    left: 19.52px;
    top: 124.44px;
    width: calc(100% - 39.04px);
    height: 115.9px;
  }

  .tax-before,
  .tax-after {
    top: 10.98px;
    width: 106px;
    height: 89px;
  }

  .tax-before {
    left: 15px;
  }

  .tax-after {
    left: 130px;
  }

  .tax-before small,
  .tax-after small {
    font-size: 7.93px;
  }

  .tax-before b {
    font-size: 12.81px;
  }

  .tax-after b {
    font-size: 16.47px;
  }

  .tax-before span {
    left: 10px;
    width: 58.56px;
    height: 26.84px;
    font-size: 9.15px;
  }

  .tax-after span {
    left: 0;
    width: 82.96px;
    height: 46.36px;
    font-size: 12.2px;
  }

  .tax-chart > em {
    left: 89px;
    top: 47px;
    font-size: 19.5px;
  }

  .tax-up {
    right: 14px;
    top: 14.6px;
    width: 56.12px;
    height: 56.12px;
    font-size: 12.2px;
    line-height: 12.8px;
  }

  .tax-chart > p {
    left: 12px;
    bottom: 1px;
    width: calc(100% - 24px);
    font-size: 8.54px;
  }

  .tax-points {
    --tp-rule-gap: 8px;
    --tp-list-gap: 16px;
    --tp-row-y: 12px;
    --tp-note-gap: 12px;
    --tp-row-min: 64px;
    --tp-indent: 42px;
    left: 16px;
    top: 298px;
    width: calc(100% - 32px);
  }

  .tax-points h2 {
    font-size: 25px;
    line-height: 34px;
  }

  .tax-points > i {
    margin-top: var(--tp-rule-gap);
  }

  .tax-points ul {
    margin-top: var(--tp-list-gap);
  }

  .tax-points li {
    min-height: var(--tp-row-min);
    padding: var(--tp-row-y) 0 var(--tp-row-y) var(--tp-indent);
    font-size: 15.5px;
    line-height: 23px;
  }

  .tax-points li::before {
    width: 28.9px;
    height: 28.9px;
    font-size: 17px;
  }

  .tax-points > p {
    margin-top: var(--tp-note-gap);
    font-size: 11.5px;
    line-height: 18px;
    text-align: left;
  }

  .tax-merit {
    height: 1140px;
  }

  .tax-merit::before {
    inset: 12px 10px;
    border-radius: 22px;
  }

  .tax-merit > h2 {
    top: 42px;
    width: calc(100% - 52px);
    font-size: 18px;
    line-height: 30px;
  }

  .money-proof {
    left: 16px;
    top: 168px;
    width: calc(100% - 32px);
    height: 934px;
    transform: none;
  }

  .takehome-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .takehome-panel h3 {
    height: 52px;
    border-radius: 7px;
    font-size: 18px;
    line-height: 24px;
  }

  .takehome-chart {
    gap: 6px;
    height: 350px;
    padding: 0 6px;
    border-bottom-width: 1px;
  }

  .takehome-column h4 {
    top: 28px;
    min-height: 54px;
    font-size: 12px;
    line-height: 17px;
  }

  .takehome-bar {
    height: 230px;
  }

  .takehome-bar--gross strong,
  .takehome-bar--allowance strong,
  .takehome-company-total strong,
  .takehome-net strong {
    font-size: 16.5px;
  }

  .takehome-bar--allowance > span,
  .takehome-company-total span,
  .takehome-net span {
    font-size: 11px;
  }

  .takehome-bar--allowance small,
  .takehome-company-total small,
  .takehome-net small {
    font-size: 13px;
  }

  .takehome-deduction {
    border-width: 1px;
  }

  .takehome-deduction span,
  .takehome-company-insurance span {
    font-size: 9px;
  }

  .takehome-deduction strong,
  .takehome-company-insurance strong {
    font-size: 13.5px;
  }

  .takehome-bar--company-cash {
    height: 262px;
  }

  .takehome-company-insurance {
    flex-basis: 32px;
    border-width: 1px;
  }

  .money-proof__note {
    gap: 5px;
    margin-top: 19px;
    font-size: 9px;
    line-height: 15px;
    text-align: left;
  }

  .comparison {
    height: 720px;
    background: #fff;
  }

  .comparison > h2 {
    top: 24px;
    width: calc(100% - 32px);
    font-size: 24px;
    line-height: 33px;
  }

  .comparison-scroll {
    left: 0;
    top: 104px;
    width: 100%;
    height: 594px;
    padding: 0 16px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-color: var(--green-700) #dcebe8;
    scrollbar-width: thin;
    touch-action: pan-x pan-y;
    transform: none;
  }

  .comparison-scroll:focus-visible {
    outline: 3px solid rgba(0, 143, 130, 0.28);
    outline-offset: -3px;
  }

  .comparison-table {
    width: 1000px;
    height: 558px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison-services {
    left: 120px;
    display: grid;
    grid-template-columns: repeat(4, 220px);
    width: 880px;
    height: 150px;
  }

  .comparison-service {
    border-right: 1px solid #d2e6e2;
  }

  .comparison-service--carelo {
    border: 2px solid var(--green-700);
  }

  .comparison-service small {
    width: 66px;
    height: 20px;
    font-size: 10px;
  }

  .comparison-service b {
    margin-top: 10px;
    font-size: 15px;
    line-height: 20px;
  }

  .comparison-service img {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    width: 188px;
    height: 84px;
    margin: 0;
  }

  .comparison-body {
    top: 150px;
    width: 1000px;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 120px 880px;
    width: 1000px;
    height: 68px;
  }

  .comparison-row > strong {
    position: sticky;
    z-index: 5;
    left: 0;
    height: 68px;
    font-size: 12px;
    line-height: 17px;
  }

  .comparison-cells {
    display: grid;
    grid-template-columns: repeat(4, 220px);
  }

  .comparison-cell {
    grid-template-columns: 44px 1fr;
    height: 68px;
    border-right: 1px solid #d2e6e2;
    border-bottom: 1px solid #d2e6e2;
    background: #fff;
  }

  .comparison-cell:nth-child(3) {
    background: #f8fafa;
  }

  .comparison-cell--0 {
    border-right: 2px solid var(--green-700);
    border-left: 2px solid var(--green-700);
    background: #e8faf7;
  }

  .comparison-cell b {
    font-size: 25px;
  }

  .comparison-cell span {
    padding-right: 7px;
    font-size: 12px;
    line-height: 17px;
  }

  .outcomes {
    height: 1080px;
  }

  .outcomes__bridge {
    height: 230px;
    padding-top: 33px;
  }

  .outcomes__bridge::before,
  .outcomes__bridge::after {
    top: 49px;
    width: 80px;
  }

  .outcomes__bridge::before {
    left: 16px;
  }

  .outcomes__bridge::after {
    right: 16px;
  }

  .outcomes__bridge p {
    font-size: 14px;
    line-height: 20px;
  }

  .outcomes__bridge h2 {
    width: calc(100% - 32px);
    margin-top: 7px;
    font-size: 21px;
    line-height: 28px;
  }

  .outcomes__bridge strong {
    margin-top: 0;
    font-size: 22px;
    line-height: 30px;
  }

  .outcome-grid {
    top: 195px;
    display: block;
    height: 885px;
    padding: 0;
  }

  .outcome-card {
    position: absolute;
    left: 16px;
    width: calc(100% - 32px);
    height: 252px;
    padding: 0;
    border: 0;
  }

  .outcome-card:nth-child(1) {
    top: 60px;
  }

  .outcome-card:nth-child(2) {
    top: 330px;
  }

  .outcome-card:nth-child(3) {
    top: 600px;
  }

  .outcome-card::after {
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100%;
    height: 1px;
    background: var(--green-100);
    content: "";
  }

  .outcome-card:last-child::after {
    display: none;
  }

  .outcome-card header {
    grid-template-columns: 51px 42px 1fr;
    grid-template-rows: 42px;
    row-gap: 0;
  }

  .outcome-card header > span {
    font-size: 30px;
  }

  .outcome-card header img {
    width: 42px;
    height: 42px;
  }

  .outcome-card h3 {
    grid-column: auto;
    width: auto;
    font-size: 18px;
    line-height: 26px;
  }

  .outcome-card > p {
    min-height: 72px;
    margin-top: 23px;
    font-size: 13.5px;
    line-height: 24px;
  }

  .outcome-card > div {
    min-height: 72px;
    gap: 8px;
    margin-top: 0;
  }

  .outcome-card > div strong {
    font-size: 13px;
  }

  .outcome-card > div span {
    font-size: 11.5px;
  }

  .flow {
    height: 540px;
  }

  .flow > h2 {
    top: 22px;
    width: calc(100% - 32px);
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    white-space: normal;
  }

  .flow > p {
    top: 68px;
    width: calc(100% - 32px);
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    white-space: normal;
  }

  .flow-grid {
    left: 16px;
    top: 164px;
    grid-template-columns: repeat(2, calc((100% - 4px) / 2));
    grid-template-rows: repeat(3, 125px);
    column-gap: 4px;
    width: calc(100% - 32px);
    border: 0;
    transform: none;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 45px 38px;
    padding-top: 13px;
    border-top: 2px solid var(--green-100);
  }

  .flow-step::before {
    top: -8px;
  }

  .flow-step > span {
    top: -35px;
    font-size: 14px;
  }

  .flow-step img {
    width: 40px;
    height: 40px;
  }

  .flow-step h3 {
    width: auto;
    height: auto;
    margin-top: 0;
    font-size: 13px;
    line-height: 19px;
  }

  .flow-step p {
    grid-column: 2;
    width: auto;
    margin-top: 0;
    font-size: 11.5px;
    line-height: 17px;
  }

  .faq {
    height: 440px;
  }

  .faq > h2 {
    top: 16px;
    width: calc(100% - 32px);
    font-size: 26px;
    line-height: 42px;
    text-align: center;
  }

  .faq-list {
    left: 16px;
    top: 72px;
    gap: 3px;
    width: calc(100% - 32px);
    transform: none;
  }

  .faq details {
    min-height: 56px;
    max-height: none;
  }

  .faq summary {
    grid-template-columns: 34px 1fr 24px;
    min-height: 54px;
    padding: 0 13px;
  }

  .faq summary span {
    font-size: 14px;
  }

  .faq summary b {
    font-size: 13.5px;
    line-height: 19px;
  }

  .faq summary::after {
    font-size: 22px;
  }

  .faq details > p {
    padding: 2px 20px 16px 47px;
    font-size: 12px;
    line-height: 19px;
  }

  .contact-section {
    height: 355px;
  }

  .form-shell {
    left: 16px;
    top: 12px;
    width: calc(100% - 32px);
    height: 331px;
    transform: none;
  }

  .form-placeholder {
    font-size: 14px;
    line-height: 24px;
  }

  .form-placeholder small {
    font-size: 12px;
  }
}

/* Keep the live formrun form in normal flow and remove the old fixed mockup gap. */
.contact-section.contact-section--embedded {
  height: auto;
  min-height: 1305px;
  padding: 88px 0 96px;
}

.form-shell.form-shell--embedded {
  position: relative;
  left: auto;
  top: auto;
  width: min(766px, calc(100% - 32px));
  height: auto;
  min-height: 1400px;
  margin: 0 auto;
  overflow: visible;
  background: #fff;
  transform: none;
}

.form-shell--embedded .formrun-embed {
  min-height: 1400px;
}

.form-shell--embedded .formrun-embed iframe {
  display: block;
  width: 100%;
  height: 1400px;
  border: 0;
}

.form-shell.form-shell--embedded > a {
  position: static;
  display: block;
  width: fit-content;
  margin: 12px 0 0 auto;
  padding: 6px 10px;
}

@media (max-width: 1199px) {
  .contact-section.contact-section--embedded {
    min-height: 355px;
    padding: 48px 16px 64px;
  }

  .form-shell.form-shell--embedded {
    width: min(736px, 100%);
    min-height: 1400px;
  }

  .form-shell--embedded .formrun-embed {
    min-height: 1400px;
  }
}

/*
 * Keep the proven mobile composition for intermediate widths, while widening
 * content cards into a centered tablet column. The desktop artwork resumes at
 * 1200px, where its fixed visual relationships have enough horizontal room.
 */
@media (min-width: 768px) and (max-width: 1199px) {
  .problem-bubble--1,
  .problem-bubble--2,
  .problem-bubble--3,
  .problem-bubble--4 {
    left: 50%;
    width: min(736px, calc(100% - 40px));
    transform: translateX(-50%);
  }

  .service__product,
  .service__lede,
  .service-proof {
    left: 50%;
    width: min(720px, calc(100% - 44px));
    transform: translateX(-50%);
  }

  .merchant-marquee--mobile,
  .tax-infographic,
  .tax-points,
  .outcome-card,
  .flow-grid,
  .faq-list,
  .form-shell {
    left: 50%;
    width: min(736px, calc(100% - 32px));
    transform: translateX(-50%);
  }

  .benefit-grid,
  .stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
    width: min(736px, 100%);
    margin-inline: auto;
  }

  .benefit-card:nth-child(3),
  .stage-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 28px) / 2);
  }

  .price-card--meal {
    left: calc(50% - 179px);
  }

  .price-card--employee {
    left: calc(50% - 38px);
  }

  .price-card--company {
    left: calc(50% + 76px);
  }

  .split-arrow {
    left: calc(50% - 67px);
  }

  .employee__note {
    left: 50%;
    width: min(704px, calc(100% - 64px));
    transform: translateX(-50%);
  }

  .merchant-note {
    width: min(736px, calc(100% - 32px));
  }

  .money-proof {
    left: 50%;
    width: min(736px, 100%);
    transform: translateX(-50%);
  }

  .tax-merit {
    height: 760px;
  }

  .tax-merit::before {
    inset: 22px 16px;
    border-radius: 28px;
  }

  .tax-merit > h2 {
    top: 52px;
    width: min(720px, calc(100% - 64px));
    font-size: 26px;
    line-height: 40px;
  }

  .money-proof {
    top: 178px;
    height: 522px;
  }

  .takehome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .takehome-panel h3 {
    height: 58px;
    font-size: 18px;
  }

  .takehome-chart {
    gap: 7px;
    height: 340px;
    padding-inline: 7px;
  }

  .takehome-column h4 {
    top: 20px;
  }

  .money-proof__note {
    margin-top: 18px;
    font-size: 9px;
    line-height: 14px;
    text-align: center;
  }
}

@media (max-width: 365px) {
  .header-download,
  .header-contact {
    font-size: 11px;
  }

  .hero h1 {
    left: 18px;
    font-size: 26px;
    line-height: 42px;
  }

  .hero__logo {
    left: 18px;
  }

  .hero .arrow-button {
    left: 18px;
    width: calc(100% - 36px);
  }

  .problem-bubble p {
    font-size: 14.5px;
  }

  .problem-bubble--3 p {
    font-size: 16px;
  }

  .service-proof--indeed strong {
    white-space: normal;
  }

  .service-proof--indeed p {
    font-size: 12.5px;
    line-height: 18px;
  }

  .service-proof--indeed strong {
    font-size: 13.5px;
    line-height: 18px;
  }

  .price-card--employee {
    left: 40.2%;
  }

  .price-card--company {
    left: 69.5%;
  }

}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .merchant-row {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .merchant-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Final accessibility guardrails: keep supporting labels readable and footer
   links comfortably tappable regardless of the active responsive preset. */
.hero-award span,
.takehome-deduction span,
.takehome-company-insurance span,
.comparison-service small {
  font-size: 11px !important;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.form-consent a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* 2026-08-10 release 2065: header, merchant rhythm and SP FV contract.
   This block is deliberately authoritative so older breakpoint experiments
   cannot reintroduce overflow, fixed-height whitespace or CTA misalignment. */
@media (max-width: 1180px) {
  .site-header__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 56px !important;
    align-items: center;
    width: 100% !important;
    max-width: none !important;
    height: var(--header-height) !important;
    padding: 0 !important;
  }

  .site-header > .site-header__inner > nav[aria-label="ページ内ナビゲーション"],
  .site-header > .site-header__inner > .header-actions {
    display: none !important;
  }

  .header-logo {
    display: flex !important;
    align-items: center;
    justify-self: start;
    min-width: 0;
    min-height: var(--header-height);
    padding: 0 clamp(16px, 3vw, 28px) !important;
    overflow: visible;
  }

  .header-logo img {
    display: block;
    width: clamp(104px, 15vw, 124px) !important;
    height: auto !important;
    object-fit: contain;
  }

  .mobile-navigation {
    display: block !important;
    justify-self: end;
  }
}

@media (min-width: 1181px) {
  .site-header,
  .site-header__inner,
  .site-header nav,
  .header-actions,
  .header-download,
  .header-contact {
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
  }

  .site-header__inner {
    display: grid !important;
    grid-template-columns: minmax(150px, 1fr) auto 400px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header-logo {
    display: flex !important;
    align-items: center;
    min-width: 0;
    padding-left: clamp(28px, 4vw, 72px) !important;
  }

  .site-header > .site-header__inner > nav[aria-label="ページ内ナビゲーション"] {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .site-header > .site-header__inner > nav[aria-label="ページ内ナビゲーション"] > a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
    padding: 0 clamp(16px, 1.5vw, 24px) !important;
    border: 0 !important;
  }

  .header-actions {
    display: grid !important;
    grid-template-columns: 220px 180px !important;
    align-items: stretch;
  }

  .header-download,
  .header-contact {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 16px !important;
    border: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header-download,
  .header-contact,
  .mid-cta > .arrow-button,
  .mid-cta > .arrow-button > i {
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease !important;
  }

  .header-download:hover {
    border-color: transparent !important;
    background: var(--green-800) !important;
    color: #fff !important;
  }

  .header-contact:hover {
    background: #ff6a1a !important;
    color: #fff !important;
  }

  .header-contact:hover span {
    transform: translateX(7px) !important;
  }

  .mid-cta > .arrow-button:hover {
    background: #ad3c04 !important;
    color: #fff !important;
    transform: scale(1.012) !important;
  }

  .mid-cta > .arrow-button:hover > i {
    transform: translateY(-50%) translateX(6px) !important;
  }
}

.merchants {
  position: relative;
  display: grid !important;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: clamp(18px, 2vw, 28px);
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  padding: clamp(42px, 5vw, 68px) 0 clamp(36px, 4vw, 56px) !important;
  overflow: hidden;
  background: #fff !important;
}

.merchants > h2,
.merchants > .merchant-marquee,
.merchants > .merchant-note {
  position: static !important;
  inset: auto !important;
  transform: none !important;
}

.merchants > h2 {
  width: min(1120px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
}

.merchants > .merchant-marquee {
  width: 100% !important;
  margin: 0 !important;
}

.merchants > .merchant-note {
  z-index: 2;
  width: min(720px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center;
}

.mid-cta,
.mid-cta--1,
.mid-cta--2,
.mid-cta--3 {
  position: relative;
  display: grid !important;
  align-content: center;
  justify-items: center;
  gap: 16px;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  padding: clamp(34px, 4vw, 52px) var(--content-gutter) !important;
}

.mid-cta > p,
.mid-cta > .arrow-button {
  position: static !important;
  inset: auto !important;
  transform: none;
}

.mid-cta > p {
  margin: 0 !important;
}

.mid-cta > .arrow-button {
  margin: 0 auto !important;
}

@media (max-width: 767px) {
  :root {
    --header-height: 56px;
  }

  .hero,
  .hero__stage {
    width: 100% !important;
    height: 710px !important;
    min-height: 710px !important;
    overflow: hidden !important;
  }

  .hero__stage {
    position: relative;
    display: block !important;
  }

  .hero__visual {
    position: absolute !important;
    z-index: 1;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .hero__person {
    top: auto !important;
    right: clamp(-172px, -34vw, -118px) !important;
    bottom: 0 !important;
    left: auto !important;
    width: auto !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: right bottom !important;
  }

  .hero__visual::after {
    position: absolute !important;
    z-index: 2;
    inset: 0 !important;
    background: linear-gradient(90deg, rgba(0, 70, 60, 0.97) 0%, rgba(0, 70, 60, 0.86) 43%, rgba(0, 70, 60, 0.36) 72%, rgba(0, 70, 60, 0.08) 100%) !important;
    content: "";
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .hero__copy {
    position: absolute !important;
    z-index: 5;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    pointer-events: none;
  }

  .hero h1 {
    position: absolute !important;
    top: 238px !important;
    left: 18px !important;
    width: calc(100% - 36px) !important;
    margin: 0 !important;
    color: #fff;
    font-size: clamp(29px, 7.8vw, 34px) !important;
    font-weight: 900;
    line-height: 1.46 !important;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .hero__logo {
    position: absolute !important;
    top: 24px !important;
    left: 18px !important;
    display: block !important;
    width: 150px !important;
    height: 48px !important;
    margin: 0 !important;
  }

  .hero__visual > .hero__card {
    position: absolute !important;
    z-index: 5;
    top: 96px !important;
    left: 20px !important;
    right: auto !important;
    width: 118px !important;
    transform: none !important;
  }

  .hero__awards {
    position: absolute !important;
    z-index: 6;
    right: auto !important;
    bottom: 136px !important;
    left: 50% !important;
    display: flex !important;
    gap: 16px !important;
    width: auto !important;
    overflow: visible !important;
    transform: translateX(-50%) !important;
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: 108px !important;
    min-height: 108px !important;
    padding: 9px 7px !important;
  }

  .hero__actions {
    position: absolute !important;
    z-index: 8;
    right: 18px !important;
    bottom: 16px !important;
    left: 18px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero .arrow-button {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 6px 8px 6px 20px !important;
    font-size: 15px !important;
  }

  .merchants {
    gap: 18px;
    padding: 36px 0 32px !important;
  }

  .merchants h2 {
    width: calc(100% - 24px) !important;
    font-size: clamp(13px, 3.6vw, 15px) !important;
    line-height: 1.45 !important;
  }

  .merchant-marquee--desktop {
    display: none !important;
  }

  .merchant-marquee--mobile {
    display: block !important;
  }

  .merchants > .merchant-note {
    width: calc(100% - 32px) !important;
  }

  .mid-cta,
  .mid-cta--1,
  .mid-cta--2,
  .mid-cta--3 {
    gap: 14px;
    padding: 30px 16px 36px !important;
  }
}

/* 2026-08-06 stakeholder follow-up. */
.merchant-title__line {
  flex-wrap: nowrap;
}

.merchant-marquee--desktop {
  top: 222px;
}

.faq {
  height: auto;
  min-height: 0;
  padding: var(--space-12) var(--content-gutter) var(--space-16);
  overflow: visible;
}

.faq > h2 {
  position: static;
  width: min(850px, 100%);
  margin: 0 auto var(--space-8);
  font-size: var(--type-section);
  line-height: var(--leading-section);
  text-align: center;
  transform: none;
}

.faq-list {
  position: static;
  display: grid;
  gap: var(--space-3);
  width: min(850px, 100%);
  margin: 0 auto;
  transform: none;
}

.faq details {
  height: auto;
  max-height: none;
  overflow: visible;
}

.faq details > p {
  height: auto;
  max-height: none;
  overflow: visible;
}

@media (hover: hover) and (pointer: fine) {
  .header-download,
  .header-contact,
  .arrow-button,
  .arrow-button > i,
  .sp-sticky-cta > i {
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .header-download:hover,
  .arrow-button--white:hover {
    border-color: var(--green-800);
    background: var(--green-050);
    color: var(--green-950);
  }

  .header-contact:hover,
  .arrow-button--orange:hover,
  .mid-cta .arrow-button--orange:hover {
    background: #a83b05;
    color: #fff;
  }

  .arrow-button:hover > i,
  .header-contact:hover span {
    transform: translateX(3px);
  }
}

@media (max-width: 767px) {
  .merchants h2 {
    top: var(--space-4);
    width: calc(100% - 24px);
    font-size: clamp(12px, 3.55vw, 14px);
    line-height: 1.4;
  }

  .merchants h2 strong {
    font-size: clamp(28px, 8.2vw, 32px);
  }

  .merchant-title__line {
    gap: 0.15em;
  }

  .merchant-marquee--mobile {
    top: 96px;
  }

  .merchant-note {
    top: 238px;
  }

  .merchants {
    height: 360px;
    min-height: 360px;
  }

  .faq {
    height: auto;
    min-height: 0;
    padding: var(--space-8) var(--space-4) var(--space-12);
  }

  .faq > h2 {
    width: 100%;
    margin-bottom: var(--space-6);
    font-size: 26px;
    line-height: 1.4;
  }

  .faq-list {
    width: 100%;
    gap: var(--space-2);
  }

  .faq summary {
    min-height: 56px;
  }

  .faq details > p {
    padding: var(--space-2) var(--space-4) var(--space-4) 47px;
    font-size: 12px;
    line-height: 1.75;
  }
}

.service-proof a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (max-width: 767px) {
  .hero .hero-award span,
  .employee .price-card > span,
  .tax-infographic > p,
  .tax-infographic > strong,
  .tax-before small,
  .tax-after small,
  .tax-chart .tax-before span,
  .tax-chart .tax-after span,
  .takehome-deduction span,
  .takehome-company-insurance span {
    font-size: 11px !important;
  }
}

/*
 * Responsive implementation regulations (2026-08 audit)
 * Keep typography, spacing and controls role-based across every breakpoint.
 */
.hero .arrow-button {
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
}

.arrow-button > span {
  padding: 0;
  white-space: nowrap;
}

.service-proof--indeed strong {
  white-space: normal;
}

.employee__note {
  font-size: var(--type-note);
  font-weight: 500;
  line-height: var(--leading-note);
}

@media (max-width: 1199px) {
  :root {
    --section-space: 64px;
    --section-space-compact: 48px;
    --type-note: 11px;
  }

  .site-header {
    height: 64px;
    border: 0;
  }

  .site-header__inner {
    grid-template-columns: minmax(180px, 1fr) minmax(480px, 1.7fr);
    height: 63px;
  }

  .header-logo {
    position: static;
    width: auto;
    height: 63px;
    padding-left: 32px;
  }

  .header-logo img {
    width: 118px;
    height: 32px;
  }

  .site-header nav {
    display: none;
  }

  .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 63px;
    border: 0;
  }

  .header-download,
  .header-contact {
    position: static;
    width: auto;
    height: 63px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    --hero-height: clamp(
      500px,
      min(calc(100vh - 64px), calc(100svh - 64px)),
      580px
    );
    height: 580px;
    height: var(--hero-height);
  }

  .hero__stage {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    grid-template-rows: minmax(0, 1fr) auto;
    width: 100%;
    height: 580px;
    height: var(--hero-height);
  }

  .hero__stage::after {
    display: none;
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 48px 24px 0 40px;
  }

  .hero h1 {
    position: static;
    font-size: clamp(30px, 3.7vw, 36px);
    line-height: 1.55;
  }

  .hero__logo {
    position: relative;
    inset: auto;
    width: 220px;
    height: 68px;
    margin-top: 20px;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 1 / 3;
    grid-template-columns: minmax(0, 60%) minmax(135px, 40%);
    width: 100%;
    height: 100%;
  }

  .hero__person {
    position: static;
    width: 100%;
    height: 100%;
  }

  .hero__credentials {
    height: 100%;
    gap: 10px;
    padding: 22px 8px;
  }

  .hero__card {
    position: static;
    width: min(118px, 100%);
    height: auto;
  }

  .hero__awards {
    gap: 0;
  }

  .hero-award {
    top: auto;
    width: 104px;
    height: 104px;
  }

  .hero-award--id,
  .hero-award--indeed {
    left: auto;
  }

  .hero-award span {
    min-height: 17px;
    border-radius: 3px;
    font-size: 7px;
  }

  .hero__actions {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: minmax(0, 300px);
    gap: 12px;
    padding: 0 24px 32px 40px;
  }

  .hero .arrow-button {
    position: relative;
    left: auto;
    top: auto !important;
    width: 100%;
    min-height: 54px;
  }

  .mid-cta .arrow-button,
  .mid-cta--2 .arrow-button,
  .mid-cta--3 .arrow-button {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 10px;
    width: min(506px, calc(100% - 40px));
    height: 56px;
    min-height: 56px;
    padding: 7px 12px 7px 20px;
    font-size: 18px;
  }

  .mid-cta .arrow-button i,
  .mid-cta--2 .arrow-button i,
  .mid-cta--3 .arrow-button i {
    right: auto;
    top: auto;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .tax-reform {
    display: grid;
    gap: 24px;
    height: auto;
    padding: 32px 16px var(--section-space);
  }

  .tax-infographic,
  .tax-points {
    position: relative;
    inset: auto;
    margin-inline: auto;
    transform: none;
  }

  .tax-points {
    width: min(736px, 100%);
  }

  .tax-points > p,
  .money-proof__note {
    font-size: var(--type-note);
    line-height: var(--leading-note);
  }

  .third-wage {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
    min-height: 148px;
    height: auto;
    padding: 24px max(16px, calc((100% - 736px) / 2));
  }

  .third-wage__icon {
    position: static;
    width: 64px;
    height: 64px;
  }

  .third-wage__icon img {
    width: 40px;
    height: 40px;
  }

  .third-wage__copy > p {
    font-size: clamp(18px, 2.7vw, 24px);
    line-height: 1.55;
  }

  .comparison-table {
    border: 0;
  }

  .outcomes__bridge::before,
  .outcomes__bridge::after {
    content: none;
  }

  .outcomes__bridge p {
    gap: 16px;
    width: calc(100% - 32px);
  }

  .outcomes__bridge strong {
    margin-top: 8px;
  }

  .outcome-card header img {
    grid-column: 2;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tax-infographic {
    width: 586px;
    height: 420px;
  }

  .tax-infographic::before {
    height: 8px;
  }

  .tax-infographic > p {
    margin-top: 28px;
    font-size: 16px;
    line-height: 24px;
  }

  .tax-infographic h3 {
    margin-top: 4px;
    font-size: 27px;
    line-height: 39px;
  }

  .tax-infographic > i {
    width: 210px;
    height: 3px;
    margin-bottom: 15px;
  }

  .tax-infographic > strong {
    width: 266px;
    height: 34px;
    border-radius: 8px;
    font-size: 16px;
  }

  .tax-chart {
    left: 32px;
    top: 204px;
    width: 522px;
    height: 190px;
  }

  .tax-before,
  .tax-after {
    top: 18px;
    width: 170px;
    height: 146px;
  }

  .tax-before {
    left: 24px;
  }

  .tax-after {
    left: 220px;
  }

  .tax-before small,
  .tax-after small {
    font-size: 12px;
  }

  .tax-before b,
  .tax-after b {
    font-size: 20px;
  }

  .tax-before span {
    left: 18px;
    width: 96px;
    height: 44px;
    font-size: 15px;
  }

  .tax-after span {
    left: 24px;
    width: 136px;
    height: 76px;
    font-size: 18px;
  }

  .tax-chart > .tax-chart__arrow {
    left: 140px;
    top: 91px;
    width: 90px;
    height: 44px;
    font-size: 0;
  }

  .tax-up {
    right: 24px;
    top: 24px;
    width: 92px;
    height: 92px;
    font-size: 20px;
    line-height: 21px;
  }

  .tax-chart > p {
    left: 24px;
    bottom: 2px;
    width: 474px;
    font-size: 13px;
  }

  .tax-merit {
    height: 820px;
  }

  .money-proof__note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 22px;
  }
}

@media (max-width: 767px) {
  :root {
    --type-display: 27px;
    --leading-display: 42px;
    --type-section: 26px;
    --leading-section: 38px;
    --type-card-title: 18px;
    --leading-card-title: 27px;
    --type-body-small: 13px;
    --leading-body-small: 22px;
    --type-note: 10.5px;
    --section-space: 56px;
  }

  .site-header {
    height: 56px;
  }

  .site-header__inner {
    grid-template-columns: clamp(96px, 30vw, 112px) minmax(0, 1fr);
    height: 55px;
  }

  .header-logo {
    height: 55px;
    padding-left: 12px;
  }

  .header-logo img {
    width: 90px;
    height: 26px;
  }

  .header-actions {
    height: 55px;
  }

  .header-download,
  .header-contact {
    height: 55px;
    padding-inline: 5px;
    font-size: clamp(11px, 3.1vw, 13px);
  }

  .header-contact span {
    margin-left: 3px;
  }

  .hero {
    --hero-height: clamp(
      512px,
      min(calc(100vh - 56px), calc(100svh - 56px)),
      620px
    );
    height: 620px;
    height: var(--hero-height);
  }

  .hero__stage {
    grid-template-columns: 1fr;
    grid-template-rows: 34% 37% 29%;
    width: 100%;
    height: 620px;
    height: var(--hero-height);
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 18px 18px 0;
  }

  .hero h1 {
    font-size: var(--type-display);
    line-height: var(--leading-display);
  }

  .hero__logo {
    width: 162px;
    height: 50px;
    margin-top: 7px;
  }

  .hero__visual {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    grid-template-rows: 100%;
    width: 100%;
    height: 100%;
  }

  .hero__person {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
  }

  .hero__credentials {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    gap: 6px;
    height: 100%;
    padding: 8px 4px 8px 14px;
    background: transparent;
  }

  .hero__card {
    width: min(124px, 100%);
    aspect-ratio: 1129 / 893;
  }

  .hero__awards {
    grid-template-columns: repeat(2, 68px);
    gap: 2px;
  }

  .hero-award {
    width: 68px;
    height: 68px;
  }

  .hero-award span {
    min-height: 18px;
    border-width: 0.5px;
    font-size: 5.5px;
  }

  .hero__actions {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    padding: 14px 18px 20px;
    justify-items: center;
  }

  .hero .arrow-button {
    width: min(100%, 360px);
    min-height: 54px;
    font-size: 15px;
  }

  .hero .arrow-button i {
    width: 34px;
    height: 34px;
  }

  .service-proof--indeed strong {
    white-space: normal;
  }

  .tax-before,
  .tax-after {
    width: 100px;
  }

  .tax-before {
    left: 10px;
  }

  .tax-after {
    left: 136px;
  }

  .tax-chart > .tax-chart__arrow {
    left: 82px;
    top: 52px;
    width: 54px;
    height: 28px;
    font-size: 0;
  }

  .tax-chart > .tax-chart__arrow::before {
    top: 13px;
    width: 49px;
    height: 2px;
  }

  .tax-chart > .tax-chart__arrow::after {
    top: 9px;
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .third-wage {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    min-height: 148px;
    padding: 24px 16px;
  }

  .third-wage__icon {
    align-self: center;
    width: 54px;
    height: 54px;
  }

  .third-wage__icon img {
    width: 34px;
    height: 34px;
  }

  .third-wage__copy > p {
    font-size: 15.5px;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .tax-merit {
    height: 1280px;
  }

  .tax-merit > h2 {
    top: 40px;
    width: calc(100% - 44px);
    font-size: 18px;
    line-height: 1.65;
  }

  .money-proof {
    top: 176px;
  }

  .takehome-column h4 {
    padding-inline: 3px;
    white-space: normal;
  }

  .takehome-deduction--insurance {
    height: 64px;
  }

  .takehome-deduction--tax {
    height: 72px;
  }

  .takehome-company-insurance {
    flex-basis: 60px;
  }

  .money-proof__note {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 18px;
    font-size: var(--type-note);
    line-height: var(--leading-note);
  }

  .outcomes__bridge p {
    gap: 10px;
  }

  .outcomes__bridge p::before,
  .outcomes__bridge p::after {
    min-width: 0;
  }

  .outcomes__bridge strong {
    margin-top: 8px;
  }

  .outcome-card header {
    grid-template-columns: 51px 42px minmax(0, 1fr);
  }

  .outcome-card header img {
    grid-column: 2;
  }

  .outcome-card h3 {
    grid-column: 3;
    justify-self: stretch;
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero__stage {
    grid-template-rows: 36% 31% 33%;
  }

  .hero__copy {
    padding-top: 12px;
  }

  .hero h1 {
    font-size: 25.5px;
    line-height: 39.5px;
  }

  .hero__logo {
    width: 150px;
    height: 46px;
    margin-top: 4px;
  }

  .hero__credentials {
    gap: 4px;
  }

  .hero__card {
    width: min(116px, 100%);
  }

  .hero__awards {
    grid-template-columns: repeat(2, 62px);
  }

  .hero-award {
    width: 62px;
    height: 62px;
  }

  .hero__actions {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .hero .arrow-button {
    min-height: 50px;
  }
}

/*
 * 2026-08-04 layout regulation v2
 * Every responsive card uses the same 8px rhythm:
 * section 64/80, card inset 24/32, content gap 16/24, micro gap 8.
 * The declarations below are the final contracts for the problem, price,
 * comparison and outcome sections; no leftover height is distributed.
 */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mobile-navigation,
.comparison-mobile-scroll {
  display: none;
}

@media (min-width: 1200px) {
  /* Keep the graph headings and panels inside the pale inset frame. */
  .tax-merit > h2,
  .money-proof {
    width: min(1216px, calc(92.4% - 32px));
    max-width: calc(92.4% - 32px);
  }

  /* Headline text may not intrude into the first price card. */
  .employee__inner {
    grid-template-columns: minmax(380px, 400px) minmax(0, 1fr);
    column-gap: 48px;
  }

  .hero__copy {
    /* Centre the copy block optically between the FV top and the CTA row. */
    padding-top: clamp(86px, 7.2vw, 96px);
  }
}

@media (min-width: 1200px) and (max-height: 700px) {
  .hero__copy {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  :root {
    --content-gutter: 16px;
    --section-space: 64px;
    --section-space-compact: 48px;
  }

  /* Mobile header: logo + one reliable disclosure control. */
  .site-header,
  .site-header__inner {
    height: 56px;
  }

  .site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    align-items: center;
    width: 100%;
  }

  .header-logo {
    width: auto;
    height: 56px;
    padding-left: 16px;
  }

  .header-logo img {
    width: 104px;
    height: 28px;
  }

  .site-header > .site-header__inner > nav,
  .header-actions {
    display: none;
  }

  .mobile-navigation {
    position: relative;
    z-index: 40;
    display: block;
    grid-column: 2;
    justify-self: end;
    width: 56px;
    height: 56px;
  }

  .mobile-navigation > summary {
    display: grid;
    width: 56px;
    height: 56px;
    cursor: pointer;
    list-style: none;
    place-items: center;
    color: var(--green-950);
    touch-action: manipulation;
  }

  .mobile-navigation > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation__icon {
    display: grid;
    gap: 5px;
    width: 24px;
  }

  .mobile-navigation__icon i {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(2) {
    opacity: 0;
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .mobile-navigation__panel {
    position: absolute;
    top: 56px;
    right: 0;
    display: grid;
    gap: 0;
    width: min(320px, 100vw);
    height: auto;
    padding: 8px 16px 16px;
    border-top: 1px solid rgba(0, 62, 54, 0.12);
    background: #fff;
    box-shadow: 0 16px 30px rgba(0, 62, 54, 0.18);
  }

  .site-header .mobile-navigation__panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 62, 54, 0.12);
    font-size: 14px;
    font-weight: 700;
  }

.site-header .mobile-navigation__panel .mobile-navigation__contact {
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    border: 0;
    border-radius: var(--radius-control);
    background: var(--orange-deep);
    color: #fff;
  }

  /* Section headings share the section centre line. */
  .problems h2,
  #problem-title {
    left: 50%;
    width: calc(100% - 32px);
    margin-inline: auto;
    text-align: center;
    transform: translateX(-50%);
  }

  /* Tax comparison never exceeds the pale frame at any mobile width. */
  .tax-merit,
  .money-proof,
  .takehome-grid,
  .takehome-panel,
  .takehome-chart {
    max-width: 100%;
  }

  .tax-merit > h2 {
    left: 50%;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    transform: translateX(-50%);
  }

  /* Mobile comparison is one complete service card per swipe. */
  .comparison {
    height: auto;
    min-height: 0;
    padding: var(--section-space) 0 var(--section-space-compact);
    overflow: hidden;
  }

  .comparison > h2 {
    position: static;
    width: calc(100% - 32px);
    margin: 0 auto 24px;
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.35;
    text-align: center;
    transform: none;
  }

  .comparison-scroll {
    display: none;
  }

  .comparison-mobile-scroll {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 0 16px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .comparison-mobile-card {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .comparison-mobile-card {
    flex: 0 0 calc(100vw - 32px);
    max-width: 560px;
    overflow: hidden;
    border: 2px solid var(--green-100);
    border-radius: var(--radius-card);
    background: #fff;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .comparison-mobile-card--carelo {
    border-color: var(--green-700);
    background: #e8f8f4;
  }

  .comparison-mobile-card > header {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 220px;
    padding: 24px;
    place-items: center;
  }

  .comparison-mobile-card > header small {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 18px;
    border-radius: 0 14px 0 10px;
    background: var(--green-700);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }

  .comparison-mobile-card > header b {
    display: grid;
    font-size: 22px;
    line-height: 1.35;
    text-align: center;
  }

  .comparison-mobile-card > header img {
    width: min(100%, 360px);
    height: 132px;
    border-radius: var(--radius-media);
    object-fit: cover;
  }

  .comparison-mobile-card dl,
  .comparison-mobile-card dt,
  .comparison-mobile-card dd {
    margin: 0;
  }

  .comparison-mobile-row {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 84px;
    border-top: 1px solid var(--green-100);
  }

  .comparison-mobile-row dt {
    display: grid;
    padding: 12px 8px;
    place-items: center;
    background: #263c43;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .comparison-mobile-value {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 12px 14px;
  }

  .comparison-mobile-value > b {
    font-family: var(--font-number);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }

  .comparison-mobile-value--excellent > b {
    color: var(--green-700);
  }

  .comparison-mobile-value--good > b {
    color: var(--orange);
  }

  .comparison-mobile-value--fair > b {
    color: #8dbb32;
  }

  .comparison-mobile-value--poor > b {
    color: #1c62a8;
  }

  .comparison-mobile-value > span {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .comparison-mobile-value i {
    font-size: 13px;
    font-style: normal;
    line-height: 1.55;
  }

  /* Outcome card rhythm: no space-between stretching and no clipped artwork. */
  .outcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .outcome-card,
  .outcome-card:nth-child(1),
  .outcome-card:nth-child(2),
  .outcome-card:nth-child(3) {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 16px;
    align-content: start;
    width: 100%;
    min-height: 0;
    padding: 24px;
    overflow: visible;
    border-radius: var(--radius-panel);
    transform: none;
  }

  .outcome-card header {
    display: grid;
    grid-template-columns: 48px minmax(72px, 1fr) 48px;
    grid-template-areas:
      "number icon spacer"
      "title title title";
    gap: 16px 8px;
    align-items: center;
  }

  .outcome-card .number-badge {
    grid-area: number;
    align-self: start;
    justify-self: start;
  }

  .outcome-card header img {
    grid-area: icon;
    justify-self: center;
    width: 72px;
    height: 72px;
    max-width: none;
    object-fit: contain;
    overflow: visible;
  }

  .outcome-card h3 {
    grid-area: title;
    width: 100%;
    margin: 0;
    font-size: clamp(20px, 5.8vw, 24px);
    line-height: 1.45;
    text-align: center;
  }

  .outcome-card > p.outcome-card__body {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .outcome-card > p.outcome-card__proof {
    display: grid;
    min-height: 72px;
    margin: 0;
    padding: 16px;
    border-radius: var(--radius-card);
    place-items: center;
    text-align: center;
  }

  .employee__message {
    margin-top: 24px;
  }
}

/* Keep all supporting labels legible across the tablet range. */
.hero-award span,
.takehome-deduction span,
.takehome-company-insurance span,
.comparison-service small {
  font-size: max(11px, 0.6875rem);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (min-width: 1200px) and (max-height: 700px) {
  .hero__copy {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(39px, 3.25vw, 44px);
    line-height: 1.5;
  }

  .hero__logo {
    width: 260px;
    height: 80px;
    margin-top: 14px;
  }

  .hero__credentials {
    gap: 8px;
    padding-block: 18px;
  }

  .hero__card {
    width: min(190px, 100%);
  }

  .hero-award {
    width: 148px;
    height: 148px;
  }

  .hero__actions {
    padding-bottom: 36px;
  }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .problem-person {
    width: 320px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    width: calc(100% - 48px);
  }

  .benefit-card .offset-image {
    width: calc(100% - 8px);
  }

  .employee h2 {
    left: 32px;
  }

  .price-card--meal {
    left: calc(50% - 200px);
  }

  .price-card--employee {
    left: calc(50% + 88px);
  }

  .price-card--company {
    left: calc(50% + 350px);
  }

  .split-arrow {
    left: calc(50% + 36px);
  }

  .employee__note {
    left: calc(50% + 185px);
  }

  .company-use .section-rule,
  .stage-grid {
    width: calc(100% - 48px);
  }

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

  .stage-card .offset-image {
    width: calc(100% - 8px);
  }

  .tax-infographic {
    left: max(16px, calc(50% - 611px));
  }

  .tax-points {
    left: min(calc(50% + 27px), calc(100% - 592px));
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .comparison {
    height: 802px;
  }

  .comparison-scroll {
    top: 166px;
    width: calc(100% - 32px);
    height: 620px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-color: var(--green-700) #dcebe8;
    scrollbar-width: thin;
  }
}

@media (max-width: 365px) {
  .site-header__inner {
    grid-template-columns: clamp(94px, 30vw, 108px) minmax(0, 1fr);
  }

  .header-logo {
    padding-left: 10px;
  }

  .header-logo img {
    width: 84px;
  }

  .header-download,
  .header-contact {
    font-size: 10.5px;
  }

  .hero__copy {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 41px;
  }

  .hero__actions {
    padding-inline: 16px;
  }
}

/*
 * CTA optical-alignment correction.
 * Keep the label on the button's true center line and anchor the trailing
 * affordance independently. The arrow is drawn geometrically so font metrics
 * cannot push it below the centre of its circle.
 */
.arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 74px;
}

.arrow-button > span {
  display: block;
  width: 100%;
  padding: 0;
  line-height: 1.45;
  text-align: center;
  transform: translateY(1px);
}

.arrow-button i {
  position: absolute;
  right: 14px;
  top: 50%;
  flex: 0 0 auto;
  font-size: 0;
  transform: translateY(-50%);
}

.arrow-button i::before,
.arrow-button i::after {
  position: absolute;
  content: "";
}

.arrow-button i::before {
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.arrow-button i::after {
  left: calc(50% + 4px);
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero .arrow-button {
  padding-inline: 54px;
}

.hero .arrow-button i {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .mid-cta .arrow-button,
  .mid-cta--2 .arrow-button,
  .mid-cta--3 .arrow-button {
    padding-inline: 58px;
  }

  .mid-cta .arrow-button i,
  .mid-cta--2 .arrow-button i,
  .mid-cta--3 .arrow-button i {
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Merchant motion system: staged reveal + two-depth logo flow. */
.merchants {
  isolation: isolate;
}

.merchants::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 28px;
  width: min(720px, 82vw);
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 153, 137, 0.11), transparent 68%);
  content: "";
  filter: blur(10px);
  transform: translateX(-50%);
  animation: merchant-aura 5.8s ease-in-out infinite alternate;
}

.merchants h2 strong {
  display: inline-block;
  text-shadow: 0 10px 28px rgba(242, 106, 33, 0.16);
  transform: none;
}

.merchant-intro img {
  filter: drop-shadow(0 12px 18px rgba(0, 80, 70, 0.12));
  animation: merchant-id-float 4.2s ease-in-out infinite;
}

.merchant-marquee {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.merchant-logo {
  position: relative;
  box-shadow: 0 7px 20px rgba(0, 75, 67, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.merchant-logo::after {
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  content: "";
  transform: skewX(-18deg) translateX(0);
  animation: merchant-logo-sheen 6.4s ease-in-out infinite;
}

.merchant-row:nth-child(2) .merchant-logo::after {
  animation-delay: -3.2s;
}

.merchant-logo:hover {
  border-color: rgba(0, 143, 130, 0.48);
  box-shadow: 0 12px 28px rgba(0, 75, 67, 0.14);
  transform: none;
}

@supports (animation-timeline: view()) {
  .merchant-title__word,
  .merchant-intro,
  .merchant-marquee,
  .merchant-note {
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timeline: view();
  }

  .merchant-title__word--1 {
    animation-name: merchant-word-reveal;
    animation-range: entry 4% cover 20%;
  }

  .merchant-title__word--2 {
    animation-name: merchant-word-reveal;
    animation-range: entry 9% cover 25%;
  }

  .merchant-title__word--3 {
    animation-name: merchant-word-reveal;
    animation-range: entry 14% cover 30%;
  }

  .merchant-title__word--4 {
    animation-name: merchant-word-reveal;
    animation-range: entry 19% cover 35%;
  }

  .merchant-intro {
    animation-name: merchant-intro-reveal;
    animation-range: entry 16% cover 36%;
  }

  .merchant-marquee {
    animation-name: merchant-marquee-reveal;
    animation-range: entry 20% cover 42%;
  }

  .merchant-note {
    animation-name: merchant-marquee-reveal;
    animation-range: entry 28% cover 48%;
  }
}

@keyframes merchant-word-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-0.9em);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes merchant-intro-reveal {
  from {
    opacity: 0;
    transform: translate(-50%, 18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes merchant-marquee-reveal {
  from {
    opacity: 0;
    filter: blur(5px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes merchant-id-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes merchant-aura {
  from {
    opacity: 0.45;
    transform: translateX(-50%) scale(0.92);
  }

  to {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes merchant-logo-sheen {
  0%,
  72% {
    opacity: 0;
    transform: skewX(-18deg) translateX(0);
  }

  78% {
    opacity: 0.7;
  }

  92%,
  100% {
    opacity: 0;
    transform: skewX(-18deg) translateX(520%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .merchants::before,
  .merchants h2 strong,
  .merchant-intro,
  .merchant-intro img,
  .merchant-marquee,
  .merchant-logo::after,
  .merchant-note {
    opacity: 1 !important;
    animation: none !important;
    filter: none !important;
  }

  .merchant-title__word {
    transform: none;
  }

  .merchant-intro {
    transform: translateX(-50%);
  }
}

/* Figma CTA affordance: centred label with a font-independent chevron. */
.arrow-button {
  border: 0;
}

.hero .arrow-button i::before {
  left: 49%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 0;
  background: transparent;
  transform: translate(-62%, -50%) rotate(45deg);
}

.hero .arrow-button i::after {
  display: none;
}

/*
 * Desktop FV restored to the Figma 1366 × 634 composition.
 * Coordinates are percentages of the original artboard so the exact visual
 * relationships remain intact while the height compresses to the viewport.
 */
@media (min-width: 1200px) {
  .hero {
    --hero-height: clamp(
      420px,
      min(
        calc(100vh - 68px),
        calc(100svh - 68px),
        46.4129vw
      ),
      634px
    );
    height: var(--hero-height);
    overflow: hidden;
    background: linear-gradient(
      90deg,
      #003e36 0,
      #04574c 46.12%,
      #fff 46.12%,
      #fff 100%
    );
  }

  .hero__stage {
    position: relative;
    display: block;
    width: min(1366px, 100%);
    height: var(--hero-height);
    overflow: hidden;
    background: #fff;
  }

  .hero__stage::before {
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 0;
    width: 46.12%;
    background: linear-gradient(142.81deg, #003e36 2.25%, #04574c 101.18%);
    content: "";
  }

  .hero__copy {
    position: static;
    padding: 0;
  }

  .hero h1 {
    position: absolute;
    z-index: 4;
    left: 5.71%;
    top: 14.35%;
    max-width: min(528px, 38.653vw);
    font-size: min(48px, 3.5139vw);
    line-height: min(79px, 5.7833vw);
  }

  .hero__logo {
    position: absolute;
    z-index: 4;
    left: 5.78%;
    top: 56.31%;
    width: min(311px, 22.7672vw);
    height: min(96px, 7.0278vw);
    margin: 0;
  }

  .hero__visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero__person {
    position: absolute;
    left: 46.49%;
    top: 0;
    width: 37.63%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__credentials {
    position: static;
    display: block;
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0;
    background: transparent;
  }

  .hero__card {
    position: absolute;
    z-index: 3;
    left: 81.19%;
    top: 33.26%;
    width: 18.46%;
    max-width: 252px;
    height: auto;
    aspect-ratio: 252.12 / 143.7;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
  }

  .hero__awards {
    position: static;
    display: block;
  }

  .hero-award {
    position: absolute;
    top: 63.88%;
    width: min(17.64vw, 241px);
    height: auto;
    aspect-ratio: 1;
  }

  .hero-award--id {
    left: 63.54%;
  }

  .hero-award--indeed {
    left: 78.62%;
  }

  .hero-award__logo {
    left: 31%;
    top: 29%;
    width: 40%;
    height: 40%;
  }

  .hero-award--indeed .hero-award__logo {
    left: 30%;
    width: 42%;
  }

  .hero-award span {
    left: 23%;
    right: 18%;
    bottom: 20%;
    min-height: 27px;
    font-size: 10px;
  }

  .hero__actions {
    position: absolute;
    z-index: 5;
    left: 6.22%;
    top: 80.91%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: min(24px, 1.757vw);
    width: min(484px, 35.432vw);
    padding: 0;
  }

  .hero .arrow-button {
    width: 100%;
    height: clamp(50px, 3.9531vw, 54px);
    min-height: clamp(50px, 3.9531vw, 54px);
    padding-inline: min(48px, 3.5139vw);
    border: 0;
    border-radius: 3px;
    box-shadow: 6px 5px 4px rgba(0, 0, 0, 0.25);
    font-size: clamp(14px, 1.0981vw, 15px);
  }

  .hero .arrow-button i {
    right: min(17px, 1.2445vw);
    width: min(28px, 2.0498vw);
    height: min(27px, 1.9766vw);
  }
}

@media (min-width: 1200px) and (max-height: 700px) {
  .hero h1 {
    top: 9%;
    font-size: clamp(34px, 6.5vh, 42px);
    line-height: clamp(50px, 9.2vh, 64px);
  }

  .hero__logo {
    top: 52.5%;
    width: clamp(220px, 42vh, 276px);
    height: clamp(68px, 13vh, 85px);
  }

  .hero__card {
    top: 29%;
    width: 17.2%;
  }

  .hero-award {
    top: 56%;
    width: min(15.8vw, 216px, 32vh);
  }

  .hero__actions {
    top: auto;
    bottom: 28px;
  }
}

/* Preserve the PDF graph proportions on tablet and mobile without collisions. */
@media (max-width: 1199px) {
  .takehome-panel h3 {
    height: 56px;
    font-size: 18px;
  }

  .takehome-chart {
    gap: 12px;
    padding-inline: 12px;
  }

  .takehome-column h4 {
    top: 4px;
    font-size: 14px;
    line-height: 19px;
  }

  .takehome-bar {
    height: 250px;
  }

  .takehome-bar--company-cash {
    height: 310px;
  }

  .takehome-company-insurance {
    flex-basis: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .takehome-chart {
    gap: 19px;
    padding-inline: 29px;
  }
}

@media (max-width: 767px) {
  .takehome-panel h3 {
    height: 52px;
  }

  .takehome-chart {
    gap: 8px;
    padding-inline: 8px;
  }
}

/* Crop formrun's cover and duplicate internal title from the embedded surface. */
.form-shell.form-shell--embedded {
  min-height: 1145px;
}

.form-shell--embedded .formrun-embed {
  height: 1145px;
  min-height: 0;
  overflow: hidden;
}

.form-shell--embedded .formrun-embed iframe {
  height: 1400px;
  transform: translateY(-250px);
}

/* Keep the CARELO outline optically uniform beside the sticky row labels. */
@media (max-width: 1199px) {
  .comparison-row:last-child .comparison-cell--0 {
    border-bottom-width: 2px;
  }

  .takehome-chart {
    height: 390px;
  }
}

@media (max-width: 767px) {
  .money-proof {
    height: 1008px;
  }

  /* Responsive tax chart geometry: before → after → uplift, without overlap. */
  .tax-before,
  .tax-after {
    top: 11px;
    height: 89px;
  }

  .tax-before {
    left: 3%;
    width: 32%;
  }

  .tax-after {
    left: 38%;
    width: 34%;
  }

  .tax-before small,
  .tax-after small {
    font-size: 7.5px;
  }

  .tax-before b,
  .tax-after b {
    margin-top: 4px;
    font-size: clamp(11px, 3.5vw, 14px);
    white-space: nowrap;
  }

  .tax-before span {
    left: 7%;
    width: 66%;
  }

  .tax-after span {
    left: 3%;
    width: 82%;
  }

  .tax-chart > .tax-chart__arrow {
    left: 30%;
    top: 53px;
    width: 19%;
  }

  .tax-chart > .tax-chart__arrow::before {
    width: calc(100% - 5px);
  }

  .tax-up {
    right: 3%;
    top: 14px;
    width: min(19%, 56px);
    height: auto;
    aspect-ratio: 1;
    font-size: clamp(10px, 3.4vw, 12px);
    line-height: 1.05;
  }
}

@media (max-width: 365px) {
  .tax-merit {
    height: 1284px;
  }

  .merchants h2 {
    font-size: 21.5px;
  }

  .merchants h2 strong {
    font-size: 48px;
  }

  .mid-cta .arrow-button,
  .mid-cta--2 .arrow-button,
  .mid-cta--3 .arrow-button {
    padding-inline: 48px;
    font-size: 16px;
  }

  .split-arrow {
    left: calc(40.2% - 20px);
    top: 198px;
    width: 30px;
    height: 14px;
  }
}

/* Center the before/after graph; the uplift badge intentionally overlaps the white panel. */
.tax-before span,
.tax-after span {
  left: 50%;
  transform: translateX(-50%);
}

.tax-up {
  z-index: 3;
}

@media (min-width: 1200px) {
  .tax-before {
    left: 78px;
  }

  .tax-after {
    left: 274px;
  }

  .tax-chart > .tax-chart__arrow {
    left: 194px;
  }

  .tax-up {
    right: -28px;
  }
}

@media (max-width: 1199px) {
  .tax-before {
    left: 12%;
    width: 34%;
  }

  .tax-after {
    left: 54%;
    width: 34%;
  }

  .tax-chart > .tax-chart__arrow {
    left: 40%;
    width: 18%;
  }

  .tax-before span,
  .tax-after span {
    left: 50%;
    transform: translateX(-50%);
  }

  .tax-up {
    right: -14px;
  }
}

@media (max-width: 767px) {
  .tax-up {
    right: -20px;
  }
}

/* Center the third-wage message as one balanced visual unit. */
.third-wage {
  grid-template-columns: 106px minmax(0, 1000px);
  justify-content: center;
}

.third-wage__copy > p {
  text-align: center;
}

@media (max-width: 1199px) {
  .third-wage {
    grid-template-columns: 64px minmax(0, 640px);
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .third-wage {
    grid-template-columns: 54px minmax(0, 280px);
    justify-content: center;
  }
}

/*
 * Mobile FV hierarchy: centered copy, header-touching portrait and
 * two enlarged certification marks directly above the CTA pair.
 */
@media (max-width: 767px) {
  .problems h2 {
    width: calc(100% - 32px);
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .hero {
    --hero-height: clamp(512px, calc(100svh - 56px), 620px);
    height: var(--hero-height);
  }

  .hero__stage {
    --hero-action-bottom: 12px;
    --hero-action-block: 114px;
    --hero-award-gap: 18px;
    position: relative;
    display: block;
    width: 100%;
    height: var(--hero-height);
    overflow: hidden;
  }

  .hero__copy {
    position: absolute;
    z-index: 4;
    inset: 16px 0 auto;
    padding: 0 16px;
    text-align: center;
  }

  .hero h1 {
    position: static;
    width: 100%;
    margin-inline: auto;
    color: #fff;
    font-size: clamp(24px, 6.9vw, 27px);
    line-height: 1.46;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 50, 43, 0.58);
  }

  .hero__logo {
    position: relative;
    inset: auto;
    width: clamp(148px, 42vw, 178px);
    height: clamp(46px, 13vw, 55px);
    margin: 8px auto 0;
    transform: none;
  }

  .hero__visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero__visual::after {
    position: absolute;
    z-index: 2;
    inset: 0 0 auto;
    height: min(230px, 42%);
    background: linear-gradient(
      180deg,
      rgba(0, 62, 54, 0.82) 0%,
      rgba(0, 62, 54, 0.48) 68%,
      rgba(0, 62, 54, 0) 100%
    );
    pointer-events: none;
    content: "";
  }

  .hero__person {
    position: absolute;
    z-index: 1;
    left: auto;
    top: 0;
    right: clamp(-46px, -10vw, -32px);
    bottom: auto;
    width: auto;
    max-width: none;
    height: clamp(280px, calc(100% - 230px), 390px);
    object-fit: contain;
    object-position: right top;
    pointer-events: none;
  }

  .hero__credentials {
    position: static;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
  }

  .hero__card {
    position: absolute;
    z-index: 3;
    left: max(12px, calc(50% - 190px));
    top: clamp(188px, 33%, 212px);
    width: clamp(104px, 36vw, 148px);
    height: auto;
    aspect-ratio: 1129 / 893;
    pointer-events: none;
  }

  .hero__awards {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: calc(
      var(--hero-action-bottom) + var(--hero-action-block) + var(--hero-award-gap)
    );
    display: grid;
    grid-template-columns: repeat(2, clamp(88px, 26vw, 104px));
    gap: clamp(10px, 3.5vw, 16px);
    transform: translateX(-50%);
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    position: relative;
    left: auto;
    top: auto;
    width: clamp(88px, 26vw, 104px);
    height: auto;
    aspect-ratio: 1;
  }

  .hero-award span {
    min-height: clamp(21px, 5.8vw, 25px);
    border-width: 1px;
    font-size: clamp(6.5px, 1.9vw, 7.5px);
  }

  .hero__actions {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: var(--hero-action-bottom);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(360px, calc(100% - 32px));
    padding: 0;
    transform: translateX(-50%);
  }

  .hero .arrow-button {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding-inline: 54px;
    font-size: clamp(14px, 4vw, 15.5px);
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero__stage {
    --hero-action-bottom: 12px;
    --hero-action-block: 104px;
    --hero-award-gap: 14px;
  }

  .hero__copy {
    top: 10px;
  }

  .hero h1 {
    font-size: clamp(23px, 7vw, 25px);
    line-height: 1.42;
  }

  .hero__logo {
    width: 145px;
    height: 45px;
    margin-top: 4px;
  }

  .hero__person {
    height: clamp(280px, calc(100% - 230px), 340px);
  }

  .hero__card {
    top: 172px;
    width: clamp(100px, 31vw, 116px);
  }

  .hero__awards {
    grid-template-columns: repeat(2, clamp(82px, 24vw, 88px));
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: clamp(82px, 24vw, 88px);
  }

  .hero__actions {
    gap: 8px;
  }

  .hero .arrow-button {
    height: 48px;
    min-height: 48px;
  }
}

/*
 * Before/after tax graph: shared zero baseline, proportional bars and a
 * directly labelled delta. The uplift badge overlaps the upper-right corner.
 */
.tax-chart {
  overflow: visible;
}

.tax-chart::before {
  position: absolute;
  z-index: 0;
  right: 30px;
  bottom: 30px;
  left: 30px;
  height: 2px;
  border-radius: 999px;
  background: #b7cbc7;
  content: "";
}

.tax-before,
.tax-after {
  top: 10px;
  width: 150px;
  height: 150px;
}

.tax-before {
  left: 38px;
}

.tax-after {
  left: 246px;
}

.tax-before small,
.tax-after small {
  font-size: 12px;
  line-height: 18px;
}

.tax-before b,
.tax-after b {
  margin-top: 2px;
  font-size: 19px;
  line-height: 26px;
  white-space: nowrap;
}

.tax-before span,
.tax-after span {
  left: 50%;
  bottom: 0;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.tax-before span {
  width: 88px;
  height: 44px;
}

.tax-after span {
  width: 110px;
  height: 94px;
}

.tax-chart > .tax-chart__arrow {
  position: absolute;
  z-index: 2;
  left: 168px;
  top: 91px;
  width: 105px;
  height: 30px;
  color: var(--orange);
  font-style: normal;
  transform: rotate(-25deg);
  transform-origin: left center;
}

.tax-chart > .tax-chart__arrow::before {
  position: absolute;
  left: 0;
  top: 14px;
  width: calc(100% - 4px);
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.tax-chart > .tax-chart__arrow::after {
  position: absolute;
  right: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.tax-chart__arrow > span {
  position: absolute;
  left: 50%;
  top: -13px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
  transform: translateX(-50%) rotate(25deg);
}

.tax-up {
  z-index: 4;
  right: -26px;
  top: -30px;
  width: 96px;
  height: 96px;
  font-size: 20px;
  line-height: 1.05;
}

.tax-chart > p {
  right: 24px;
  bottom: 3px;
  left: 24px;
  width: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .tax-chart::before {
    right: 12px;
    bottom: 19px;
    left: 12px;
    height: 1px;
  }

  .tax-before,
  .tax-after {
    top: 6px;
    height: 90px;
  }

  .tax-before {
    left: 3%;
    width: 34%;
  }

  .tax-after {
    left: 43%;
    width: 35%;
  }

  .tax-before small,
  .tax-after small {
    font-size: 7.5px;
    line-height: 11px;
  }

  .tax-before b,
  .tax-after b {
    margin-top: 1px;
    font-size: clamp(10.5px, 3.3vw, 13px);
    line-height: 16px;
  }

  .tax-before span {
    width: 66%;
    height: 24px;
    font-size: 9px;
  }

  .tax-after span {
    width: 76%;
    height: 52px;
    font-size: 11px;
  }

  .tax-chart > .tax-chart__arrow {
    left: 34%;
    top: 54px;
    width: 21%;
    height: 20px;
  }

  .tax-chart > .tax-chart__arrow::before {
    top: 9px;
    height: 2px;
  }

  .tax-chart > .tax-chart__arrow::after {
    top: 5px;
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .tax-chart__arrow > span {
    top: -9px;
    padding: 1px 4px;
    font-size: 7px;
  }

  .tax-up {
    right: -8px;
    top: -12px;
    width: 56px;
    height: 56px;
    font-size: 11px;
  }

  .tax-chart > p {
    right: 10px;
    bottom: 1px;
    left: 10px;
    width: auto;
    font-size: 8px;
  }
}

/* CARELO outcomes rebuilt as three concise, proof-led cards. */
.outcomes {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 72px 32px 84px;
  background: #f3f9f7;
}

.outcomes__bridge {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(36px, 5vw, 72px);
  row-gap: 12px;
  width: min(1180px, 100%);
  height: auto;
  margin: 0 auto;
  padding: 0 8px;
  background: transparent;
  text-align: left;
}

.outcomes__bridge::before,
.outcomes__bridge::after {
  content: none;
}

.outcomes__bridge p {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  gap: 12px;
  width: auto;
  color: var(--green-700);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.outcomes__bridge p::before {
  display: block;
  flex: 0 0 38px;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.outcomes__bridge p::after {
  content: none;
}

.outcomes__bridge h2 {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 2.7vw, 38px);
  line-height: 1.5;
  text-wrap: balance;
}

.outcomes__bridge h2 > span {
  background: linear-gradient(transparent 76%, rgba(242, 106, 33, 0.2) 76%);
}

.outcomes__bridge strong {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 138px;
  margin: 0;
  padding: 28px 30px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  box-shadow: 0 16px 36px rgba(0, 87, 76, 0.16);
  color: #fff;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.5;
  text-align: center;
}

.outcome-grid {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1200px, 100%);
  height: auto;
  margin: 42px auto 0;
  padding: 0;
  background: transparent;
}

.outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 442px;
  padding: 34px 28px 30px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 78, 68, 0.1);
  text-align: center;
}

.outcome-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--orange);
  content: "";
}

.outcome-card::after {
  content: none;
}

.outcome-card header {
  position: relative;
  display: block;
}

.outcome-card .number-badge {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--orange);
  border-radius: 3px;
  background: #fff;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.outcome-card header img {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 50%;
  background: var(--green-050);
  object-fit: contain;
}

.outcome-card h3 {
  width: auto;
  margin: 18px auto 0;
  color: var(--green-700);
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.45;
  text-align: center;
}

.outcome-card > p.outcome-card__body {
  min-height: 112px;
  margin: 22px 0 24px;
  color: #536b70;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  text-align: left;
}

.outcome-card > p.outcome-card__proof {
  display: grid;
  place-items: center;
  min-height: 104px;
  margin-top: auto;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.outcome-card > p.outcome-card__proof strong {
  color: #fff;
  font: inherit;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__copy {
    transform: translateY(clamp(36px, 5vw, 44px));
  }

  .outcomes {
    min-height: 0;
    padding: 60px 24px 72px;
  }

  .outcomes__bridge {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 290px);
    column-gap: 28px;
  }

  .outcome-grid {
    gap: 16px;
  }

  .outcome-card {
    min-height: 468px;
    padding-inline: 18px;
  }

  .outcome-card h3 {
    font-size: 20px;
  }

  .outcome-card > p.outcome-card__body {
    min-height: 150px;
    font-size: 14px;
    line-height: 1.8;
  }

  .outcome-card > p.outcome-card__proof {
    padding-inline: 14px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .outcomes {
    min-height: 0;
    padding: 48px 16px 56px;
  }

  .outcomes__bridge {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    row-gap: 10px;
    height: auto;
    padding: 0;
    text-align: center;
  }

  .outcomes__bridge p {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }

  .outcomes__bridge p::before {
    flex-basis: 28px;
    width: 28px;
  }

  .outcomes__bridge h2 {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin: 0;
    font-size: 21px;
    line-height: 1.45;
  }

  .outcomes__bridge strong {
    grid-column: 1;
    grid-row: 3;
    width: min(340px, 100%);
    min-height: 0;
    margin-top: 8px;
    padding: 17px 20px;
    border-radius: 16px;
    font-size: 21px;
    line-height: 1.45;
  }

  .outcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-top: 32px;
  }

  .outcome-card,
  .outcome-card:nth-child(1),
  .outcome-card:nth-child(2),
  .outcome-card:nth-child(3) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 352px;
    padding: 24px 20px 20px;
  }

  .outcome-card .number-badge {
    top: 0;
    width: 31.2px;
    height: 31.2px;
    border-width: 1.3px;
    font-size: 14.95px;
  }

  .outcome-card header img {
    width: 64px;
    height: 64px;
    padding: 12px;
  }

  .outcome-card h3 {
    margin-top: 12px;
    font-size: 19px;
  }

  .outcome-card > p.outcome-card__body {
    min-height: 0;
    margin: 16px 0 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .outcome-card > p.outcome-card__proof {
    min-height: 72px;
    margin-top: auto;
    padding: 14px 16px;
    font-size: 16px;
  }
}

/*
 * Conversion-first CTA system: the label owns the true optical centre while
 * the trailing arrow uses an independent, fixed-size affordance.
 */
.arrow-button {
  --cta-background: linear-gradient(135deg, #f26a21 0%, #d54b00 100%);
  --cta-color: #fff;
  --cta-icon-background: #fff;
  --cta-icon-color: var(--orange-deep);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(506px, calc(100% - 32px));
  min-height: 68px;
  padding: 0 68px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--cta-background);
  box-shadow: 0 10px 24px rgba(0, 56, 49, 0.2);
  color: var(--cta-color);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.arrow-button--white {
  --cta-background: #fff;
  --cta-color: var(--green-700);
  --cta-icon-background: var(--green-700);
  --cta-icon-color: #fff;
  border-color: rgba(0, 143, 130, 0.24);
  box-shadow: 0 10px 24px rgba(0, 56, 49, 0.14);
}

.arrow-button > span {
  width: auto;
  padding: 0;
  line-height: inherit;
  text-align: center;
  white-space: nowrap;
  transform: none;
}

.arrow-button i {
  position: absolute;
  right: 18px;
  top: 50%;
  display: block;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--cta-icon-background);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
  color: var(--cta-icon-color);
  transform: translateY(-50%);
}

.arrow-button i::before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 14px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-58%, -50%);
}

.arrow-button i::after {
  position: absolute;
  left: calc(50% + 3px);
  top: 50%;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.arrow-button:hover {
  filter: saturate(1.05) brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 56, 49, 0.22);
}

.arrow-button:active {
  filter: none;
  transform: translateY(1px);
  box-shadow: 0 5px 12px rgba(0, 56, 49, 0.18);
}

.arrow-button:focus-visible {
  outline: 3px solid #ffd31a;
  outline-offset: 4px;
}

.hero .arrow-button {
  width: 100%;
  height: 54px;
  min-height: 54px;
  padding: 0 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 56, 49, 0.2);
  font-size: clamp(13px, 1.1vw, 15px);
}

.hero .arrow-button--white {
  border-color: rgba(0, 143, 130, 0.24);
  box-shadow: 0 10px 24px rgba(0, 56, 49, 0.14);
}

.hero .arrow-button:hover {
  box-shadow: 0 14px 28px rgba(0, 56, 49, 0.22);
}

.hero .arrow-button:active {
  box-shadow: 0 5px 12px rgba(0, 56, 49, 0.18);
}

.hero .arrow-button > span,
.mid-cta .arrow-button > span,
.mid-cta--2 .arrow-button > span,
.mid-cta--3 .arrow-button > span {
  width: auto;
  padding: 0;
  transform: none;
}

.hero .arrow-button i {
  right: 11px;
  width: 30px;
  height: 30px;
}

.hero .arrow-button i::before {
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translate(-58%, -50%);
}

.hero .arrow-button i::after {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

@media (max-width: 1199px) {
  .mid-cta .arrow-button,
  .mid-cta--2 .arrow-button,
  .mid-cta--3 .arrow-button {
    width: min(506px, calc(100% - 32px));
    height: 60px;
    min-height: 60px;
    padding: 0 60px;
    font-size: 18px;
  }

  .mid-cta .arrow-button i,
  .mid-cta--2 .arrow-button i,
  .mid-cta--3 .arrow-button i {
    right: 14px;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  .hero .arrow-button {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 0 52px;
    font-size: 15px;
  }

  .hero .arrow-button i {
    right: 12px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero .arrow-button {
    height: 48px;
    min-height: 48px;
  }
}

/* Final third-wage alignment: icon and message share one centred axis. */
.third-wage {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  min-height: 220px;
  padding: 28px 24px;
}

.third-wage__icon {
  width: 82px;
  height: 82px;
}

.third-wage__icon img {
  width: 50px;
  height: 50px;
}

.third-wage__copy {
  width: min(1000px, 100%);
}

.third-wage__copy > p {
  width: 100%;
  max-width: none;
  text-align: center;
}

@media (max-width: 1199px) {
  .third-wage {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 200px;
    padding: 24px 20px;
  }

  .third-wage__icon {
    width: 68px;
    height: 68px;
  }

  .third-wage__icon img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 767px) {
  .third-wage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 18px;
  }

  .third-wage__icon {
    width: 58px;
    height: 58px;
  }

  .third-wage__icon img {
    width: 36px;
    height: 36px;
  }

  .third-wage__copy {
    width: min(340px, 100%);
  }

  .third-wage__copy > p {
    font-size: 15.5px;
    line-height: 1.55;
  }
}

/* Final visual corrections from the 08:24 audit. */

/* Centre copy inside each bubble's ellipse, excluding its tail. */
.problem-bubble p {
  display: grid;
  left: 7%;
  top: 0;
  width: 86%;
  height: 85%;
  margin: 0;
  place-items: center;
  text-align: center;
  transform: none;
}

.problem-bubble--3 p,
.problem-bubble--4 p {
  top: 15%;
  height: 85%;
}

/* Keep the icon left of the message and centre the pair as one unit. */
.third-wage {
  display: flex;
  min-height: 184px;
  padding: 30px 28px;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.third-wage__icon {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
}

.third-wage__copy {
  flex: 0 1 auto;
  width: auto;
  max-width: min(1000px, calc(100% - 106px));
}

.third-wage__copy > p {
  width: auto;
  max-width: 100%;
  text-align: left;
}

/* Bright, reliable in-view merchant headline reveal. */
.merchants {
  background: linear-gradient(180deg, #fff 0%, #f7fffd 54%, #fff 100%);
}

.merchants::before {
  content: none;
  animation: none;
}

.merchants h2 {
  color: #072a2d;
}

.merchants h2 strong {
  color: #f2601b;
  text-shadow: none;
}

.merchant-title__word {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: none;
  transform: translateX(0);
  animation: none !important;
  animation-timeline: auto !important;
}

.merchant-title--armed .merchant-title__word {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  filter: blur(3px);
  transform: translateX(-48px);
}

.merchant-title--visible .merchant-title__word {
  animation: merchant-word-flow 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
  animation-timeline: auto !important;
  will-change: clip-path, opacity, transform;
}

.merchant-title--visible .merchant-title__word--1 {
  animation-delay: 0ms !important;
}

.merchant-title--visible .merchant-title__word--2 {
  animation-delay: 150ms !important;
}

.merchant-title--visible .merchant-title__word--3 {
  animation-delay: 310ms !important;
}

.merchant-title--visible .merchant-title__word--4 {
  animation-delay: 490ms !important;
}

@keyframes merchant-word-flow {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    filter: blur(3px);
    transform: translateX(-48px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    transform: translateX(0);
  }
}

/* Use the lower-left hero area more efficiently on desktop. */
@media (min-width: 1200px) {
  .hero__actions {
    top: auto;
    bottom: clamp(42px, 6.5vh, 54px);
    gap: 20px;
    width: min(500px, 37.5vw);
  }

  .hero .arrow-button {
    height: 58px;
    min-height: 58px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero {
    --hero-height: clamp(512px, calc(100svh - 56px), 720px);
  }

  .hero__visual::after {
    height: min(250px, 44%);
    background:
      linear-gradient(180deg, rgba(0, 58, 50, 0.9) 0%, rgba(0, 58, 50, 0.56) 72%, transparent 100%),
      linear-gradient(90deg, rgba(0, 70, 60, 0.48) 0%, transparent 72%);
  }

  .hero__person {
    right: clamp(-94px, -21vw, -72px);
    height: clamp(278px, calc(100% - 250px), 390px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
  }

  .hero__card {
    left: max(14px, calc(50% - 182px));
    top: clamp(190px, 32%, 226px);
    width: clamp(100px, 32vw, 128px);
  }

  .hero__awards {
    grid-template-columns: repeat(2, clamp(84px, 24vw, 96px));
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: clamp(84px, 24vw, 96px);
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero__person {
    right: clamp(-78px, -20vw, -62px);
    height: clamp(270px, calc(100% - 230px), 326px);
  }

  .hero__card {
    top: 170px;
    width: clamp(96px, 30vw, 112px);
  }

  .hero__awards {
    grid-template-columns: repeat(2, clamp(78px, 23vw, 86px));
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: clamp(78px, 23vw, 86px);
  }
}

@media (max-width: 767px) {
  .third-wage {
    min-height: 0;
    padding: 24px 16px;
    gap: 14px;
  }

  .third-wage__icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .third-wage__icon img {
    width: 32px;
    height: 32px;
  }

  .third-wage__copy {
    max-width: calc(100% - 66px);
  }

  .third-wage__copy > p {
    font-size: 14.5px;
    line-height: 1.65;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .merchant-title--armed .merchant-title__word,
  .merchant-title--visible .merchant-title__word {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: none;
    transform: none;
    animation: none !important;
  }
}

/* Compact mobile rhythm and consistent visual markers. */
@media (max-width: 767px) {
  .service h2::before {
    content: none;
  }

  .service__underline {
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }

  .problems {
    height: 790px;
  }

  .problem-bubble--1,
  .problem-bubble--2,
  .problem-bubble--3,
  .problem-bubble--4 {
    left: 20px;
    width: calc(100% - 40px);
    height: 112px;
    border: 4px solid #b9dfda;
    border-radius: 50%;
    background: #fff;
    transform: none;
  }

  .problem-bubble--1 {
    top: 132px;
  }

  .problem-bubble--2 {
    top: 258px;
  }

  .problem-bubble--3 {
    top: 510px;
  }

  .problem-bubble--4 {
    top: 642px;
  }

  .problem-bubble img {
    display: none;
  }

  .problem-bubble::before,
  .problem-bubble::after {
    position: absolute;
    z-index: 2;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    transform: translateX(-50%);
  }

  .problem-bubble--1::before,
  .problem-bubble--2::before {
    bottom: -25px;
    border-top: 26px solid #b9dfda;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
  }

  .problem-bubble--1::after,
  .problem-bubble--2::after {
    bottom: -17px;
    border-top: 19px solid #fff;
    border-right: 13px solid transparent;
    border-left: 13px solid transparent;
  }

  .problem-bubble--3::before,
  .problem-bubble--4::before {
    top: -25px;
    border-right: 18px solid transparent;
    border-bottom: 26px solid #b9dfda;
    border-left: 18px solid transparent;
  }

  .problem-bubble--3::after,
  .problem-bubble--4::after {
    top: -17px;
    border-right: 13px solid transparent;
    border-bottom: 19px solid #fff;
    border-left: 13px solid transparent;
  }

  .problem-bubble p,
  .problem-bubble--1 p,
  .problem-bubble--2 p,
  .problem-bubble--3 p,
  .problem-bubble--4 p {
    left: 7%;
    top: 0;
    width: 86%;
    height: 100%;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.65;
  }

  .problem-person {
    top: 382px;
  }

  .employee {
    height: 430px;
  }

  .price-card {
    top: 120px;
  }

  .split-arrow {
    top: 173px;
  }

  .employee__note {
    top: 258px;
  }

  .employee__message {
    top: 300px;
  }

  .employee__bottom-rule {
    top: 410px;
  }

  .number-badge,
  .stage-card .number-badge {
    top: -12px;
    width: 42px;
    height: 42px;
    border-width: 2px;
    font-size: 20px;
  }

  .outcome-card .number-badge {
    top: 0;
    width: 42px;
    height: 42px;
    border-width: 2px;
    font-size: 20px;
  }
}

/* Remove the desaturated haze from the merchant section. */
.merchants,
.merchant-marquee {
  background: #fff;
}

.merchant-intro {
  color: #008f82;
}

.merchant-intro img {
  filter: none;
}

.merchant-logo {
  border-color: #cce9e4;
  box-shadow: none;
}

.merchant-note {
  color: #29494e;
}

/* Compact chart construction: heading row sits directly above the bars. */
@media (max-width: 767px) {
  .takehome-chart {
    display: grid;
    align-items: stretch;
    height: auto;
    padding: 0 6px;
  }

  .takehome-chart--employee {
    grid-template-rows: 54px 230px;
  }

  .takehome-chart--company {
    grid-template-rows: 54px 262px;
  }

  .takehome-column {
    display: grid;
    grid-row: 1 / 3;
    grid-template-rows: subgrid;
    height: auto;
  }

  .takehome-column h4 {
    position: static;
    align-self: stretch;
    min-height: 0;
    padding: 8px 2px 6px;
  }

  .takehome-bar {
    align-self: end;
  }

  .money-proof {
    height: auto;
  }

  .tax-merit {
    height: 1080px;
  }

  .money-proof__note {
    margin-top: 14px;
  }
}

/* Rebalance the before/after graph around a shared visual centre. */
@media (min-width: 768px) {
  .tax-before {
    left: 42px;
    width: 158px;
  }

  .tax-after {
    left: 238px;
    width: 158px;
  }

  .tax-chart > .tax-chart__arrow {
    left: 174px;
    top: 96px;
    width: 90px;
  }

  .tax-up {
    right: -18px;
    top: -24px;
    width: 84px;
    height: 84px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tax-before {
    left: 4%;
    width: 34%;
  }

  .tax-after {
    left: 41%;
    width: 36%;
  }

  .tax-chart > .tax-chart__arrow {
    left: 34%;
    top: 59px;
    width: 18%;
  }

  .tax-up {
    right: -6px;
    top: -10px;
    width: 52px;
    height: 52px;
    font-size: 10.5px;
  }
}

/*
 * Final fluid pass: keep the composition coherent between phone and desktop
 * instead of letting the former two-column tablet grid leave a white gutter.
 */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    --hero-height: clamp(560px, calc(100svh - 64px), 620px);
    height: var(--hero-height);
    overflow: hidden;
    background: linear-gradient(135deg, #003e36 0%, #075c50 100%);
  }

  .hero__stage {
    --hero-copy-top: clamp(42px, 7vh, 56px);
    --hero-title-size: clamp(31px, 3.85vw, 44px);
    --hero-title-block-height: clamp(138px, 17.1vw, 195px);
    --hero-logo-gap: clamp(16px, 2.4vh, 24px);
    --hero-logo-width: clamp(200px, 24vw, 260px);
    --hero-logo-height: clamp(62px, 7.5vw, 82px);
    --hero-card-gap: var(--space-2);
    --hero-card-width: clamp(118px, 13.5vw, 136px);
    --hero-card-height: clamp(93px, 10.68vw, 108px);
    --hero-card-offset: clamp(41px, 5.36vw, 62px);
    --hero-action-gap: var(--space-6);
    position: relative;
    display: block;
    width: 100%;
    height: var(--hero-height);
    overflow: hidden;
    background: transparent;
  }

  .hero__stage::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    background: linear-gradient(
      90deg,
      rgba(0, 62, 54, 0.98) 0%,
      rgba(0, 62, 54, 0.94) 40%,
      rgba(0, 62, 54, 0.4) 62%,
      rgba(0, 62, 54, 0.08) 100%
    );
    pointer-events: none;
    content: "";
  }

  .hero__copy {
    position: absolute;
    z-index: 4;
    left: clamp(32px, 4.4vw, 56px);
    top: var(--hero-copy-top);
    width: min(53%, 560px);
    padding: 0;
  }

  .hero h1 {
    position: static;
    font-size: var(--hero-title-size);
    line-height: 1.48;
    text-shadow: 0 2px 14px rgba(0, 45, 39, 0.36);
  }

  .hero__logo {
    position: relative;
    inset: auto;
    width: var(--hero-logo-width);
    height: var(--hero-logo-height);
    margin-top: var(--hero-logo-gap);
  }

  .hero__visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero__person {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    width: 56%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .hero__credentials {
    position: static;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
  }

  .hero__card {
    position: absolute;
    z-index: 5;
    right: clamp(18px, 3vw, 42px);
    top: 36%;
    width: clamp(122px, 15vw, 166px);
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
  }

  .hero__awards {
    position: absolute;
    z-index: 5;
    right: clamp(14px, 2.2vw, 32px);
    bottom: clamp(20px, 3.5vh, 30px);
    display: flex;
    gap: clamp(4px, 0.7vw, 10px);
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    position: relative;
    left: auto;
    top: auto;
    width: clamp(98px, 12vw, 130px);
    height: auto;
    aspect-ratio: 1;
  }

  .hero-award span {
    min-height: 23px;
    border-width: 1px;
    font-size: clamp(7px, 0.9vw, 9px);
  }

  .hero__actions {
    position: absolute;
    z-index: 6;
    left: clamp(32px, 4.4vw, 56px);
    top: calc(
      var(--hero-copy-top) +
      var(--hero-title-block-height) +
      var(--hero-logo-gap) +
      var(--hero-logo-height) +
      var(--hero-card-gap) +
      var(--hero-card-height) +
      var(--hero-action-gap)
    );
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(46vw, 480px);
    padding: 0;
  }

  .hero .arrow-button {
    width: 100%;
    height: 54px;
    min-height: 54px;
    font-size: clamp(14px, 1.65vw, 17px);
  }

  .employee {
    height: 520px;
  }

  .price-card {
    top: 130px;
    height: 210px;
  }

  .price-card--meal {
    left: calc(50% - 327px);
    width: 210px;
  }

  .price-card--employee {
    left: calc(50% - 91px);
    width: 196px;
  }

  .price-card--company {
    left: calc(50% + 131px);
    width: 196px;
  }

  .split-arrow {
    left: calc(50% - 135px);
    top: 218px;
    width: 70px;
    height: 32px;
  }

  .employee__note {
    top: 370px;
  }

  .employee__message {
    top: 418px;
  }

  .employee__bottom-rule {
    top: 500px;
  }

  .tax-merit {
    height: 780px;
  }

  .tax-merit > h2 {
    width: min(900px, calc(100% - 64px));
    font-size: clamp(22px, 2.5vw, 26px);
    line-height: 1.5;
  }

  .money-proof {
    top: 178px;
    width: min(960px, calc(100% - 32px));
  }

  .takehome-grid {
    gap: clamp(16px, 2.3vw, 24px);
  }

  .takehome-chart {
    height: 390px;
    gap: clamp(6px, 1vw, 10px);
    padding-inline: clamp(8px, 1.2vw, 14px);
  }

  .takehome-column h4 {
    font-size: clamp(12px, 1.45vw, 15px);
    line-height: 1.4;
  }

  .takehome-bar--gross strong,
  .takehome-bar--allowance strong,
  .takehome-company-total strong,
  .takehome-net strong {
    font-size: clamp(15px, 1.9vw, 20px);
  }

  .takehome-deduction strong,
  .takehome-company-insurance strong {
    font-size: clamp(13px, 1.7vw, 18px);
  }

  .takehome-bar--gross,
  .takehome-bar--cash-net,
  .takehome-bar--allowance {
    height: 283px;
  }

  .takehome-bar--company-cash {
    height: 323px;
  }

  .outcomes__bridge > strong {
    padding-inline: 18px;
    font-size: clamp(21px, 2.6vw, 24px);
    line-height: 1.45;
  }

  .outcome-grid {
    height: auto;
  }

  .outcome-card,
  .outcome-card:nth-child(1),
  .outcome-card:nth-child(2),
  .outcome-card:nth-child(3) {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    transform: none;
    justify-self: stretch;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .site-header__inner {
    grid-template-columns: minmax(112px, 1fr) clamp(420px, 62.5vw, 480px);
  }

  .tax-infographic {
    width: min(586px, 100%);
    height: 420px;
  }

  .tax-infographic::before {
    height: 8px;
  }

  .tax-infographic > p {
    margin-top: 28px;
    font-size: 16px;
    line-height: 24px;
  }

  .tax-infographic h3 {
    margin-top: 4px;
    font-size: 27px;
    line-height: 39px;
  }

  .tax-infographic > i {
    width: 210px;
    height: 3px;
    margin-bottom: 15px;
  }

  .tax-infographic > strong {
    width: 266px;
    height: 34px;
    border-radius: 8px;
    font-size: 16px;
  }

  .tax-infographic .tax-chart {
    left: 50%;
    top: 204px;
    width: min(522px, calc(100% - 46px));
    height: 190px;
    transform: translateX(-50%);
  }

  .tax-before,
  .tax-after {
    top: 18px;
    height: 146px;
  }

  .tax-before {
    left: 42px;
    width: 158px;
  }

  .tax-after {
    left: 238px;
    width: 158px;
  }

  .tax-before small,
  .tax-after small {
    font-size: 12px;
  }

  .tax-before b,
  .tax-after b {
    margin-top: 2px;
    font-size: 20px;
  }

  .tax-before span,
  .tax-after span {
    left: 50%;
  }

  .tax-before span {
    width: 96px;
    height: 44px;
  }

  .tax-after span {
    width: 136px;
    height: 76px;
  }

  .tax-chart > .tax-chart__arrow {
    left: 174px;
    top: 91px;
    width: 90px;
    height: 44px;
  }

  .tax-up {
    right: -18px;
    top: -24px;
    width: 84px;
    height: 84px;
    font-size: 18px;
  }

  .tax-chart > p {
    left: 24px;
    bottom: 2px;
    width: 474px;
    font-size: 13px;
  }
}

@media (min-width: 366px) and (max-width: 767px) {
  .price-card--meal {
    left: calc(50% - 179px);
  }

  .price-card--employee {
    left: calc(50% - 38px);
  }

  .price-card--company {
    left: calc(50% + 76px);
  }

  .split-arrow {
    left: calc(50% - 67px);
  }
}

@media (max-width: 767px) {
  .hero {
    --hero-height: clamp(512px, calc(100svh - 56px), 680px);
  }

  .hero__stage {
    --hero-action-bottom: 16px;
  }

  .hero__awards {
    grid-template-columns: repeat(2, clamp(104px, 30vw, 116px));
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: clamp(104px, 30vw, 116px);
  }

  .hero__person {
    right: clamp(-64px, -12vw, -40px);
  }

  .problems {
    height: 820px;
  }

  .problem-bubble--1 {
    top: 132px;
  }

  .problem-bubble--2 {
    top: 274px;
  }

  .problem-person {
    top: 414px;
  }

  .problem-bubble--3 {
    top: 558px;
  }

  .problem-bubble--4 {
    top: 700px;
  }

  .money-proof {
    left: 50%;
    width: min(520px, calc(100% - 32px));
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-header__inner {
    grid-template-columns: minmax(112px, 1fr) clamp(420px, 62.5vw, 480px);
  }
}

@media (min-width: 480px) and (max-width: 1199px) {
  .site-header__inner {
    grid-template-columns: minmax(112px, 1fr) clamp(368px, 62.5vw, 480px);
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .comparison-scroll {
    padding-inline: 12px;
  }
}

@media (min-width: 1200px) {
  .employee h2 {
    left: 50%;
    top: 26px;
    width: min(1000px, calc(100% - 64px));
    text-align: center;
    transform: translateX(-50%);
  }

  .price-card {
    top: 150px;
  }

  .price-card--meal {
    left: calc(50% - 403.5px);
  }

  .price-card--employee {
    left: calc(50% - 115.5px);
  }

  .price-card--company {
    left: calc(50% + 156.5px);
  }

  .split-arrow {
    left: calc(50% - 167.5px);
    top: 271px;
  }

  .employee__note {
    left: 50%;
    top: 446px;
    width: min(900px, calc(100% - 64px));
    text-align: center;
    transform: translateX(-50%);
  }

  .employee__message {
    top: 484px;
  }

  .employee__bottom-rule {
    top: 590px;
  }

  .outcomes__bridge > strong {
    padding-inline: 20px;
    font-size: clamp(22px, 2vw, 26px);
    white-space: nowrap;
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero__person {
    right: clamp(-48px, -9vw, -32px);
  }

  .hero__awards {
    grid-template-columns: repeat(2, clamp(78px, 25vw, 88px));
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: clamp(78px, 25vw, 88px);
  }
}

@media (max-width: 365px) {
  .price-card--meal {
    left: calc(50% - 146px);
    width: 100px;
  }

  .price-card--employee {
    left: calc(50% - 38px);
    width: 88px;
  }

  .price-card--company {
    left: calc(50% + 58px);
    width: 88px;
  }

  .tax-merit {
    height: 1160px;
  }

  .tax-merit > h2 {
    top: 36px;
    width: calc(100% - 32px);
    font-size: clamp(16.5px, 4.5vw, 18px);
    line-height: 1.55;
  }
}
/*
 * Final regulation pass (2026-08-03): one layout system per component.
 * These rules intentionally replace the earlier coordinate-based patches.
 */

/* Service introduction: one regulated container, never absolute coordinates. */
.service {
  position: relative;
  height: auto;
  min-height: 0;
  padding: var(--section-space) var(--content-gutter);
}

.service__inner {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.service__header {
  display: grid;
  justify-items: center;
  gap: var(--space-6);
  text-align: center;
}

.service__eyebrow,
.service h2 {
  position: static;
  inset: auto;
  width: 100%;
  transform: none;
  white-space: normal;
}

.service__eyebrow {
  font-size: var(--type-heading-md);
  font-weight: 700;
  line-height: 1.35;
}

.service h2 {
  font-size: var(--type-heading-md);
  line-height: 1.45;
}

.service h2::before {
  content: none;
}

.service__layout {
  display: grid;
  grid-template-columns: minmax(0, 531px) minmax(0, 560px);
  justify-content: center;
  align-items: start;
  gap: var(--space-20);
  margin-top: var(--space-12);
}

.service__media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 760 / 433;
  border-radius: var(--radius-media);
  background: #fff;
}

.service__product {
  position: static;
  inset: auto;
  width: 105.3%;
  max-width: none;
  height: 100%;
  border-radius: inherit;
  background: #fff;
  object-fit: cover;
  transform: translateX(-5%);
}

.service__content {
  display: grid;
  align-content: start;
  width: 100%;
}

.service__lede {
  position: static;
  inset: auto;
  width: 100%;
  margin-bottom: var(--space-6);
  font-size: var(--type-body);
  line-height: 1.75;
  transform: none;
}

.service-proof,
.service-proof--id,
.service-proof--indeed {
  position: static;
  inset: auto;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  column-gap: var(--space-4);
  width: 100%;
  min-height: 0;
  height: auto;
  padding: var(--space-6) 0;
  transform: none;
}

.service-proof p {
  gap: var(--space-2);
  font-size: var(--type-body);
  line-height: 1.75;
}

.service-proof strong,
.service-proof--indeed strong {
  font-size: var(--type-heading-sm);
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .service__inner {
    width: min(720px, 100%);
  }

  .service__header {
    gap: var(--space-4);
  }

  .service__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
  }

  .service__media,
  .service__content {
    width: min(640px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .service__lede {
    margin-bottom: var(--space-4);
  }

  .service-proof,
  .service-proof--id,
  .service-proof--indeed {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: var(--space-4) 0;
  }

}

/* Lunch split: title at left, diagram on a shared grid and an unbroken arrow. */
.employee {
  height: auto;
  min-height: 0;
  padding: var(--section-space) var(--content-gutter) var(--section-space-compact);
  background: #fff;
}

.employee__inner {
  display: grid;
  grid-template-columns: minmax(380px, 400px) minmax(0, 1fr);
  column-gap: var(--space-8);
  align-items: center;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.employee h2 {
  position: static;
  align-self: center;
  width: auto;
  color: var(--ink);
  font-size: var(--type-heading-md);
  line-height: 1.45;
  text-align: left;
  transform: none;
}

.employee h2 > strong,
.employee h2 > span {
  display: block;
  white-space: nowrap;
}

.employee__diagram {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) clamp(34px, 4vw, 56px) repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 20px);
  align-items: center;
  min-width: 0;
}

.employee .price-card,
.employee .price-card--meal,
.employee .price-card--employee,
.employee .price-card--company {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr) auto;
  row-gap: 8px;
  justify-items: center;
  width: auto;
  height: 280px;
  padding: 18px 14px 14px;
}

.employee .price-card > span,
.employee .price-card--meal > span {
  position: static;
  display: grid;
  width: 100%;
  min-height: 0;
  padding: 0;
  place-items: center;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

.employee .price-card img,
.employee .price-card--employee img,
.employee .price-card--company img {
  position: static;
  align-self: center;
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.employee .price-card--meal img {
  position: static;
  width: min(154px, 90%);
  height: 100px;
  border-radius: 4px;
  object-fit: cover;
}

.employee .price-card > strong {
  position: static;
  align-self: end;
  font-size: clamp(30px, 2.7vw, 36px);
  line-height: 1.2;
}

.employee .price-card small {
  margin-left: 6px;
  font-size: 0.82em;
  line-height: inherit;
}

.employee .split-arrow {
  position: relative;
  z-index: 2;
  inset: auto;
  justify-self: center;
  width: 100%;
  max-width: 56px;
  height: auto;
  pointer-events: none;
}

.employee__note {
  position: static;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 2px;
  color: #52686d;
  font-size: var(--type-note);
  line-height: var(--leading-note);
  text-align: right;
  transform: none;
}

.employee__message {
  position: static;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 34px;
  color: var(--green-700);
  font-size: var(--type-heading-sm);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  transform: none;
}

.employee__bottom-rule {
  position: static;
  grid-column: 1 / -1;
  width: min(782px, 100%);
  height: 1px;
  margin: 28px auto 0;
  background: var(--green-100);
  transform: none;
}

@media (max-width: 1199px) {
  .employee {
    padding: var(--section-space) var(--content-gutter) var(--space-12);
  }

  .employee__inner {
    grid-template-columns: minmax(0, 1fr);
    width: min(900px, 100%);
  }

  .employee h2 {
    width: min(900px, 100%);
    margin: 0 auto var(--space-8);
  }

  .employee__diagram {
    width: min(900px, 100%);
    margin: 0 auto;
  }

  .employee .price-card,
  .employee .price-card--meal,
  .employee .price-card--employee,
  .employee .price-card--company {
    height: 210px;
    grid-template-rows: 44px minmax(0, 1fr) auto;
    padding: 12px 10px 12px;
  }

  .employee .price-card img,
  .employee .price-card--employee img,
  .employee .price-card--company img {
    width: 70px;
    height: 70px;
  }

  .employee .price-card--meal img {
    width: min(118px, 92%);
    height: 76px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .employee__inner {
    grid-template-columns: minmax(320px, 340px) minmax(0, 1fr);
    column-gap: var(--space-6);
  }

  .employee h2 {
    font-size: clamp(28px, 2.35vw, 32px);
    line-height: 1.5;
  }
}

@media (max-width: 599px) {
  .employee {
    padding: var(--section-space) var(--content-gutter);
  }

  .employee h2 {
    width: 100%;
    margin-bottom: var(--space-6);
    line-height: 1.45;
  }

  .employee__diagram {
    grid-template-columns: minmax(0, 1.08fr) clamp(20px, 7vw, 28px) repeat(2, minmax(0, 1fr));
    gap: clamp(4px, 1.7vw, 8px);
  }

  .employee .price-card,
  .employee .price-card--meal,
  .employee .price-card--employee,
  .employee .price-card--company {
    grid-template-rows: minmax(34px, auto) minmax(0, 1fr) auto;
    row-gap: 4px;
    height: clamp(154px, 43vw, 184px);
    padding: 8px 5px 9px;
  }

  .employee .price-card > span,
  .employee .price-card--meal > span {
    font-size: clamp(9.5px, 2.75vw, 12.5px);
    line-height: 1.4;
  }

  .employee .price-card img,
  .employee .price-card--employee img,
  .employee .price-card--company img {
    width: clamp(44px, 13vw, 58px);
    height: clamp(44px, 13vw, 58px);
  }

  .employee .price-card--meal img {
    width: min(86px, 92%);
    height: clamp(46px, 13vw, 58px);
  }

  .employee .price-card > strong {
    font-size: clamp(21px, 6vw, 26px);
  }

  .employee .split-arrow {
    max-width: 28px;
  }

  .employee__note {
    margin-top: 4px;
    padding-inline: 2px;
    font-size: 9.5px;
    line-height: 1.55;
  }

  .employee__message {
    margin-top: var(--space-6);
    padding-inline: 12px;
    line-height: 1.55;
  }

  .employee__bottom-rule {
    width: calc(100% - 24px);
    margin-top: var(--space-6);
  }
}

@media (max-width: 359px) {
  .employee h2 > strong,
  .employee h2 > span {
    white-space: normal;
  }
}

/* The comparison headings and bars share the same mobile column track. */
@media (max-width: 767px) {
  .takehome-column {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    justify-items: stretch;
  }
}

/* Tax graph: centred bars, compact solid arrow and sequenced in-view motion. */
.tax-before,
.tax-after {
  width: 158px;
}

.tax-before {
  left: calc(50% - 177px);
}

.tax-after {
  left: calc(50% + 19px);
}

.tax-chart > .tax-chart__arrow {
  left: calc(50% - 45px);
  top: 91px;
  width: 90px;
  height: 32px;
  color: var(--orange);
  transform: rotate(-22deg);
  transform-origin: left center;
}

.tax-chart > .tax-chart__arrow::before {
  left: 0;
  top: 13px;
  width: calc(100% - 13px);
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.tax-chart > .tax-chart__arrow::after {
  right: 0;
  top: 6px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-right: 0;
  border-bottom: 9px solid transparent;
  border-left: 15px solid currentColor;
  transform: none;
}

.tax-chart__arrow > span {
  display: none;
}

.tax-infographic--motion-ready:not(.tax-infographic--visible) .tax-before span,
.tax-infographic--motion-ready:not(.tax-infographic--visible) .tax-after span {
  opacity: 0.72;
  clip-path: inset(100% 0 0);
}

.tax-infographic--motion-ready:not(.tax-infographic--visible) .tax-chart__arrow,
.tax-infographic--motion-ready:not(.tax-infographic--visible) .tax-up {
  opacity: 0;
}

.tax-infographic--visible .tax-before span {
  animation: tax-bar-reveal 460ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.tax-infographic--visible .tax-chart__arrow {
  animation: tax-arrow-settle 280ms ease-out 500ms both;
}

.tax-infographic--visible .tax-after span {
  animation: tax-bar-reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) 650ms both;
}

.tax-infographic--visible .tax-up {
  animation: tax-badge-settle 300ms ease-out 1120ms both;
}

@keyframes tax-bar-reveal {
  from {
    opacity: 0.72;
    clip-path: inset(100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes tax-arrow-settle {
  from {
    opacity: 0;
    transform: translate(-8px, 5px) rotate(-22deg);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-22deg);
  }
}

@keyframes tax-badge-settle {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 599px) {
  .tax-before {
    left: 12%;
    width: 34%;
  }

  .tax-after {
    left: 54%;
    width: 34%;
  }

  .tax-chart > .tax-chart__arrow {
    left: 41%;
    top: 54px;
    width: 18%;
    height: 22px;
  }

  .tax-chart > .tax-chart__arrow::before {
    top: 9px;
    width: calc(100% - 9px);
    height: 2px;
  }

  .tax-chart > .tax-chart__arrow::after {
    top: 4px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tax-infographic .tax-before span,
  .tax-infographic .tax-after span,
  .tax-infographic .tax-chart__arrow,
  .tax-infographic .tax-up {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
    animation: none;
  }

  .tax-infographic .tax-before span,
  .tax-infographic .tax-after span {
    transform: translateX(-50%);
  }

  .tax-infographic .tax-chart__arrow {
    transform: rotate(-22deg);
  }
}

/* Centred result bridge with a restrained brand-green depth shift. */
.outcomes {
  height: auto;
  min-height: 0;
  padding: 0 32px 84px;
  background: #f3f9f7;
}

.outcomes__bridge {
  position: relative;
  z-index: 2;
  inset: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  justify-items: center;
  align-content: start;
  row-gap: 0;
  width: calc(100% + 64px);
  height: 303px;
  margin: 0 -32px;
  padding: 41px 24px 0;
  background: linear-gradient(128deg, #003e36 0%, #00443b 56%, #003f37 100%);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  text-align: center;
}

.outcomes__bridge::before,
.outcomes__bridge::after {
  content: none;
}

.outcomes__bridge p {
  display: block;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  width: min(1020px, calc(100% - 48px));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

.outcomes__bridge p::before,
.outcomes__bridge p::after {
  content: none;
}

.outcomes__bridge p span {
  flex: 0 0 auto;
}

.outcomes__bridge h2 {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  column-gap: 28px;
  width: min(1180px, calc(100% - 64px));
  margin: 22px 0 0;
  color: #fff;
  font-size: 32px;
  line-height: 47px;
  text-align: center;
}

.outcomes__bridge h2::before,
.outcomes__bridge h2::after {
  width: 100%;
  height: 3px;
  background: #ff7a32;
  content: "";
}

.outcomes__bridge h2 > span {
  background: none;
}

.outcomes__bridge > strong {
  display: block;
  grid-column: 1;
  grid-row: 3;
  width: auto;
  min-height: 0;
  margin: 18px 0 0;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #fff;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  white-space: normal;
}

.outcome-grid {
  margin-top: 34px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .outcomes {
    padding: 0 24px 72px;
  }

  .outcomes__bridge {
    width: calc(100% + 48px);
    height: clamp(250px, 27vw, 260px);
    margin: 0 -24px;
    padding-top: clamp(36px, 4vw, 40px);
  }

  .outcomes__bridge p {
    gap: 20px;
    font-size: clamp(15px, 1.75vw, 16px);
    line-height: 1.6;
  }

  .outcomes__bridge h2 {
    margin-top: 14px;
    font-size: clamp(28px, 3.2vw, 30px);
    line-height: 1.45;
  }

  .outcomes__bridge > strong {
    margin-top: 10px;
    padding: 0;
    font-size: clamp(24px, 2.8vw, 26px);
    line-height: 1.5;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .outcomes {
    padding: 0 16px 56px;
  }

  .outcomes__bridge {
    width: calc(100% + 32px);
    height: 230px;
    margin: 0 -16px;
    padding: 32px 16px 0;
  }

  .outcomes__bridge p {
    gap: 10px;
    width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }

  .outcomes__bridge p::before,
  .outcomes__bridge p::after {
    min-width: 20px;
  }

  .outcomes__bridge h2 {
    grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
    column-gap: 10px;
    width: 100%;
    margin-top: 8px;
    font-size: 21px;
    line-height: 1.45;
  }

  .outcomes__bridge h2::before,
  .outcomes__bridge h2::after {
    height: 2px;
  }

  .outcomes__bridge > strong {
    width: auto;
    margin-top: 4px;
    padding: 0;
    font-size: 22px;
    line-height: 1.45;
  }

  .outcome-grid {
    margin-top: 30px;
  }
}

/* Icon + wage message use a single centred grid at every breakpoint. */
.third-wage {
  display: grid;
  grid-template-columns: 78px max-content;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 184px;
  padding: 30px 28px;
}

.third-wage__icon {
  width: 78px;
  height: 78px;
}

.third-wage__copy {
  width: max-content;
  max-width: calc(100vw - 162px);
}

.third-wage__copy > p {
  width: auto;
  max-width: none;
  font-size: var(--type-callout);
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 767px) {
  .third-wage {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 24px 16px;
  }

  .third-wage__icon {
    width: 52px;
    height: 52px;
  }

  .third-wage__copy {
    width: auto;
    max-width: none;
  }

  .third-wage__copy > p {
    line-height: 1.55;
    text-align: left;
  }
}

/* Continuous FV colour treatment: no fixed vertical seams at any width. */
@media (min-width: 1200px) {
  .hero {
    isolation: isolate;
    background: #fff;
  }

  .hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(142.81deg, #003e36 2.25%, #04574c 101.18%);
    clip-path: polygon(
      0 0,
      min(52.7%, calc(50% + 37px)) 0,
      max(46.49%, calc(50% - 48px)) 100%,
      0 100%
    );
    content: "";
  }

  .hero__stage {
    z-index: 1;
    background: transparent;
  }

  .hero__stage::before {
    content: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__stage::before {
    background: linear-gradient(
      90deg,
      rgba(0, 62, 54, 0.98) 0%,
      rgba(0, 62, 54, 0.88) 35%,
      rgba(0, 62, 54, 0.46) 62%,
      transparent 90%
    );
  }

  .hero__person {
    right: 0;
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }
}

@media (max-width: 767px) {
  .hero__visual::after {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
  }

  .hero__person {
    right: clamp(-20px, -3vw, -10px);
  }
}

/* Legacy copy-stack rules remain scoped to the former DOM placement. */
.hero__copy .hero__card {
  display: block;
  height: auto;
  aspect-ratio: 1129 / 893;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

@media (min-width: 1200px) {
  .hero__copy {
    --hero-logo-width: 260px;
    --hero-card-width: 150px;
    --hero-card-offset: calc((var(--hero-logo-width) - var(--hero-card-width)) / 2 + 3px);
    position: relative;
    padding: 60px 36px 0 clamp(48px, 5.7vw, 78px);
  }

  .hero h1 {
    position: static;
    inset: auto;
    width: auto;
    line-height: 1.5;
    transform: none;
  }

  .hero__logo {
    position: relative;
    inset: auto;
    width: var(--hero-logo-width);
    height: 80px;
    margin-top: var(--space-4);
    transform: none;
  }

  .hero__copy .hero__card {
    position: relative;
    z-index: 4;
    inset: auto;
    width: var(--hero-card-width);
    margin: 4px 0 0 var(--hero-card-offset);
    transform: none;
  }

  .hero-award {
    top: auto;
    bottom: var(--space-3);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__copy .hero__card {
    position: relative;
    z-index: 4;
    inset: auto;
    width: var(--hero-card-width);
    margin: var(--hero-card-gap) 0 0 var(--hero-card-offset);
    transform: none;
  }
}

@media (max-width: 767px) {
  .hero__copy .hero__card {
    position: relative;
    z-index: 4;
    inset: auto;
    width: clamp(104px, 32vw, 124px);
    margin: var(--space-2) auto 0;
    transform: none;
  }
}

@media (min-width: 1200px) and (max-height: 620px) {
  .hero__copy {
    --hero-logo-width: 215px;
    --hero-card-width: 112px;
    --hero-card-offset: calc((var(--hero-logo-width) - var(--hero-card-width)) / 2 + 3px);
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(38px, 7vh, 44px);
    line-height: 1.42;
  }

  .hero__logo {
    width: var(--hero-logo-width);
    height: 66px;
    margin-top: 10px;
  }

  .hero__copy .hero__card {
    width: var(--hero-card-width);
    margin: 4px 0 0 var(--hero-card-offset);
  }
}

/* PDF-derived bar ratios: 340 / 422 / 76 on desktop, scaled as one unit. */
.takehome-chart {
  --takehome-normal-height: 340px;
  --takehome-company-height: 422px;
  --takehome-insurance-height: 76px;
}

.takehome-bar--gross,
.takehome-bar--cash-net,
.takehome-bar--allowance {
  height: var(--takehome-normal-height);
}

.takehome-bar--company-cash {
  height: var(--takehome-company-height);
}

.takehome-company-insurance {
  flex-basis: var(--takehome-insurance-height);
}

/* Consistent radius hierarchy: panels 24, cards 16, controls 10, media 8. */
.arrow-button,
.hero .arrow-button,
.form-shell > a,
.number-badge,
.outcome-card .number-badge,
.tax-infographic > strong,
.takehome-panel h3 {
  border-radius: var(--radius-control);
}

.hero-award__logo,
.hero-award span,
.offset-image::after,
.offset-image img,
.comparison-service img,
.employee .price-card--meal img,
.tax-before span,
.tax-after span,
.merchant-logo {
  border-radius: var(--radius-media);
}

.employee .price-card,
.faq details,
.tax-chart,
.outcome-card > p.outcome-card__proof {
  border-radius: var(--radius-card);
}

.tax-infographic,
.tax-merit::before,
.outcome-card,
.form-shell,
.form-shell.form-shell--embedded {
  border-radius: var(--radius-panel);
}

/* Tables and stacked graphs remain square to preserve line continuity. */
.comparison-scroll,
.comparison-service,
.comparison-cell,
.comparison-row > strong,
.takehome-bar--gross,
.takehome-bar--allowance,
.takehome-bar--cash-net,
.takehome-bar--company-cash,
.takehome-deduction,
.takehome-net,
.takehome-company-insurance,
.takehome-company-total {
  border-radius: 0;
}

.takehome-bar--gross,
.takehome-bar--allowance,
.takehome-bar--cash-net,
.takehome-bar--company-cash {
  overflow: hidden;
}

.form-shell--embedded .formrun-embed {
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.contact-section--embedded > h2 {
  width: min(var(--content-max), calc(100% - (2 * var(--content-gutter))));
  margin: 0 auto var(--space-8);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: var(--type-heading-md);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 767px) {
  .contact-section--embedded > h2 {
    margin-bottom: var(--space-6);
  }
}

/* Notes share one quiet, right-aligned treatment throughout the LP. */
.employee__note,
.tax-points > p {
  text-align: right;
}

.money-proof__note {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 1px;
  width: 100%;
  max-width: 1100px;
  margin: 27px 0 0 auto;
  padding-inline: 10px;
  text-align: right;
}

.money-proof__note > p {
  display: block;
  text-align: right;
  white-space: normal;
}

/* Final alignment corrections from the full responsive audit. */
.tax-before span,
.tax-after span {
  border-radius: 0;
}

@media (min-width: 1200px) {
  .hero__visual > .hero__card {
    left: auto;
    right: 24px;
    top: clamp(140px, 24%, 152px);
    width: 190px;
    max-width: none;
    aspect-ratio: 1205 / 874;
  }

  .problem-bubble--2 {
    top: 210px;
    height: 134px;
  }

  .benefits {
    height: 606px;
  }

  .employee {
    padding-top: 64px;
  }
}

@media (max-width: 767px) {
  .hero__visual > .hero__card {
    left: auto;
    right: 16px;
    top: clamp(184px, 31%, 220px);
    width: 112px;
    aspect-ratio: 1129 / 893;
  }

  .benefits {
    padding-bottom: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .benefits {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  /* The desktop logo marquee intentionally travels beyond its track; clip it
     at the owning section instead of relying on the page-level overflow. */
  .merchants {
    overflow-x: clip;
  }
}

@media (max-width: 1199px) {
  :root {
    --content-gutter: 24px;
    --section-space: 64px;
    --section-space-compact: 48px;
    --type-heading-lg: clamp(36px, 4.5vw, 48px);
    --type-heading-md: clamp(28px, 3.6vw, 36px);
    --type-heading-sm: clamp(18px, 2.5vw, 22px);
    --type-callout: clamp(20px, 2.7vw, 26px);
  }

  .takehome-chart {
    --takehome-normal-height: 260px;
    --takehome-company-height: 323px;
    --takehome-insurance-height: 58px;
  }
}

@media (max-width: 767px) {
  :root {
    --content-gutter: 16px;
    --section-space: 48px;
    --section-space-compact: 32px;
    --type-heading-lg: clamp(30px, 8vw, 40px);
    --type-heading-md: clamp(24px, 6.6vw, 28px);
    --type-heading-sm: clamp(18px, 5vw, 22px);
    --type-callout: 15.5px;
    --type-body: 15px;
  }

  .takehome-chart {
    --takehome-normal-height: 211px;
    --takehome-company-height: 262px;
    --takehome-insurance-height: 47px;
  }
}

/*
 * Mobile FV composition — the authoritative coordinate system.
 * The logo, copy, portrait, product card, awards and CTAs each own a
 * non-overlapping region so their alignment stays stable at every phone width.
 */
@media (max-width: 767px) {
  .hero {
    --hero-height: min(680px, calc(100svh - 56px));
    --hero-action-bottom: 16px;
    --hero-action-block: 114px;
    --hero-award-gap: 10px;
    --hero-award-size: clamp(96px, 22vw, 112px);
    --hero-logo-width: clamp(146px, 32vw, 190px);
    --hero-logo-height: clamp(45px, 10vw, 60px);
    --hero-card-width: clamp(108px, 21vw, 128px);
    height: var(--hero-height);
    min-height: 0;
  }

  .hero__stage {
    height: var(--hero-height);
    overflow: hidden;
  }

  .hero__copy {
    position: absolute;
    z-index: 6;
    inset: 0;
    width: 100%;
    padding: 0;
    text-align: left;
    transform: none;
    pointer-events: none;
  }

  .hero__logo {
    position: absolute;
    left: 16px;
    top: 16px;
    width: var(--hero-logo-width);
    height: var(--hero-logo-height);
    margin: 0;
    transform: none;
  }

  .hero h1 {
    position: absolute;
    left: 16px;
    top: 43%;
    width: min(74%, 420px);
    margin: 0;
    font-size: clamp(23px, 5vw, 30px);
    line-height: 1.45;
    text-align: left;
    white-space: nowrap;
    transform: translateY(-50%);
  }

  .hero__visual::after {
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(0, 62, 54, 0.98) 0%,
      rgba(0, 62, 54, 0.9) 36%,
      rgba(0, 62, 54, 0.42) 61%,
      rgba(0, 62, 54, 0.05) 100%
    );
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__person {
    left: auto;
    right: 0;
    top: 0;
    width: auto;
    max-width: none;
    height: clamp(390px, 70%, 460px);
    object-fit: contain;
    object-position: right top;
  }

  .hero__visual > .hero__card {
    left: 16px;
    right: auto;
    top: calc(16px + var(--hero-logo-height) + 8px);
    width: var(--hero-card-width);
    height: auto;
    aspect-ratio: 1129 / 893;
  }

  .hero__awards {
    left: 50%;
    right: auto;
    bottom: calc(
      var(--hero-action-bottom) + var(--hero-action-block) + var(--hero-award-gap)
    );
    grid-template-columns: repeat(2, var(--hero-award-size));
    gap: 12px;
    transform: translateX(-50%);
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: var(--hero-award-size);
  }

  .hero-award span {
    min-height: clamp(22px, 5vw, 26px);
    font-size: clamp(7.5px, 1.55vw, 9px);
  }

  .hero__actions {
    left: 50%;
    bottom: var(--hero-action-bottom);
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(360px, calc(100% - 32px));
    padding: 0;
    transform: translateX(-50%);
  }

  .hero .arrow-button {
    width: 100%;
    height: 52px;
    min-height: 52px;
  }

  /* One rhythm for all three price cards: title, artwork and number baseline. */
  .employee__diagram {
    grid-template-columns:
      minmax(0, 1fr) clamp(24px, 5vw, 34px)
      repeat(2, minmax(0, 1fr));
    column-gap: clamp(6px, 1.5vw, 10px);
    row-gap: 0;
    align-items: stretch;
  }

  .employee .price-card,
  .employee .price-card--meal,
  .employee .price-card--employee,
  .employee .price-card--company {
    grid-template-rows: 42px minmax(0, 1fr) 38px;
    row-gap: 4px;
    align-items: stretch;
    height: clamp(168px, 37vw, 204px);
    padding: 8px clamp(4px, 1vw, 8px) 10px;
  }

  .employee .price-card > span,
  .employee .price-card--meal > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    font-size: clamp(10px, 2.1vw, 14px);
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .employee .price-card img,
  .employee .price-card--employee img,
  .employee .price-card--company img {
    align-self: center;
    width: clamp(48px, 9vw, 64px);
    height: clamp(48px, 9vw, 64px);
    object-fit: contain;
  }

  .employee .price-card--meal img {
    width: min(92px, 92%);
    height: clamp(52px, 10vw, 68px);
    object-fit: cover;
  }

  .employee .price-card > strong {
    display: flex;
    align-items: baseline;
    justify-content: center;
    align-self: end;
    width: 100%;
    min-height: 38px;
    font-size: clamp(23px, 4.8vw, 30px);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    white-space: nowrap;
  }

  .employee .price-card small {
    margin-left: 3px;
    font-size: 0.72em;
    line-height: 1;
  }

  .employee .split-arrow {
    align-self: center;
    width: 100%;
    max-width: clamp(24px, 5vw, 32px);
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero {
    --hero-height: calc(100svh - 56px);
    --hero-action-bottom: 12px;
    --hero-action-block: 104px;
    --hero-award-gap: 8px;
    --hero-award-size: 88px;
    --hero-logo-width: 136px;
    --hero-logo-height: 43px;
    --hero-card-width: 96px;
  }

  .hero__logo {
    left: 14px;
    top: 12px;
  }

  .hero__visual > .hero__card {
    left: 14px;
    top: calc(12px + var(--hero-logo-height) + 6px);
  }

  .hero h1 {
    top: 43%;
    font-size: clamp(21px, 5.3vw, 24px);
  }

  .hero__person {
    height: min(72%, 370px);
  }

  .hero__actions {
    gap: 8px;
  }

  .hero .arrow-button {
    height: 48px;
    min-height: 48px;
  }
}

/* Desktop section rhythm: 60px between the stage copy and tax content. */
@media (min-width: 1200px) {
  .company-use {
    height: 632px;
  }

  .tax-reform {
    height: 558px;
  }

  .tax-infographic,
  .tax-points {
    top: 32px;
  }
}

/*
 * 2026-08-04 responsive lock.
 * These rules replace accumulated breakpoint coordinates with a small set of
 * invariant layout contracts: CTAs reserve their icon column, comparison
 * panels may shrink inside their grid, and mobile content follows reading
 * order without fixed-position overflow.
 */
.hero .arrow-button,
.mid-cta .arrow-button,
.mid-cta--2 .arrow-button,
.mid-cta--3 .arrow-button {
  --cta-icon-size: 34px;
  display: grid;
  grid-template-columns: var(--cta-icon-size) minmax(0, 1fr) var(--cta-icon-size);
  column-gap: 8px;
  align-items: center;
  padding: 8px 10px;
}

.hero .arrow-button::before,
.mid-cta .arrow-button::before,
.mid-cta--2 .arrow-button::before,
.mid-cta--3 .arrow-button::before {
  grid-column: 1;
  width: var(--cta-icon-size);
  height: 1px;
  content: "";
}

.hero .arrow-button > span,
.mid-cta .arrow-button > span,
.mid-cta--2 .arrow-button > span,
.mid-cta--3 .arrow-button > span {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  overflow: visible;
  line-height: 1.35;
  white-space: nowrap;
}

.hero .arrow-button > i,
.mid-cta .arrow-button > i,
.mid-cta--2 .arrow-button > i,
.mid-cta--3 .arrow-button > i {
  position: relative;
  inset: auto;
  grid-column: 3;
  justify-self: end;
  width: var(--cta-icon-size);
  height: var(--cta-icon-size);
  transform: none;
}

.arrow-button--white {
  --cta-icon-background: #fff;
  --cta-icon-color: var(--green-700);
}

.arrow-button--white > i {
  border: 1px solid currentColor;
}

.arrow-button i::before,
.hero .arrow-button i::before {
  width: 13px;
  height: 1.5px;
  border: 0;
  background: currentColor;
  transform: translate(-58%, -50%);
}

.arrow-button i::after,
.hero .arrow-button i::after {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

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

.takehome-grid > .takehome-panel,
.takehome-panel h3,
.takehome-panel .takehome-chart {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.takehome-panel h3 {
  height: auto;
  min-height: 85px;
  padding: 10px 16px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.form-shell.form-shell--embedded {
  min-height: 0;
}

.form-shell--embedded .formrun-embed {
  height: 1120px;
  min-height: 0;
  overflow: hidden;
}

.form-shell--embedded .formrun-embed iframe {
  display: block;
  width: 100%;
  height: 1200px;
  border: 0;
  transform: translateY(-80px);
}

.contact-section.contact-section--embedded {
  min-height: 0;
}

@media (min-width: 1200px) {
  .hero .arrow-button {
    font-size: clamp(14px, 1.1vw, 16px);
  }

  .hero__visual > .hero__card {
    left: auto;
    right: clamp(28px, 3.6vw, 54px);
    top: 22%;
    width: clamp(176px, 14vw, 210px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .takehome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.3vw, 24px);
  }

  .takehome-panel h3 {
    min-height: 58px;
    padding: 8px 10px;
    font-size: clamp(16px, 1.8vw, 18px);
  }

  .hero__visual > .hero__card {
    left: auto;
    right: clamp(28px, 6vw, 72px);
    top: 42%;
  }
}

@media (max-width: 767px) {
  .hero {
    --hero-award-size: clamp(112px, 29vw, 124px);
    background: #003e36;
  }

  .hero__person {
    left: auto;
    right: clamp(-92px, -20vw, -70px);
    top: 0;
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .hero__visual::after {
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(0, 62, 54, 0.98) 0%,
      rgba(0, 62, 54, 0.9) 35%,
      rgba(0, 62, 54, 0.48) 62%,
      rgba(0, 62, 54, 0.12) 100%
    );
  }

  .hero__visual > .hero__card {
    left: 16px;
    right: auto;
    top: calc(16px + var(--hero-logo-height) + 28px);
    width: var(--hero-card-width);
  }

  .hero__awards {
    grid-template-columns: repeat(2, var(--hero-award-size));
    gap: 8px;
  }

  .hero-award,
  .hero-award--id,
  .hero-award--indeed {
    width: var(--hero-award-size);
  }

  .hero .arrow-button {
    --cta-icon-size: 32px;
    font-size: clamp(14px, 4vw, 16px);
  }

  .mid-cta,
  .mid-cta--1,
  .mid-cta--2,
  .mid-cta--3 {
    background: #fff;
  }

  .takehome-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .takehome-panel h3 {
    min-height: 52px;
    padding: 8px 10px;
    font-size: clamp(16px, 4.6vw, 18px);
  }

  .tax-merit > h2 {
    width: calc(100% - 40px);
    font-size: clamp(17px, 4.7vw, 20px);
    line-height: 1.65;
  }

  .money-proof__note {
    max-width: 100%;
    margin-top: 14px;
    padding: 0 4px;
    font-size: 10.5px;
    line-height: 1.75;
    text-align: right;
  }

  .money-proof__note > p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    text-align: right;
  }

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

  .tax-points {
    order: 1;
  }

  .tax-infographic {
    order: 2;
  }

  .comparison-scroll {
    --comparison-row-width: 104px;
    --comparison-column-width: calc(100vw - 120px);
    scroll-padding-inline-start: calc(16px + var(--comparison-row-width));
    scroll-snap-type: x mandatory;
  }

  .comparison-table,
  .comparison-row {
    width: calc(
      var(--comparison-row-width) +
      var(--comparison-column-width) +
      var(--comparison-column-width) +
      var(--comparison-column-width) +
      var(--comparison-column-width)
    );
  }

  .comparison-services {
    left: var(--comparison-row-width);
    grid-template-columns: repeat(4, var(--comparison-column-width));
    width: calc(
      var(--comparison-column-width) +
      var(--comparison-column-width) +
      var(--comparison-column-width) +
      var(--comparison-column-width)
    );
  }

  .comparison-body {
    width: inherit;
  }

  .comparison-row {
    grid-template-columns: var(--comparison-row-width) minmax(0, 1fr);
  }

  .comparison-cells {
    grid-template-columns: repeat(4, var(--comparison-column-width));
  }

  .comparison-service,
  .comparison-cell {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero__person {
    right: clamp(-78px, -19vw, -60px);
    height: 100%;
  }

  .hero__visual > .hero__card {
    left: 14px;
    top: calc(12px + var(--hero-logo-height) + 22px);
  }
}

/* Authoritative final layout contracts. Keep this block last. */
.mobile-navigation,
.comparison-mobile-scroll {
  display: none;
}

.outcomes {
  height: auto;
  min-height: 0;
  padding: 0 var(--space-8) var(--space-16);
}

.outcomes__bridge {
  width: calc(100% + var(--space-16));
  height: auto;
  margin: 0 calc(-1 * var(--space-8));
  padding: var(--space-8) var(--space-6) var(--space-16);
}

.outcomes__bridge h2,
.outcomes__bridge > strong {
  margin-top: var(--space-4);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: var(--space-6);
  height: auto;
  margin-top: var(--space-8);
  padding: 0;
}

.outcome-grid > .outcome-card,
.outcome-grid > .outcome-card:nth-child(1),
.outcome-grid > .outcome-card:nth-child(2),
.outcome-grid > .outcome-card:nth-child(3) {
  position: relative;
  inset: auto;
  align-self: start;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: var(--space-4);
  width: 100%;
  height: auto;
  min-height: 0;
  padding: var(--space-8) var(--space-6) var(--space-6);
  overflow: visible;
  transform: none;
}

.outcome-grid > .outcome-card > p.outcome-card__body {
  min-height: 0;
  margin: 0 0 var(--space-2);
}

.outcome-grid > .outcome-card > p.outcome-card__proof {
  min-height: 0;
  margin: 0;
  padding: var(--space-4);
}

.mid-cta.mid-cta--3 {
  height: auto;
  min-height: 0;
  row-gap: var(--space-4);
  padding: var(--space-6) var(--content-gutter);
}

.mid-cta.mid-cta--3 > p {
  position: static;
}

.mid-cta.mid-cta--3 > .arrow-button {
  position: relative;
  inset: auto;
  width: min(506px, 100%);
}

@media (min-width: 1200px) {
  .tax-merit > h2,
  .money-proof {
    width: min(1216px, calc(92.4% - 32px));
    max-width: calc(92.4% - 32px);
  }

  .employee__inner {
    grid-template-columns: minmax(380px, 400px) minmax(0, 1fr);
    column-gap: 48px;
  }

  .hero__copy {
    /* Centre the copy block optically between the FV top and the CTA row. */
    padding-top: clamp(86px, 7.2vw, 96px);
  }
}

@media (min-width: 1200px) and (max-height: 700px) {
  .hero__copy {
    padding-top: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .outcomes {
    padding: 0 var(--space-6) var(--space-16);
  }

  .outcomes__bridge {
    width: calc(100% + var(--space-12));
    margin-inline: calc(-1 * var(--space-6));
    padding: var(--space-8) var(--space-6) var(--space-12);
  }

  .outcome-grid {
    gap: var(--space-4);
  }

  .outcome-grid > .outcome-card,
  .outcome-grid > .outcome-card:nth-child(1),
  .outcome-grid > .outcome-card:nth-child(2),
  .outcome-grid > .outcome-card:nth-child(3) {
    padding: var(--space-6) var(--space-4) var(--space-4);
  }
}

@media (max-width: 767px) {
  :root {
    --content-gutter: 16px;
    --section-space: 64px;
    --section-space-compact: 48px;
  }

  .site-header,
  .site-header__inner {
    height: 56px;
  }

  .site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    align-items: center;
    width: 100%;
  }

  .header-logo {
    width: auto;
    height: 56px;
    padding-left: 16px;
  }

  .header-logo img {
    width: 104px;
    height: 28px;
  }

  .site-header > .site-header__inner > nav,
  .header-actions {
    display: none;
  }

  .mobile-navigation {
    position: relative;
    z-index: 40;
    display: block;
    grid-column: 2;
    justify-self: end;
    width: 56px;
    height: 56px;
  }

  .mobile-navigation > summary {
    display: grid;
    width: 56px;
    height: 56px;
    cursor: pointer;
    list-style: none;
    place-items: center;
    color: var(--green-950);
    touch-action: manipulation;
  }

  .mobile-navigation > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation__icon {
    display: grid;
    gap: 5px;
    width: 24px;
  }

  .mobile-navigation__icon i {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(2) {
    opacity: 0;
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .mobile-navigation__panel {
    position: absolute;
    top: 56px;
    right: 0;
    display: grid;
    gap: 0;
    width: min(320px, 100vw);
    height: auto;
    padding: 8px 16px 16px;
    border-top: 1px solid rgba(0, 62, 54, 0.12);
    background: #fff;
    box-shadow: 0 16px 30px rgba(0, 62, 54, 0.18);
  }

  .site-header .mobile-navigation__panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 62, 54, 0.12);
    font-size: 14px;
    font-weight: 700;
  }

  .site-header .mobile-navigation__panel .mobile-navigation__contact {
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    border: 0;
    border-radius: var(--radius-control);
    background: var(--orange-deep);
    color: #fff;
  }

  .problems h2,
  #problem-title {
    left: 50%;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    text-align: center;
    white-space: normal;
    transform: translateX(-50%);
  }

  .tax-merit,
  .money-proof,
  .takehome-grid,
  .takehome-panel,
  .takehome-chart {
    max-width: 100%;
  }

  .tax-merit > h2 {
    left: 50%;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    transform: translateX(-50%);
  }

  .comparison {
    height: auto;
    min-height: 0;
    padding: var(--section-space) 0 var(--section-space-compact);
    overflow: hidden;
  }

  .comparison > h2 {
    position: static;
    width: calc(100% - 32px);
    margin: 0 auto 24px;
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.35;
    text-align: center;
    transform: none;
  }

  .comparison-scroll {
    display: none;
  }

  .comparison-mobile-scroll {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 0 16px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .comparison-mobile-card {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .outcomes {
    padding: 0 var(--space-4) var(--space-12);
  }

  .outcomes__bridge {
    width: calc(100% + var(--space-8));
    margin-inline: calc(-1 * var(--space-4));
    padding: var(--space-8) var(--space-4) var(--space-12);
  }

  .outcomes__bridge h2,
  .outcomes__bridge > strong {
    margin-top: var(--space-2);
  }

  .outcome-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    width: 100%;
    margin-top: var(--space-8);
  }

  .outcome-grid > .outcome-card,
  .outcome-grid > .outcome-card:nth-child(1),
  .outcome-grid > .outcome-card:nth-child(2),
  .outcome-grid > .outcome-card:nth-child(3) {
    grid-template-rows: auto auto auto;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-4) var(--space-4);
  }

  .outcome-grid > .outcome-card header {
    display: grid;
    grid-template-columns: 48px minmax(72px, 1fr) 48px;
    grid-template-areas:
      "number icon spacer"
      "title title title";
    gap: var(--space-4) var(--space-2);
    align-items: center;
  }

  .outcome-grid > .outcome-card .number-badge {
    grid-area: number;
    align-self: start;
    justify-self: start;
  }

  .outcome-grid > .outcome-card header img {
    grid-area: icon;
    justify-self: center;
    width: 72px;
    height: 72px;
    max-width: none;
    padding: var(--space-2);
    object-fit: contain;
  }

  .outcome-grid > .outcome-card h3 {
    grid-area: title;
    width: 100%;
    margin: 0;
    font-size: clamp(20px, 5.8vw, 24px);
    line-height: 1.45;
    text-align: center;
  }

  .outcome-grid > .outcome-card > p.outcome-card__body {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .outcome-grid > .outcome-card > p.outcome-card__proof {
    display: grid;
    min-height: 72px;
    margin: 0;
    padding: var(--space-4);
    border-radius: var(--radius-card);
    place-items: center;
    text-align: center;
  }

  .employee__message {
    margin-top: var(--space-6);
  }
}

/* Final type rhythm for the three usage-reason cards. */
.stage-card h3 {
  min-height: 54px;
  margin: 18px 7px 0;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.stage-card > p {
  margin: 0 7px;
  line-height: 1.65;
  letter-spacing: -0.012em;
}

@media (max-width: 767px) {
  .stage-card h3 {
    min-height: 0;
    margin: 10px 0 0;
    line-height: 1.35;
  }

  .stage-card > p {
    margin: 4px 0 0;
    line-height: 1.65;
  }
}

/*
 * 2026-08-04 visual consistency lock.
 * Keep brand-green surfaces, outcome cards, notes and the desktop FV on one
 * shared rhythm instead of allowing legacy breakpoint rules to diverge.
 */
.outcomes__bridge {
  background: linear-gradient(95.1deg, #02493f 4.5%, #024c42 75.75%, #05af97 134.5%);
}

@media (min-width: 768px) {
  .outcome-grid {
    align-items: stretch;
  }

  .outcome-grid > .outcome-card,
  .outcome-grid > .outcome-card:nth-child(1),
  .outcome-grid > .outcome-card:nth-child(2),
  .outcome-grid > .outcome-card:nth-child(3) {
    align-self: stretch;
    grid-template-rows: auto 1fr minmax(96px, auto);
  }

  .outcome-grid > .outcome-card > p.outcome-card__proof {
    min-height: 96px;
  }
}

/* Notes use one quieter scale throughout the page. */
:root {
  --type-note: 11px;
  --leading-note: 1.6;
}

.employee__note,
.merchant-note,
.tax-points > p,
.money-proof__note,
.money-proof__note > p {
  font-size: var(--type-note);
  line-height: var(--leading-note);
}

@media (max-width: 767px) {
  :root {
    --type-note: 10px;
  }
}

/* Use the supplied curved uplift arrow without reconstructing it in CSS. */
.tax-chart > .tax-chart__arrow {
  left: calc(50% - 72px);
  top: 56px;
  width: 144px;
  height: 100px;
  background: url("../assets/increase-arrow.png") center / contain no-repeat;
  transform: none;
  transform-origin: center;
}

.tax-chart > .tax-chart__arrow::before,
.tax-chart > .tax-chart__arrow::after {
  content: none;
}

@keyframes tax-arrow-settle {
  from {
    opacity: 0;
    transform: translate(-8px, 6px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 599px) {
  .tax-chart > .tax-chart__arrow {
    left: 34%;
    top: 28px;
    width: 34%;
    height: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tax-infographic .tax-chart__arrow {
    transform: none;
  }
}

/* Compact, even type rhythm for all three usage cards. */
@media (min-width: 768px) {
  .stage-card h3 {
    align-content: start;
    min-height: 50px;
    margin: 20px 7px 0;
    line-height: 1.25;
    letter-spacing: -0.03em;
  }

  .stage-card > p {
    margin: 12px 7px 0;
    line-height: 1.5;
    letter-spacing: -0.05em;
  }
}

/* Desktop FV: copy, CARELO logo and CTA row share one vertical axis. */
@media (min-width: 1200px) {
  .hero__stage {
    --hero-left-edge: clamp(48px, 5.7vw, 78px);
    --hero-copy-top-lock: clamp(86px, 7.2vw, 96px);
    --hero-title-size-lock: clamp(40px, 3.5vw, 48px);
    --hero-logo-height-lock: 80px;
    --hero-cta-height-lock: 58px;
    --hero-cta-bottom-lock: clamp(42px, 6.5vh, 54px);
  }

  .hero__copy {
    position: absolute;
    left: var(--hero-left-edge);
    top: var(--hero-copy-top-lock);
    bottom: calc(var(--hero-cta-bottom-lock) + var(--hero-cta-height-lock));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(528px, calc(49% - var(--hero-left-edge)));
    padding: 0;
  }

  .hero h1 {
    font-size: var(--hero-title-size-lock);
  }

  .hero__logo {
    align-self: center;
    justify-self: start;
    width: 260px;
    height: var(--hero-logo-height-lock);
    margin: 0;
  }

  .hero__actions {
    left: var(--hero-left-edge);
    bottom: var(--hero-cta-bottom-lock);
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 16px;
    width: min(548px, calc(49% - var(--hero-left-edge)));
    height: var(--hero-cta-height-lock);
    padding: 0;
    transform: none;
  }

  .hero .arrow-button {
    grid-template-columns: minmax(0, 1fr) var(--cta-icon-size);
    height: var(--hero-cta-height-lock);
    min-height: var(--hero-cta-height-lock);
    padding: 8px 10px 8px 24px;
  }

  .hero .arrow-button::before {
    display: none;
  }

  .hero .arrow-button > span {
    grid-column: 1;
    transform: translateY(1px);
  }

  .hero .arrow-button > i {
    grid-column: 2;
  }

  .arrow-button i::before,
  .hero .arrow-button i::before {
    transform: translate(-50%, -50%);
  }

  .stage-grid {
    top: 234px;
  }
}

@media (min-width: 1200px) and (max-height: 700px) {
  .hero__stage {
    --hero-copy-top-lock: 60px;
  }
}

/* 2026-08-05 final visual corrections. */
.company-use > .section-rule {
  display: none;
}

.mid-cta > .arrow-button,
.mid-cta > .arrow-button:hover,
.mid-cta > .arrow-button:active,
.mid-cta > .arrow-button:focus-visible {
  box-shadow: none;
  filter: none;
  transform: none;
}

.contact-section--embedded > h2 {
  font-size: var(--type-section);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__visual {
    z-index: auto;
  }

  .hero__person {
    z-index: 1;
  }

  .hero__visual > .hero__card {
    z-index: 3;
    left: max(52%, calc(100% - 390px));
    right: auto;
    top: clamp(24px, 4.5vh, 36px);
    width: clamp(112px, 13vw, 144px);
  }

  .hero__awards {
    z-index: 3;
  }
}

@media (max-width: 767px) {
  .merchants {
    height: 436px;
    min-height: 436px;
  }

  .merchant-note {
    z-index: 2;
    top: 316px;
    padding: 0 8px 28px;
  }
}

/* 2026-08-05 intermediate FV and text-tone corrections. */
.benefit-card > p,
.employee__note,
.merchant-note,
.tax-chart > p,
.tax-points > p,
.money-proof__note,
.outcome-card > p.outcome-card__body {
  color: var(--body);
}

@media (max-width: 1199px) {
  .employee h2 {
    text-align: center;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .hero__visual > .hero__card {
    z-index: 5;
    left: clamp(270px, 35vw, 420px);
    right: auto;
    top: calc(
      var(--hero-copy-top) +
      clamp(36px, 5vw, 44px) +
      var(--hero-title-block-height) +
      var(--hero-logo-gap)
    );
    width: clamp(112px, 13vw, 144px);
  }
}

/* 2026-08-06 Google Docs audit fixes — authoritative responsive contract. */
:root {
  --type-note: 11px;
  --leading-note: 1.65;
  --header-height: 68px;
  --content-wide: 1366px;
}

html {
  scroll-padding-top: calc(var(--header-height) + var(--space-4));
}

body.navigation-open {
  overflow: hidden;
}

.site-header a,
.mobile-navigation summary,
.form-shell--embedded > a,
.site-footer a {
  min-height: 44px;
}

.site-header a,
.form-shell--embedded > a,
.site-footer a {
  display: inline-flex;
  align-items: center;
}

.header-download,
.header-contact,
.mobile-navigation__panel a,
.arrow-button,
.sp-sticky-cta {
  font-weight: var(--weight-heading);
}

.header-contact,
.mobile-navigation__contact,
.arrow-button--orange,
.mid-cta .arrow-button--orange,
.sp-sticky-cta {
  background: var(--orange-deep);
  color: #fff;
}

.header-download,
.arrow-button--white {
  color: var(--green-800);
}

.comparison-cell--mark-excellent,
.comparison-mobile-value--excellent,
.merchant-intro strong,
.merchant-note strong,
.outcome-card h3,
.outcome-card__proof,
.form-consent a {
  color: var(--green-800);
}

.comparison-cell--mark-good,
.comparison-mobile-value--good {
  color: var(--green-600);
}

.comparison-cell--mark-fair,
.comparison-mobile-value--fair {
  color: var(--orange-deep);
}

.comparison-cell--mark-poor,
.comparison-mobile-value--poor {
  color: var(--body);
}

.employee__note,
.merchant-note,
.tax-chart > p,
.tax-points > p,
.money-proof__note,
.money-proof__note > p,
.outcome-card__body,
.form-consent,
.site-footer small {
  font-size: var(--type-note);
  line-height: var(--leading-note);
}

.mid-cta > .arrow-button,
.mid-cta > .arrow-button:hover,
.mid-cta > .arrow-button:active,
.mid-cta > .arrow-button:focus-visible,
.sp-sticky-cta,
.sp-sticky-cta:hover,
.sp-sticky-cta:active {
  box-shadow: none;
  filter: none;
}

.merchant-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.merchant-row,
.merchant-row:hover,
.merchant-row:active,
.merchant-logo:hover,
.merchant-logo:active {
  animation-play-state: running !important;
}

.flow-step h3 {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: balance;
}

.comparison-swipe-hint,
.comparison-pagination,
.sp-sticky-cta {
  display: none;
}

.form-consent {
  width: min(760px, 100%);
  margin: 0 auto var(--space-3);
  color: var(--body);
  text-align: center;
}

.form-consent a {
  display: inline;
  min-height: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-shell--embedded > a {
  justify-content: center;
  width: fit-content;
  margin: var(--space-3) auto 0;
  padding: var(--space-2) var(--space-4);
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section--embedded > h2 {
  font-size: var(--type-section);
  line-height: var(--leading-section);
}

.site-footer {
  background: var(--green-950);
  color: #fff;
  padding: var(--space-12) var(--content-gutter) var(--space-6);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  width: min(var(--content-max), 100%);
  margin: 0 auto var(--space-6);
}

.site-footer strong {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 16px;
}

.site-footer address {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.site-footer nav {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.site-footer a {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer > small {
  display: block;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .flow-grid {
    border-top: 0;
    background: linear-gradient(var(--green-100), var(--green-100)) left top / calc(100% - (100% / 6)) 2px no-repeat;
  }
}

@media (max-width: 1180px) {
  .site-header > .site-header__inner > nav[aria-label="ページ内ナビゲーション"] {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(150px, 1fr) auto 56px;
    width: 100%;
  }

  .mobile-navigation {
    position: relative;
    z-index: 102;
    display: block;
  }

  .mobile-navigation > summary {
    position: relative;
    z-index: 104;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: var(--header-height);
    cursor: pointer;
    list-style: none;
  }

  .mobile-navigation > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation__icon {
    display: grid;
    gap: 5px;
    width: 24px;
  }

  .mobile-navigation__icon i {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: var(--radius-control);
    background: var(--green-950);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(2) {
    opacity: 0;
  }

  .mobile-navigation[open] .mobile-navigation__icon i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-navigation[open]::before {
    content: "";
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 0;
    background: rgba(0, 32, 28, 0.48);
  }

  .mobile-navigation__panel {
    position: fixed;
    z-index: 103;
    top: var(--header-height);
    right: 0;
    display: grid;
    align-content: start;
    width: min(88vw, 380px);
    max-height: calc(100dvh - var(--header-height));
    padding: var(--space-4);
    overflow-y: auto;
    background: #fff;
    box-shadow: -12px 18px 32px rgba(0, 32, 28, 0.16);
  }

  .mobile-navigation[open] > .mobile-navigation__panel {
    display: grid !important;
  }

  .mobile-navigation:not([open]) .mobile-navigation__panel {
    display: none;
  }

  .mobile-navigation__panel a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 var(--space-4);
    border-bottom: 1px solid var(--green-100);
    color: var(--green-950);
  }

  .mobile-navigation__panel .mobile-navigation__contact {
    justify-content: space-between;
    margin-top: var(--space-4);
    border: 0;
    border-radius: var(--radius-control);
    color: #fff;
  }

  .hero__visual > .hero__card {
    z-index: 5;
    left: 3.5%;
    right: auto;
    top: 12%;
    width: clamp(112px, 15vw, 160px);
  }

  .hero__awards {
    z-index: 6;
    overflow: visible;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .header-actions {
    display: grid;
    grid-template-columns: minmax(180px, auto) minmax(154px, auto);
  }

  .header-actions a {
    padding-inline: var(--space-4);
    white-space: nowrap;
  }
}

@media (min-width: 1181px) {
  .site-header > .site-header__inner > nav[aria-label="ページ内ナビゲーション"] {
    display: flex !important;
  }

  .mobile-navigation {
    display: none !important;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 220px 180px;
  }

  .header-actions a {
    justify-content: center;
    padding-inline: var(--space-4);
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .header-actions {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --type-note: 11px;
    --header-height: 56px;
    --content-gutter: 16px;
    --section-space: 64px;
  }

  main {
    padding-bottom: 76px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
  }

  .site-header__inner {
    grid-template-columns: 1fr 56px;
    height: var(--header-height);
  }

  .header-logo {
    justify-self: start;
    min-height: var(--header-height);
    padding: 0 var(--space-4);
  }

  .header-logo img {
    width: 124px;
  }

  .mobile-navigation > summary {
    height: var(--header-height);
  }

  .comparison-scroll {
    display: none !important;
  }

  .comparison-swipe-hint {
    display: block;
    margin: 0 auto var(--space-3);
    color: var(--body);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
  }

  .comparison-mobile-scroll {
    display: flex !important;
    gap: var(--space-4);
    width: 100%;
    padding: 0 7.5vw var(--space-3);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 7.5vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .comparison-mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  .comparison-mobile-card {
    flex: 0 0 85vw;
    width: 85vw;
    max-width: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .comparison-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-3);
  }

  .comparison-pagination button {
    width: 44px;
    height: 44px;
    padding: 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .comparison-pagination button::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green-100);
  }

  .comparison-pagination button.is-current::before {
    background: var(--green-800);
  }

  .flow-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border: 0;
    background: linear-gradient(var(--green-100), var(--green-100)) 27px 20px / 2px calc(100% - 72px) no-repeat;
  }

  .flow-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: var(--space-2) var(--space-3);
    min-height: 112px;
    padding: var(--space-4) 0;
    text-align: left;
  }

  .flow-step::before {
    top: 25px;
    left: 20px;
    transform: none;
  }

  .flow-step > span {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .flow-step > img {
    grid-row: 1 / 3;
    grid-column: 2;
    width: 44px;
    height: 44px;
  }

  .flow-step h3 {
    grid-row: 1;
    grid-column: 3;
    margin: 0;
    text-align: left;
  }

  .flow-step p {
    grid-row: 2;
    grid-column: 3;
    text-align: left;
  }

  .hero {
    min-height: 590px;
  }

  .hero__stage {
    min-height: 590px;
  }

  .sp-sticky-cta {
    position: fixed;
    z-index: 95;
    right: 12px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: center;
    min-height: 64px;
    padding: 8px 10px 8px 20px;
    border-radius: var(--radius-control);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sp-sticky-cta > span {
    text-align: center;
  }

  .sp-sticky-cta > i {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
  }

  .sp-sticky-cta > i::before {
    content: "→";
    position: absolute;
    inset: 50% auto auto 50%;
    color: var(--orange-deep);
    font-size: 24px;
    font-style: normal;
    transform: translate(-50%, -54%);
  }

  .sp-sticky-cta--hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(calc(100% + 24px));
  }

  .site-footer {
    padding: var(--space-8) var(--space-4) calc(var(--space-6) + env(safe-area-inset-bottom));
  }

  .site-footer__inner {
    display: grid;
    gap: var(--space-4);
  }

  .site-footer nav {
    display: grid;
    gap: 0;
  }

  .contact-section--embedded > h2 {
    font-size: var(--type-heading-md);
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .merchant-title__word,
  .tax-before span,
  .tax-after span,
  .tax-chart__arrow,
  .tax-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Final accessibility guardrails. This block intentionally comes last so
   earlier desktop/tablet/mobile presets cannot reduce these targets. */
.hero-award span,
.takehome-deduction span,
.takehome-company-insurance span,
.comparison-service small {
  font-size: 11px !important;
}

.site-footer a,
.form-consent a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Tablet FV: keep the card beside the CARELO logo and below the copy. */
@media (min-width: 768px) and (max-width: 1180px) {
  .hero__visual > .hero__card {
    z-index: 5;
    left: clamp(300px, 39vw, 430px);
    right: auto;
    top: clamp(340px, 56%, 374px);
    width: clamp(112px, 13vw, 144px);
    transform: none;
  }
}

/* Sponsor marks: remove the decorative medallions and present the official
   marks as clean, neutral logo plates on every breakpoint. */
.hero-award,
.hero-award--id,
.hero-award--indeed {
  position: relative !important;
  inset: auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: clamp(108px, 9vw, 132px) !important;
  height: auto !important;
  min-height: 108px;
  padding: 10px 8px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.hero-award__base {
  display: none !important;
}

.hero-award .hero-award__logo,
.hero-award--id .hero-award__logo,
.hero-award--indeed .hero-award__logo {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: 54px !important;
  max-width: 78% !important;
  border-radius: 5px;
  object-fit: contain;
}

.hero-award--indeed .hero-award__logo {
  height: 50px !important;
}

.hero-award span,
.hero-award--id span,
.hero-award--indeed span {
  position: static !important;
  inset: auto !important;
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #075c54 !important;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-shadow: none !important;
}

@media (min-width: 1200px) {
  .hero__awards {
    position: absolute;
    z-index: 6;
    right: clamp(18px, 2vw, 30px);
    bottom: clamp(18px, 3vh, 28px);
    left: auto;
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    width: auto;
    transform: none;
  }
}

/* SP final hierarchy: keep the three-line promise dominant and move the
   portrait into a supporting role without changing the desktop composition. */
@media (max-width: 767px) {
  .hero h1 {
    font-size: clamp(26px, 7.1vw, 28px) !important;
    line-height: 1.38 !important;
    letter-spacing: -0.045em;
  }

  .hero__person {
    top: auto !important;
    right: clamp(-86px, -20vw, -70px) !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: 92% !important;
    object-fit: contain !important;
    object-position: right bottom !important;
  }

  .hero__visual::after {
    background: linear-gradient(
      90deg,
      rgba(0, 70, 60, 0.96) 0%,
      rgba(0, 70, 60, 0.78) 42%,
      rgba(0, 70, 60, 0.28) 72%,
      rgba(0, 70, 60, 0.08) 100%
    ) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .outcomes__bridge h2 .sp-only {
    font-size: clamp(18px, 5vw, 21px) !important;
    line-height: 1.55 !important;
    letter-spacing: -0.045em;
  }

  .outcomes__line {
    display: inline-block;
    white-space: nowrap;
  }
}

/* Release 2065 final SP optical correction — must remain last. */
@media (max-width: 767px) {
  .hero h1 {
    top: 260px !important;
    font-size: clamp(29px, 7.8vw, 34px) !important;
    line-height: 1.46 !important;
    letter-spacing: -0.04em !important;
    transform: none !important;
  }

  .hero__person {
    top: auto !important;
    right: clamp(-172px, -34vw, -118px) !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: 94% !important;
    object-fit: contain !important;
    object-position: right bottom !important;
  }

  .hero__visual::after {
    background: linear-gradient(
      90deg,
      rgba(0, 70, 60, 0.97) 0%,
      rgba(0, 70, 60, 0.86) 43%,
      rgba(0, 70, 60, 0.36) 72%,
      rgba(0, 70, 60, 0.08) 100%
    ) !important;
  }
}

/* Release 2066: improve SP FV readability and remove the merchant-note haze. */
.merchant-note {
  opacity: 1 !important;
  filter: none !important;
  animation: none !important;
  animation-timeline: auto !important;
  transform: none !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
  .hero h1 {
    top: 248px !important;
    line-height: 1.58 !important;
  }

  .hero__person {
    right: clamp(-96px, -18vw, -56px) !important;
    height: 90% !important;
  }

  .merchants {
    gap: 13px !important;
    padding: 28px 0 16px !important;
  }

  .merchants > .merchant-note {
    width: calc(100% - 36px) !important;
    margin-top: 2px !important;
    color: #29494e !important;
    font-size: 12.5px !important;
    font-weight: 650;
    line-height: 1.65 !important;
  }

  .merchants + .mid-cta--2 {
    padding-top: 22px !important;
  }
}

/* 2026-08-11 SP hotfix from release 2066.
   Keep this block last: it only corrects the phone FV/flow clipping and CTA
   alignment without rebuilding the rest of the LP. */
.arrow-button,
.hero .arrow-button,
.mid-cta .arrow-button,
.mid-cta--2 .arrow-button,
.mid-cta--3 .arrow-button,
.sp-sticky-cta {
  --cta-icon-size: 44px;
  display: grid !important;
  grid-template-columns: var(--cta-icon-size) minmax(0, 1fr) var(--cta-icon-size) !important;
  align-items: center !important;
  justify-items: center !important;
  column-gap: 12px !important;
  overflow: hidden !important;
  transform: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.arrow-button::before,
.hero .arrow-button::before,
.mid-cta .arrow-button::before,
.mid-cta--2 .arrow-button::before,
.mid-cta--3 .arrow-button::before {
  grid-column: 1 !important;
  display: block !important;
  width: var(--cta-icon-size) !important;
  height: 1px !important;
  content: "" !important;
}

.arrow-button > span,
.hero .arrow-button > span,
.mid-cta .arrow-button > span,
.mid-cta--2 .arrow-button > span,
.mid-cta--3 .arrow-button > span,
.sp-sticky-cta > span {
  grid-column: 2 !important;
  justify-self: center !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  transform: none !important;
}

.arrow-button > i,
.hero .arrow-button > i,
.mid-cta .arrow-button > i,
.mid-cta--2 .arrow-button > i,
.mid-cta--3 .arrow-button > i,
.sp-sticky-cta > i {
  position: relative !important;
  inset: auto !important;
  grid-column: 3 !important;
  justify-self: center !important;
  display: block !important;
  width: var(--cta-icon-size) !important;
  height: var(--cta-icon-size) !important;
  margin: 0 !important;
  border-radius: 50% !important;
  transform: none !important;
}

.arrow-button i::before,
.hero .arrow-button i::before,
.mid-cta .arrow-button i::before,
.mid-cta--2 .arrow-button i::before,
.mid-cta--3 .arrow-button i::before,
.sp-sticky-cta > i::before {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  display: block !important;
  width: 15px !important;
  height: 2px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: currentColor !important;
  content: "" !important;
  transform: translate(-58%, -50%) !important;
}

.arrow-button i::after,
.hero .arrow-button i::after,
.mid-cta .arrow-button i::after,
.mid-cta--2 .arrow-button i::after,
.mid-cta--3 .arrow-button i::after,
.sp-sticky-cta > i::after {
  position: absolute !important;
  left: calc(50% + 3px) !important;
  top: 50% !important;
  display: block !important;
  width: 7px !important;
  height: 7px !important;
  border-top: 2px solid currentColor !important;
  border-right: 2px solid currentColor !important;
  content: "" !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.arrow-button:hover,
.arrow-button:active,
.arrow-button:focus-visible,
.hero .arrow-button:hover,
.hero .arrow-button:active,
.mid-cta .arrow-button:hover,
.mid-cta .arrow-button:active,
.mid-cta--2 .arrow-button:hover,
.mid-cta--2 .arrow-button:active,
.mid-cta--3 .arrow-button:hover,
.mid-cta--3 .arrow-button:active,
.sp-sticky-cta:hover,
.sp-sticky-cta:active {
  transform: none !important;
}

.arrow-button:hover,
.hero .arrow-button:hover,
.mid-cta .arrow-button:hover,
.mid-cta--2 .arrow-button:hover,
.mid-cta--3 .arrow-button:hover,
.sp-sticky-cta:hover {
  filter: brightness(1.04) saturate(1.06) !important;
}

@media (max-width: 767px) {
  .hero {
    --hero-height: clamp(710px, calc(100svh - 56px), 790px) !important;
    --hero-action-bottom: 18px !important;
    --hero-action-block: 116px !important;
    --hero-award-gap: 34px !important;
    --hero-award-size: clamp(100px, 24vw, 116px) !important;
    height: var(--hero-height) !important;
    min-height: var(--hero-height) !important;
    overflow: hidden !important;
  }

  .hero__stage {
    height: var(--hero-height) !important;
    min-height: var(--hero-height) !important;
    overflow: hidden !important;
  }

  .hero__visual {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .hero__person {
    position: absolute !important;
    z-index: 1 !important;
    left: auto !important;
    right: clamp(-96px, -17vw, -58px) !important;
    top: auto !important;
    bottom: -30px !important;
    width: auto !important;
    max-width: none !important;
    height: calc(100% + 30px) !important;
    object-fit: contain !important;
    object-position: right bottom !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .hero__visual::after,
  .hero__stage::before {
    background: linear-gradient(
      90deg,
      rgba(0, 62, 54, 0.98) 0%,
      rgba(0, 62, 54, 0.93) 31%,
      rgba(0, 62, 54, 0.62) 54%,
      rgba(0, 62, 54, 0.18) 82%,
      rgba(0, 62, 54, 0.05) 100%
    ) !important;
  }

  .hero__logo {
    z-index: 7 !important;
  }

  .hero__visual > .hero__card {
    z-index: 6 !important;
  }

  .hero h1 {
    z-index: 7 !important;
    top: 43.2% !important;
    font-size: clamp(27px, 7vw, 34px) !important;
    line-height: 1.68 !important;
    letter-spacing: -0.055em !important;
  }

  .hero__awards {
    z-index: 8 !important;
    bottom: calc(var(--hero-action-bottom) + var(--hero-action-block) + var(--hero-award-gap)) !important;
  }

  .hero__actions {
    z-index: 9 !important;
    bottom: var(--hero-action-bottom) !important;
    gap: 12px !important;
  }

  .outcomes__bridge h2 .sp-only {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.58 !important;
    letter-spacing: -0.045em !important;
  }

  .outcomes__line {
    display: inline-block !important;
    white-space: nowrap !important;
  }

  .problems h2,
  #problem-title {
    left: 50% !important;
    width: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
    font-size: clamp(23px, 6vw, 26px) !important;
    line-height: 1.42 !important;
    letter-spacing: -0.045em !important;
    text-align: center !important;
    white-space: normal !important;
    text-wrap: balance !important;
    transform: translateX(-50%) !important;
  }

  .hero .arrow-button {
    --cta-icon-size: 36px;
    height: 52px !important;
    min-height: 52px !important;
    padding: 7px 10px !important;
    border-radius: 10px !important;
    font-size: clamp(15px, 4.1vw, 17px) !important;
  }

  .sp-sticky-cta {
    --cta-icon-size: 44px;
    min-height: 64px !important;
    padding: 8px 12px !important;
  }

  .flow {
    height: auto !important;
    min-height: 0 !important;
    padding: 44px 24px 52px !important;
    overflow: visible !important;
  }

  .flow > h2,
  .flow > p,
  .flow-grid {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    transform: none !important;
  }

  .flow > h2 {
    margin: 0 auto 14px !important;
    font-size: clamp(29px, 8vw, 38px) !important;
    line-height: 1.32 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .flow > p {
    margin: 0 auto 86px !important;
    color: var(--body) !important;
    font-size: clamp(16px, 4.3vw, 20px) !important;
    line-height: 1.65 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .flow-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    border: 0 !important;
    background: linear-gradient(var(--green-100), var(--green-100)) 28px 28px / 2px calc(100% - 82px) no-repeat !important;
  }

  .flow-step {
    display: grid !important;
    grid-template-columns: 58px 64px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    min-height: 124px !important;
    padding: 18px 0 !important;
    border-top: 2px solid var(--green-100) !important;
  }

  .flow-step::before {
    left: 20px !important;
    top: 28px !important;
  }

  .flow-step > span {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    left: 0 !important;
    top: -43px !important;
    font-size: 22px !important;
  }

  .flow-step > img {
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
  }

  .flow-step h3 {
    grid-column: 3 !important;
    grid-row: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 8px !important;
    font-size: clamp(19px, 5.3vw, 24px) !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .flow-step p {
    grid-column: 3 !important;
    grid-row: 2 !important;
    width: auto !important;
    margin: 0 !important;
    font-size: clamp(15px, 4vw, 18px) !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }
}

@media (min-width: 768px) {
  .employee {
    padding-bottom: 24px !important;
  }

  .employee__message {
    margin-top: 24px !important;
  }

  .employee__bottom-rule {
    margin-top: 18px !important;
  }

  .merchants {
    gap: 22px !important;
    padding: 28px 0 24px !important;
  }

  .mid-cta--2 {
    padding-top: 28px !important;
  }
}

@media (max-width: 767px) {
  .employee {
    padding-bottom: 18px !important;
  }

  .employee__message {
    margin-top: 22px !important;
  }

  .employee__bottom-rule {
    margin-top: 18px !important;
  }

  .merchants {
    gap: 12px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .merchants + .mid-cta--2 {
    padding-top: 18px !important;
  }
}

@media (max-width: 420px) {
  .hero {
    --hero-height: clamp(700px, calc(100svh - 56px), 760px) !important;
    --hero-award-gap: 30px !important;
  }

  .hero__person {
    right: clamp(-112px, -23vw, -78px) !important;
    bottom: -28px !important;
  }

  .hero h1 {
    top: 42.8% !important;
    font-size: clamp(27px, 7.4vw, 31px) !important;
    line-height: 1.62 !important;
  }
}

/* 2026-08-11 v2 emergency lock.
   Scope the last corrections narrowly: keep PC CTA stable, move only the SP FV
   copy up, remove the sticky CTA, and prevent CTA arrows from jumping on hover. */
.sp-sticky-cta {
  display: none !important;
}

.arrow-button,
.hero .arrow-button,
.mid-cta .arrow-button,
.mid-cta--2 .arrow-button,
.mid-cta--3 .arrow-button {
  --cta-icon-size: 46px;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-template-columns: none !important;
  column-gap: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  transform: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease !important;
}

.arrow-button::before,
.hero .arrow-button::before,
.mid-cta .arrow-button::before,
.mid-cta--2 .arrow-button::before,
.mid-cta--3 .arrow-button::before {
  display: none !important;
  content: none !important;
}

.arrow-button > span,
.hero .arrow-button > span,
.mid-cta .arrow-button > span,
.mid-cta--2 .arrow-button > span,
.mid-cta--3 .arrow-button > span {
  position: absolute !important;
  z-index: 1 !important;
  left: 50% !important;
  top: 50% !important;
  grid-column: auto !important;
  width: max-content !important;
  max-width: calc(100% - var(--cta-icon-size) - 56px) !important;
  padding: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  transform: translate(-50%, -50%) !important;
}

.arrow-button > i,
.hero .arrow-button > i,
.mid-cta .arrow-button > i,
.mid-cta--2 .arrow-button > i,
.mid-cta--3 .arrow-button > i {
  position: absolute !important;
  inset: auto 16px auto auto !important;
  top: 50% !important;
  grid-column: auto !important;
  display: block !important;
  width: var(--cta-icon-size) !important;
  height: var(--cta-icon-size) !important;
  margin: 0 !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
}

.arrow-button:hover,
.arrow-button:active,
.arrow-button:focus-visible,
.hero .arrow-button:hover,
.hero .arrow-button:active,
.hero .arrow-button:focus-visible,
.mid-cta .arrow-button:hover,
.mid-cta .arrow-button:active,
.mid-cta .arrow-button:focus-visible,
.mid-cta--2 .arrow-button:hover,
.mid-cta--2 .arrow-button:active,
.mid-cta--2 .arrow-button:focus-visible,
.mid-cta--3 .arrow-button:hover,
.mid-cta--3 .arrow-button:active,
.mid-cta--3 .arrow-button:focus-visible {
  transform: none !important;
  box-shadow: none !important;
}

.arrow-button:hover > i,
.arrow-button:active > i,
.hero .arrow-button:hover > i,
.hero .arrow-button:active > i,
.mid-cta .arrow-button:hover > i,
.mid-cta .arrow-button:active > i,
.mid-cta--2 .arrow-button:hover > i,
.mid-cta--2 .arrow-button:active > i,
.mid-cta--3 .arrow-button:hover > i,
.mid-cta--3 .arrow-button:active > i {
  transform: translateY(-50%) !important;
}

.arrow-button:hover,
.hero .arrow-button:hover,
.mid-cta .arrow-button:hover,
.mid-cta--2 .arrow-button:hover,
.mid-cta--3 .arrow-button:hover {
  filter: brightness(0.96) saturate(1.08) !important;
}

@media (min-width: 768px) {
  .hero .arrow-button {
    --cta-icon-size: 42px;
    min-height: var(--hero-cta-height-lock, 58px) !important;
    height: var(--hero-cta-height-lock, 58px) !important;
    padding: 8px calc(var(--cta-icon-size) + 24px) 8px 24px !important;
    font-size: clamp(15px, 1.15vw, 17px) !important;
  }
}

@media (max-width: 767px) {
  html,
  body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .hero,
  .hero__stage,
  .problems,
  .flow,
  .mid-cta,
  .mid-cta--1,
  .mid-cta--2,
  .mid-cta--3 {
    width: 100vw !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero h1 {
    top: 37.8% !important;
    line-height: 1.58 !important;
  }

  .hero__actions {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .hero .arrow-button {
    --cta-icon-size: 36px;
    width: 100% !important;
    max-width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 7px calc(var(--cta-icon-size) + 18px) 7px 18px !important;
  }

  .hero .arrow-button > i {
    right: 10px !important;
  }

  .flow {
    height: auto !important;
    min-height: 0 !important;
    padding: 40px 24px 48px !important;
    overflow: visible !important;
  }

  .flow > h2,
  .flow > p,
  .flow-grid {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    transform: none !important;
  }

  .flow > h2 {
    margin: 0 auto 12px !important;
    font-size: clamp(28px, 7.2vw, 34px) !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .flow > p {
    margin: 0 auto 42px !important;
    font-size: clamp(15px, 4vw, 18px) !important;
    line-height: 1.65 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .flow-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    border: 0 !important;
    background: linear-gradient(var(--green-100), var(--green-100)) 30px 28px / 2px calc(100% - 84px) no-repeat !important;
  }

  .flow-step {
    display: grid !important;
    grid-template-columns: 64px 62px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 8px 12px !important;
    align-items: center !important;
    min-height: 0 !important;
    padding: 22px 0 24px !important;
    border-top: 2px solid var(--green-100) !important;
  }

  .flow-step::before {
    left: 23px !important;
    top: 28px !important;
  }

  .flow-step > span {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    left: 0 !important;
    top: -42px !important;
    font-size: 22px !important;
  }

  .flow-step > img {
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
  }

  .flow-step h3 {
    grid-column: 3 !important;
    grid-row: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-size: clamp(18px, 4.8vw, 22px) !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .flow-step p {
    grid-column: 3 !important;
    grid-row: 2 !important;
    width: auto !important;
    margin: 0 !important;
    font-size: clamp(14px, 3.8vw, 17px) !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }

  .problems h2,
  #problem-title {
    left: 50% !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    font-size: clamp(21px, 5.6vw, 24px) !important;
    line-height: 1.42 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    top: 37.2% !important;
  }
}

.form-shell--embedded .form-consent {
  margin: var(--space-3) auto 0 !important;
}

.form-shell--embedded > a[href*="form.run"] {
  display: none !important;
}

@media (max-width: 767px) {
  .hero h1 {
    top: 34.8% !important;
  }

  .hero__actions {
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .hero .arrow-button {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    flex: 0 0 auto !important;
    justify-self: start !important;
  }

  .problems h2,
  #problem-title {
    left: 50vw !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    font-size: clamp(20px, 5.2vw, 23px) !important;
  }
}

@media (max-width: 767px) {
  .hero .arrow-button > span {
    left: calc((100vw - 32px) / 2) !important;
  }

  .hero .arrow-button > i {
    left: calc(100vw - var(--cta-icon-size) - 32px) !important;
    right: auto !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    top: 34.4% !important;
  }
}

/* 2026-08-11 v3: CTA/flow/form final lock */
.sp-sticky-cta {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.arrow-button,
.arrow-button:hover,
.arrow-button:focus-visible,
.arrow-button:active {
  transform: none !important;
}

.arrow-button > i,
.arrow-button:hover > i,
.arrow-button:focus-visible > i,
.arrow-button:active > i {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.arrow-button > i::before,
.arrow-button:hover > i::before,
.arrow-button:focus-visible > i::before,
.arrow-button:active > i::before {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.arrow-button:hover {
  filter: brightness(1.06) saturate(1.08) !important;
}

@media (min-width: 768px) {
  .hero__actions {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) !important;
    align-items: center !important;
    gap: clamp(20px, 2.4vw, 32px) !important;
    width: min(100%, 680px) !important;
    max-width: 680px !important;
  }

  .hero .arrow-button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    display: block !important;
    overflow: hidden !important;
    padding: 0 74px 0 24px !important;
    border-radius: 8px !important;
  }

  .hero .arrow-button > span {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    max-width: calc(100% - 100px) !important;
    white-space: nowrap !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero .arrow-button > i {
    left: auto !important;
    right: 12px !important;
    top: 50% !important;
    width: 48px !important;
    height: 48px !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header,
  .site-header__inner,
  main,
  .hero,
  .hero__stage,
  .problems,
  .benefits,
  .stores,
  .flow,
  .faq,
  .contact-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  .hero h1 {
    top: 32.2% !important;
    line-height: 1.34 !important;
  }

  .hero__actions {
    left: 50% !important;
    right: auto !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    transform: translateX(-50%) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    justify-items: stretch !important;
  }

  .hero .arrow-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
    min-height: 52px !important;
    box-sizing: border-box !important;
    display: block !important;
    overflow: hidden !important;
    padding: 0 64px 0 18px !important;
    border-radius: 8px !important;
  }

  .hero .arrow-button > span {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    max-width: calc(100% - 78px) !important;
    white-space: nowrap !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero .arrow-button > i {
    left: auto !important;
    right: 10px !important;
    top: 50% !important;
    width: 36px !important;
    height: 36px !important;
    transform: translateY(-50%) !important;
  }

  .mid-cta .arrow-button {
    width: min(100%, 460px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-inline: auto !important;
    overflow: hidden !important;
  }

  .mid-cta .arrow-button > span {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    max-width: calc(100% - 76px) !important;
    white-space: nowrap !important;
    transform: translate(-50%, -50%) !important;
  }

  .mid-cta .arrow-button > i {
    left: auto !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .flow {
    padding: 42px 22px 54px !important;
    overflow: hidden !important;
  }

  .flow-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    background: linear-gradient(var(--green-100), var(--green-100)) 28px 28px / 2px calc(100% - 58px) no-repeat !important;
  }

  .flow-step {
    display: grid !important;
    grid-template-columns: 56px 54px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 8px 12px !important;
    align-items: center !important;
    min-height: 132px !important;
    height: auto !important;
    padding: 24px 0 !important;
    border-top: 2px solid var(--green-100) !important;
    overflow: visible !important;
  }

  .flow-step::before {
    left: 20px !important;
    top: 50% !important;
    width: 22px !important;
    height: 22px !important;
    transform: translateY(-50%) !important;
  }

  .flow-step > span {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    position: static !important;
    align-self: start !important;
    justify-self: start !important;
    margin: -42px 0 0 0 !important;
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .flow-step > img,
  .flow-step img {
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    object-fit: contain !important;
  }

  .flow-step h3 {
    grid-column: 3 !important;
    grid-row: 1 !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(17px, 4.8vw, 20px) !important;
    line-height: 1.32 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .flow-step p {
    grid-column: 3 !important;
    grid-row: 2 !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(13px, 3.8vw, 16px) !important;
    line-height: 1.55 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .form-shell--embedded .form-consent {
    margin-top: 12px !important;
    font-size: 11px !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    top: 32% !important;
  }
}

/* 2026-08-11 v4: make CTA icons absolute so hover cannot push them upward */
.arrow-button > span,
.hero .arrow-button > span,
.mid-cta .arrow-button > span,
.mid-cta--2 .arrow-button > span,
.mid-cta--3 .arrow-button > span {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  grid-column: auto !important;
  transform: translate(-50%, -50%) !important;
}

.arrow-button > i,
.hero .arrow-button > i,
.mid-cta .arrow-button > i,
.mid-cta--2 .arrow-button > i,
.mid-cta--3 .arrow-button > i {
  position: absolute !important;
  inset: auto !important;
  left: auto !important;
  right: 12px !important;
  top: 50% !important;
  grid-column: auto !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important;
}

.arrow-button:hover > i,
.arrow-button:focus-visible > i,
.arrow-button:active > i,
.hero .arrow-button:hover > i,
.hero .arrow-button:focus-visible > i,
.hero .arrow-button:active > i,
.mid-cta .arrow-button:hover > i,
.mid-cta .arrow-button:focus-visible > i,
.mid-cta .arrow-button:active > i,
.mid-cta--2 .arrow-button:hover > i,
.mid-cta--2 .arrow-button:focus-visible > i,
.mid-cta--2 .arrow-button:active > i,
.mid-cta--3 .arrow-button:hover > i,
.mid-cta--3 .arrow-button:focus-visible > i,
.mid-cta--3 .arrow-button:active > i {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.arrow-button i::before,
.arrow-button:hover i::before,
.arrow-button:focus-visible i::before,
.arrow-button:active i::before,
.arrow-button i::after,
.arrow-button:hover i::after,
.arrow-button:focus-visible i::after,
.arrow-button:active i::after {
  transform-origin: center !important;
}

@media (max-width: 767px) {
  .hero__actions {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }

  .hero .arrow-button {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero .arrow-button > i,
  .mid-cta .arrow-button > i,
  .mid-cta--2 .arrow-button > i,
  .mid-cta--3 .arrow-button > i {
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
  }

  .problems h2,
  #problem-title {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    margin-inline: auto !important;
    transform: none !important;
    text-align: center !important;
  }
}

/* 2026-08-11 v5: button-level arrow rendering, independent from legacy <i> layout */
.arrow-button {
  overflow: hidden !important;
}

.arrow-button > i {
  display: none !important;
}

.arrow-button::after {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  z-index: 3 !important;
  display: grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--orange-deep) !important;
  box-shadow: 0 0 0 2px rgba(213, 173, 69, 0.3) inset !important;
  content: "→" !important;
  font-family: var(--font-gothic) !important;
  font-size: 30px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  transform: translateY(-50%) !important;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease !important;
}

.arrow-button--white::after {
  color: var(--green) !important;
  box-shadow: 0 0 0 2px var(--green) inset !important;
}

.arrow-button:hover::after,
.arrow-button:focus-visible::after,
.arrow-button:active::after {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 767px) {
  .arrow-button::after {
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 24px !important;
  }
}
