body.page-how_it_works {
      background:
        linear-gradient(180deg, #ffffff 0%, #f7fbf8 46%, #edf8f2 100%);
    }

    body.page-how_it_works main {
      max-width: 1280px;
      padding-top: 26px;
      padding-bottom: 28px;
    }

    .how-page {
      --how-green: #007a3d;
      --how-green-dark: #006432;
      --how-green-soft: #edf8f2;
      --how-border: #d9e7de;
      --how-ink: #101820;
      --how-muted: #53616d;
      --how-red: #e03434;
      --how-red-soft: #fff1f1;
      display: grid;
      gap: 22px;
      color: var(--how-ink);
    }

    .how-page h1,
    .how-page h2,
    .how-page h3 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      letter-spacing: 0;
    }

    .how-page h1 {
      font-size: clamp(42px, 5.8vw, 68px);
      line-height: 1.08;
      font-weight: 900;
    }

    .how-page h2 {
      font-size: clamp(28px, 3.1vw, 40px);
      line-height: 1.12;
      font-weight: 900;
    }

    .how-page h3 {
      font-size: 18px;
      line-height: 1.2;
      font-weight: 900;
    }

    .how-page p {
      color: var(--how-muted);
    }

    .how-page .button {
      min-height: 50px;
      border-radius: 8px;
      background: var(--how-green);
      border-color: var(--how-green);
      color: #ffffff;
      box-shadow: 0 14px 28px rgba(0, 122, 61, 0.2);
    }

    .how-page .button:hover {
      background: var(--how-green-dark);
      border-color: var(--how-green-dark);
    }

    .how-page .button.secondary {
      background: #ffffff;
      color: var(--how-green);
      border-color: rgba(0, 122, 61, 0.42);
      box-shadow: none;
    }

    .how-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
      gap: 34px;
      align-items: center;
      min-height: 585px;
    }

    .how-hero-copy {
      display: grid;
      gap: 22px;
      align-content: center;
      padding: 18px 0;
    }

    .how-hero-copy h1 span {
      display: block;
      color: var(--how-green);
    }

    .how-hero-copy .lead {
      max-width: 56ch;
      font-size: clamp(17px, 1.5vw, 20px);
      line-height: 1.65;
    }

    .how-proof-list {
      display: grid;
      gap: 10px;
      max-width: 520px;
      margin-top: 2px;
    }

    .how-proof-item {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      min-height: 62px;
      padding: 10px 14px;
      border: 1px solid var(--how-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.72);
    }

    .how-proof-item strong {
      display: block;
      font-size: 15px;
      line-height: 1.35;
    }

    .how-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 6px;
    }

    .how-hero-media {
      position: relative;
      min-height: 585px;
      overflow: hidden;
      border-radius: 18px;
      background: #f6f5ef;
    }

    .how-hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 25%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, #ffffff 100%);
      pointer-events: none;
    }

    .how-hero-media > img {
      position: relative;
      z-index: 0;
      width: 100%;
      height: 100%;
      min-height: 585px;
      object-fit: cover;
      object-position: center;
    }

    .how-callout {
      position: absolute;
      right: 18px;
      z-index: 3;
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      width: min(310px, calc(100% - 36px));
      padding: 18px;
      border: 1px solid rgba(16, 24, 32, 0.1);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 40px rgba(16, 24, 32, 0.16);
    }

    .how-callout.top {
      top: 86px;
    }

    .how-callout.bottom {
      top: 176px;
    }

    .how-callout strong {
      display: block;
      line-height: 1.35;
      font-size: 15px;
    }

    .how-section {
      display: grid;
      gap: 22px;
      padding: 30px;
      border: 1px solid var(--how-border);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.82);
    }

    .how-section.flush {
      padding-inline: 22px;
    }

    .how-section.green {
      background:
        linear-gradient(90deg, #f1fbf5 0%, #ffffff 52%, #f3fbf7 100%);
    }

    .how-heading {
      display: grid;
      gap: 8px;
      justify-items: center;
      text-align: center;
    }

    .how-heading p {
      max-width: 70ch;
      line-height: 1.55;
    }

    .how-step-flow {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 34px;
      align-items: stretch;
      padding-inline: 26px;
    }

    .how-step-card {
      position: relative;
      display: grid;
      gap: 10px;
      justify-items: center;
      min-height: 190px;
      padding: 22px 18px;
      border: 1px solid var(--how-border);
      border-radius: 8px;
      background: #ffffff;
      text-align: center;
    }

    .how-step-card:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -28px;
      width: 22px;
      height: 2px;
      background: var(--how-green);
    }

    .how-step-card:not(:last-child)::before {
      content: "";
      position: absolute;
      top: calc(50% - 5px);
      right: -30px;
      width: 10px;
      height: 10px;
      border-top: 2px solid var(--how-green);
      border-right: 2px solid var(--how-green);
      transform: rotate(45deg);
    }

    .how-step-number {
      position: absolute;
      top: 18px;
      left: 18px;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background: var(--how-green-soft);
      color: var(--how-green);
      font-size: 24px;
      font-weight: 900;
    }

    .how-step-card .how-icon {
      margin-top: 4px;
    }

    .how-step-card p,
    .how-process-card p,
    .how-result-card p,
    .how-support-card p {
      font-size: 14px;
      line-height: 1.55;
    }

    .how-kit-flow {
      display: grid;
      grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
      gap: 24px;
      align-items: center;
    }

    .how-kit-image {
      align-self: stretch;
      display: grid;
      align-items: end;
      overflow: hidden;
      min-height: 270px;
      border-radius: 12px;
    }

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

    .how-process-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }

    .how-process-card,
    .how-exam-card,
    .how-result-card {
      display: grid;
      gap: 9px;
      justify-items: center;
      padding: 18px 12px;
      border: 1px solid var(--how-border);
      border-radius: 8px;
      background: #ffffff;
      text-align: center;
    }

    .how-process-card strong,
    .how-result-card strong {
      display: block;
      line-height: 1.25;
      font-size: 15px;
      font-weight: 900;
    }

    .how-exam-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 16px;
    }

    .how-exam-card {
      min-height: 128px;
      align-content: center;
    }

    .how-exam-card strong {
      font-size: 16px;
    }

    .how-results-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .how-result-card {
      grid-template-columns: 72px minmax(0, 1fr);
      justify-items: start;
      align-items: center;
      min-height: 132px;
      padding: 20px;
      text-align: left;
    }

    .how-result-card.is-green {
      background: #eff9f3;
      border-color: #b9dfc7;
    }

    .how-result-card.is-red {
      background: #fff7f7;
      border-color: #f5b8b8;
    }

    .how-result-card.is-red strong {
      color: #8b1f1f;
    }

    .how-result-card .how-icon {
      width: 64px;
      height: 64px;
    }

    .how-urgent {
      display: grid;
      gap: 18px;
      padding: 28px;
      border: 1px solid #f4caca;
      border-radius: 12px;
      background: var(--how-red-soft);
      text-align: center;
    }

    .how-urgent h2 {
      color: #111820;
    }

    .how-urgent-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      align-items: stretch;
    }

    .how-urgent-item {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 8px 18px;
      border-right: 1px solid #f0bcbc;
      text-align: left;
    }

    .how-urgent-item:last-child {
      border-right: 0;
    }

    .how-urgent-item strong {
      display: block;
      color: #26313c;
      font-size: 14px;
      line-height: 1.35;
    }

    .how-urgent-note {
      font-size: 14px;
      line-height: 1.5;
    }

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

    .how-support-card {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(180px, 0.82fr);
      gap: 18px;
      min-height: 245px;
      overflow: hidden;
      border: 1px solid var(--how-border);
      border-radius: 12px;
      background: #ffffff;
    }

    .how-support-card-copy {
      display: grid;
      gap: 14px;
      align-content: center;
      padding: 26px 0 26px 26px;
    }

    .how-check-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .how-check-list li {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      color: #2b3842;
      font-size: 14px;
      line-height: 1.45;
    }

    .how-check-list li::before {
      content: "";
      width: 18px;
      height: 18px;
      margin-top: 1px;
      border-radius: 999px;
      background: var(--how-green);
      box-shadow: inset 0 0 0 5px #ffffff;
    }

    .how-support-card img {
      width: 100%;
      height: 100%;
      min-height: 245px;
      object-fit: cover;
      object-position: center;
    }

    .how-cta {
      display: grid;
      gap: 18px;
      justify-items: center;
      padding: 34px 26px 22px;
      border: 1px solid var(--how-border);
      border-radius: 12px;
      background:
        linear-gradient(90deg, #eef9f3 0%, #ffffff 50%, #eef9f3 100%);
      text-align: center;
    }

    .how-cta h2 span {
      color: var(--how-green);
    }

    .how-cta p {
      max-width: 68ch;
      line-height: 1.55;
    }

    .how-cta-bar {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      width: 100%;
      margin-top: 10px;
      border-top: 1px solid var(--how-border);
    }

    .how-cta-item {
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      justify-content: center;
      padding: 14px 16px 0;
      color: #2d3a43;
      font-size: 14px;
      font-weight: 800;
      border-right: 1px solid var(--how-border);
    }

    .how-cta-item:last-child {
      border-right: 0;
    }

    .how-legal-note {
      display: flex;
      justify-content: center;
      gap: 10px;
      color: #6a7680;
      font-size: 13px;
      line-height: 1.45;
      text-align: center;
    }

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

    .how-icon.small {
      width: 38px;
      height: 38px;
    }

    .how-icon.medium {
      width: 48px;
      height: 48px;
    }

    .how-icon.red {
      filter: brightness(0) saturate(100%) invert(24%) sepia(95%) saturate(2722%) hue-rotate(344deg) brightness(103%) contrast(92%);
    }

    @media (max-width: 1100px) {
      .how-hero,
      .how-kit-flow,
      .how-support-grid {
        grid-template-columns: 1fr;
      }

      .how-hero {
        min-height: auto;
      }

      .how-hero-media {
        min-height: 500px;
      }

      .how-hero-media > img {
        min-height: 500px;
      }

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

      .how-step-card::before,
      .how-step-card::after {
        display: none;
      }

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

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

      .how-urgent-item {
        border-right: 0;
        border-bottom: 1px solid #f0bcbc;
      }

      .how-urgent-item:nth-last-child(-n + 2) {
        border-bottom: 0;
      }
    }

    @media (max-width: 760px) {
      body.page-how_it_works main {
        padding: 18px 18px 26px;
      }

      .how-page {
        gap: 18px;
      }

      .how-hero-copy {
        gap: 18px;
      }

      .how-hero-media,
      .how-hero-media > img {
        min-height: 420px;
      }

      .how-callout {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 10px;
      }

      .how-hero-media {
        display: grid;
        overflow: visible;
        background: transparent;
      }

      .how-hero-media::after {
        display: none;
      }

      .how-hero-media > img {
        border-radius: 14px;
      }

      .how-section,
      .how-section.flush,
      .how-urgent,
      .how-cta {
        padding: 22px 16px;
      }

      .how-step-flow,
      .how-process-grid,
      .how-exam-grid,
      .how-results-grid,
      .how-urgent-grid,
      .how-cta-bar {
        grid-template-columns: 1fr;
        padding-inline: 0;
      }

      .how-result-card,
      .how-urgent-item,
      .how-cta-item {
        grid-template-columns: 56px minmax(0, 1fr);
      }

      .how-urgent-item,
      .how-cta-item {
        border-right: 0;
        border-bottom: 1px solid var(--how-border);
      }

      .how-urgent-item:last-child,
      .how-cta-item:last-child {
        border-bottom: 0;
      }

      .how-support-card {
        grid-template-columns: 1fr;
      }

      .how-support-card-copy {
        padding: 22px;
      }

      .how-support-card img {
        min-height: 230px;
      }
    }

    @media (max-width: 560px) {
      body.page-how_it_works main {
        padding: 16px 14px 24px;
      }

      .how-page {
        gap: 16px;
      }

      .how-hero h1 {
        font-size: clamp(34px, 11vw, 42px);
      }

      .how-hero-media,
      .how-hero-media > img {
        min-height: 320px;
      }

      .how-callout {
        padding: 16px;
      }

      .how-section,
      .how-section.flush,
      .how-urgent,
      .how-cta,
      .how-support-card-copy {
        padding: 18px 14px;
      }

      .how-proof-item,
      .how-result-card,
      .how-urgent-item,
      .how-cta-item {
        grid-template-columns: 48px minmax(0, 1fr);
      }
    }
