:root {
      --blue: #004f78;
      --blue-deep: #063854;
      --blue-soft: #eaf6fb;
      --green: #67b546;
      --green-deep: #4c9334;
      --ink: #1d2f3b;
      --muted: #5c6f7a;
      --line: #d7e4ea;
      --panel: #ffffff;
      --cloud: #f5f9fb;
      --gold: #ffbf3c;
      --shadow: 0 20px 55px rgba(6, 56, 84, .18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: #fff;
      line-height: 1.5;
    }

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

    button,
    input,
    select {
      font: inherit;
    }

    .topbar {
      background: var(--blue-deep);
      color: #fff;
      font-size: .92rem;
    }

    .topbar-inner,
    .nav,
    .wrap {
      width: min(1140px, calc(100% - 36px));
      margin: 0 auto;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 38px;
    }

    .topbar strong {
      color: #b8e78f;
      font-weight: 700;
    }

    .nav-shell {
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      min-width: 230px;
    }

    .logo img {
      width: 260px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: .96rem;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .phone {
      color: var(--blue);
      font-weight: 700;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(0, 79, 120, .94), rgba(6, 56, 84, .96)),
        radial-gradient(circle at 84% 18%, rgba(103, 181, 70, .42), transparent 28%);
      color: #fff;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -80px -110px auto;
      width: 430px;
      height: 430px;
      border: 38px solid rgba(255, 255, 255, .08);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 42px;
      align-items: center;
      padding: 54px 0 62px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 11px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 999px;
      font-size: .86rem;
      font-weight: 700;
      letter-spacing: 0;
      margin: 0 0 18px;
    }

    .eyebrow span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(103, 181, 70, .22);
    }

    h1 {
      margin: 0;
      font-size: clamp(2.35rem, 4.7vw, 4.75rem);
      line-height: .98;
      letter-spacing: 0;
      max-width: 700px;
    }

    .hero-copy {
      margin: 22px 0 0;
      max-width: 610px;
      font-size: 1.15rem;
      color: rgba(255, 255, 255, .88);
    }

    .hero-actions {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      min-height: 50px;
      border: 0;
      border-radius: 4px;
      padding: 14px 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--green);
      color: #fff;
      box-shadow: 0 14px 30px rgba(24, 80, 36, .25);
    }

    .btn-primary:hover {
      background: var(--green-deep);
    }

    .btn-secondary {
      background: #fff;
      color: var(--blue);
    }

    .micro-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
      max-width: 650px;
    }

    .proof-pill {
      padding: 14px 15px;
      border: 1px solid rgba(255, 255, 255, .2);
      background: rgba(255, 255, 255, .1);
      border-radius: 6px;
      min-height: 82px;
    }

    .proof-pill b {
      display: block;
      font-size: 1.38rem;
      line-height: 1.1;
    }

    .proof-pill span {
      display: block;
      margin-top: 5px;
      color: rgba(255, 255, 255, .8);
      font-size: .88rem;
    }

    .quote-panel {
      background: var(--panel);
      color: var(--ink);
      border-radius: 8px;
      box-shadow: var(--shadow);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .35);
    }

    .panel-head {
      background: var(--green);
      color: #fff;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .panel-head h2 {
      margin: 0;
      font-size: 1.24rem;
      line-height: 1.2;
    }

    .panel-head small {
      display: block;
      margin-top: 4px;
      color: rgba(255, 255, 255, .86);
      font-size: .86rem;
    }

    .step-badge {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: rgba(255, 255, 255, .2);
      border: 1px solid rgba(255, 255, 255, .3);
      font-weight: 800;
    }

    .finder {
      padding: 24px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      font-weight: 700;
      color: var(--blue-deep);
      font-size: .92rem;
    }

    input,
    select {
      width: 100%;
      min-height: 48px;
      border: 1px solid #c8d7df;
      border-radius: 4px;
      padding: 11px 12px;
      color: var(--ink);
      background: #fff;
      outline: none;
    }

    input:focus,
    select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(103, 181, 70, .16);
    }

    .checklist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 12px;
      margin: 16px 0 18px;
    }

    .check {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: .92rem;
    }

    .check input {
      width: 16px;
      min-height: 16px;
      accent-color: var(--green);
      flex: 0 0 auto;
    }

    .fineprint {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: .8rem;
    }

    .trust-band {
      border-bottom: 1px solid var(--line);
      background: #fff;
    }

    .trust {
      min-height: 94px;
      display: grid;
      grid-template-columns: .7fr repeat(4, 1fr);
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: .92rem;
    }

    .trust b {
      color: var(--blue-deep);
    }

    .brand-chip {
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: 4px;
      display: grid;
      place-items: center;
      font-weight: 800;
      color: #3e5664;
      background: linear-gradient(180deg, #fff, #f7fafb);
    }

    section {
      padding: 58px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.75rem, 3vw, 2.65rem);
      line-height: 1.08;
      color: var(--blue-deep);
      letter-spacing: 0;
      max-width: 680px;
    }

    .section-head p {
      margin: 0;
      max-width: 430px;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .step {
      border: 1px solid var(--line);
      border-radius: 7px;
      padding: 24px;
      background: #fff;
      min-height: 210px;
    }

    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--blue-soft);
      color: var(--blue);
      display: grid;
      place-items: center;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .step h3,
    .vendor h3,
    .faq h3 {
      margin: 0 0 10px;
      color: var(--blue-deep);
      font-size: 1.22rem;
      line-height: 1.2;
    }

    .step p,
    .vendor p,
    .faq p {
      margin: 0;
      color: var(--muted);
    }

    .software {
      background: var(--cloud);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .vendors {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .vendor {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 7px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 330px;
    }

    .vendor-top {
      padding: 22px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .vendor-logo {
      width: 54px;
      height: 54px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: #fff;
      background: var(--blue);
    }

    .rating {
      color: var(--gold);
      letter-spacing: 1px;
      font-size: .98rem;
      white-space: nowrap;
    }

    .vendor-body {
      padding: 22px;
      flex: 1;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 18px;
    }

    .tag {
      border: 1px solid #cfe2ea;
      color: var(--blue);
      background: var(--blue-soft);
      border-radius: 999px;
      padding: 5px 9px;
      font-size: .79rem;
      font-weight: 700;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      color: var(--blue-deep);
      font-weight: 800;
      margin-top: auto;
    }

    .price small {
      color: var(--muted);
      font-weight: 400;
    }

    .vendor .btn {
      margin: 0 22px 22px;
      width: calc(100% - 44px);
      min-height: 46px;
    }

    .split {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 36px;
      align-items: start;
    }

    .quote {
      background: var(--blue-deep);
      color: #fff;
      border-radius: 8px;
      padding: 30px;
      position: sticky;
      top: 18px;
    }

    .quote h2 {
      margin: 0 0 14px;
      font-size: 2rem;
      line-height: 1.08;
    }

    .quote p {
      color: rgba(255, 255, 255, .82);
      margin: 0 0 22px;
    }

    .quote-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .quote-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(255, 255, 255, .9);
    }

    .quote-list li::before {
      content: "✓";
      color: #b8e78f;
      font-weight: 900;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .faq {
      border-bottom: 1px solid var(--line);
      padding: 0 0 20px;
    }

    .cta {
      background: linear-gradient(135deg, var(--green), #84ca5c);
      color: #fff;
      padding: 38px 0;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .cta h2 {
      margin: 0 0 8px;
      font-size: clamp(1.7rem, 3vw, 2.45rem);
      line-height: 1.08;
    }

    .cta p {
      margin: 0;
      color: rgba(255, 255, 255, .9);
      font-size: 1.04rem;
    }

    footer {
      background: #0a2535;
      color: rgba(255, 255, 255, .72);
      padding: 34px 0;
      font-size: .92rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      align-items: center;
    }

    .footer-logo {
      width: 230px;
      display: block;
      background: #fff;
      border-radius: 7px;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .policy-hero {
      background: linear-gradient(135deg, var(--blue), var(--blue-deep));
      color: #fff;
      padding: 46px 0;
    }

    .policy-hero h1 {
      margin: 0;
      max-width: 780px;
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 1;
    }

    .policy-hero p:not(.eyebrow) {
      max-width: 760px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, .88);
      font-size: 1.08rem;
    }

    .policy-page {
      background: var(--cloud);
      padding: 46px 0 64px;
    }

    .policy-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 30px;
      align-items: start;
    }

    .policy-content,
    .policy-sidebar {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .policy-content {
      padding: 34px;
    }

    .policy-content h2 {
      margin: 34px 0 10px;
      color: var(--blue-deep);
      font-size: 1.35rem;
      line-height: 1.25;
    }

    .policy-content h2:first-of-type {
      margin-top: 22px;
    }

    .policy-content h3 {
      margin: 18px 0 8px;
      color: var(--blue);
      font-size: 1.05rem;
    }

    .policy-content p,
    .policy-content li,
    .policy-content address {
      color: var(--muted);
      font-size: 1rem;
    }

    .policy-content a,
    .policy-sidebar a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .policy-content ul,
    .policy-sidebar ul {
      padding-left: 21px;
    }

    .policy-meta {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 0 0 24px;
    }

    .policy-meta div {
      background: var(--blue-soft);
      border: 1px solid #cfe2ea;
      border-radius: 6px;
      padding: 14px;
    }

    .policy-meta dt {
      color: var(--blue-deep);
      font-size: .82rem;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .policy-meta dd {
      margin: 0;
      color: var(--muted);
      font-size: .94rem;
    }

    .policy-sidebar {
      position: sticky;
      top: 18px;
      padding: 24px;
    }

    .policy-sidebar h2 {
      margin: 0 0 14px;
      color: var(--blue-deep);
      font-size: 1.3rem;
    }

    .policy-sidebar li {
      margin: 0 0 10px;
      color: var(--muted);
    }

    .quick-contact {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }

    .quick-contact h3 {
      margin: 0 0 6px;
      color: var(--blue-deep);
      font-size: 1.04rem;
    }

    .quick-contact p {
      margin: 0 0 8px;
      color: var(--muted);
    }

    .unsubscribe-shell {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 34px 18px;
      background:
        linear-gradient(135deg, rgba(0, 79, 120, .92), rgba(6, 56, 84, .96)),
        linear-gradient(180deg, var(--cloud), #fff);
    }

    .unsubscribe-card {
      width: min(760px, 100%);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .unsubscribe-logo {
      display: inline-flex;
      margin-bottom: 26px;
    }

    .unsubscribe-logo img {
      width: 270px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .unsubscribe-card h1 {
      margin: 0 0 14px;
      color: var(--blue-deep);
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.02;
    }

    .unsubscribe-card p {
      color: var(--muted);
      margin: 0 0 14px;
      font-size: 1rem;
    }

    .unsubscribe-intro {
      font-size: 1.08rem;
    }

    .unsubscribe-form {
      margin: 26px 0 18px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--cloud);
    }

    .unsubscribe-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      margin-top: 8px;
      align-items: start;
    }

    .unsubscribe-row .btn {
      min-height: 48px;
      white-space: nowrap;
    }

    .unsubscribe-alert {
      margin: 22px 0 0;
      padding: 13px 15px;
      border: 1px solid #b9dbac;
      border-radius: 5px;
      background: #f0faec;
      color: var(--green-deep);
      font-weight: 700;
    }

    .unsubscribe-alert-error {
      border-color: #f3b4ab;
      background: #fff2f0;
      color: #b42318;
    }

    .field-error {
      display: block;
      margin-top: 8px;
      color: #b42318;
      font-size: .9rem;
      font-weight: 700;
    }

    .unsubscribe-note a,
    .unsubscribe-footer a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .unsubscribe-next {
      padding: 22px 0 8px;
      border-top: 1px solid var(--line);
    }

    .unsubscribe-next h2,
    .unsubscribe-help h2 {
      margin: 0 0 10px;
      color: var(--blue-deep);
      font-size: 1.35rem;
    }

    .unsubscribe-next ul {
      margin: 0;
      padding-left: 22px;
      color: var(--muted);
    }

    .unsubscribe-next li {
      margin: 0 0 8px;
    }

    .unsubscribe-help {
      margin-top: 18px;
      padding: 18px;
      border-radius: 6px;
      background: var(--blue-soft);
      border: 1px solid #cfe2ea;
    }

    .unsubscribe-footer {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      background: transparent;
      color: var(--muted);
      font-size: .92rem;
    }

    .unsubscribe-footer nav {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 8px;
    }

    .thank-you-card {
      text-align: center;
    }

    .thank-you-card .unsubscribe-logo {
      justify-content: center;
      width: 100%;
    }

    .success-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      background: #f0faec;
      border: 1px solid #b9dbac;
      color: var(--green-deep);
      font-size: 1.9rem;
      font-weight: 900;
    }

    .thank-you-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .thank-you-secondary {
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .rfq-hero {
      background:
        linear-gradient(135deg, rgba(0, 79, 120, .95), rgba(6, 56, 84, .97)),
        radial-gradient(circle at 82% 12%, rgba(103, 181, 70, .34), transparent 26%);
      color: #fff;
      padding: 54px 0 62px;
    }

    .rfq-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 42px;
      align-items: start;
    }

    .rfq-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .rfq-proof div {
      border: 1px solid rgba(255, 255, 255, .22);
      background: rgba(255, 255, 255, .1);
      border-radius: 6px;
      padding: 15px;
    }

    .rfq-proof b {
      display: block;
      font-size: 1.25rem;
      line-height: 1.1;
    }

    .rfq-proof span {
      display: block;
      margin-top: 5px;
      color: rgba(255, 255, 255, .8);
      font-size: .9rem;
    }

    .rfq-panel {
      background: #fff;
      color: var(--ink);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 26px;
      border-top: 6px solid var(--green);
    }

    .rfq-panel h2 {
      margin: 0 0 8px;
      color: var(--blue-deep);
      font-size: 1.55rem;
      line-height: 1.15;
    }

    .rfq-panel > p {
      margin: 0 0 18px;
      color: var(--muted);
    }

    .rfq-form .field-grid {
      margin-bottom: 16px;
    }

    .rfq-form .btn {
      width: 100%;
    }

    .rfq-band {
      background: var(--cloud);
      border-bottom: 1px solid var(--line);
      padding: 44px 0;
    }

    .rfq-band-grid,
    .rfq-content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: start;
    }

    .rfq-band h2,
    .rfq-content h2 {
      margin: 0 0 12px;
      color: var(--blue-deep);
      font-size: clamp(1.7rem, 3vw, 2.55rem);
      line-height: 1.08;
    }

    .rfq-band h3,
    .rfq-checks h3 {
      margin: 0 0 10px;
      color: var(--blue-deep);
      font-size: 1.25rem;
    }

    .rfq-band p,
    .rfq-content p,
    .rfq-band li,
    .rfq-checks li {
      color: var(--muted);
    }

    .rfq-content {
      padding: 56px 0;
    }

    .rfq-checks {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px;
      background: #fff;
    }

    .rfq-checks ul,
    .rfq-band ul {
      margin: 0;
      padding-left: 22px;
    }

    .rfq-checks li,
    .rfq-band li {
      margin-bottom: 8px;
    }

    .ppc-header {
      position: relative;
      z-index: 5;
      background: #fff;
      box-shadow: 0 3px 12px rgba(0, 0, 0, .18);
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 8px;
      background: #fff;
      color: #000;
      padding: 8px 10px;
      z-index: 10;
    }

    .skip-link:focus {
      left: 8px;
    }

    .ppc-header-inner {
      width: min(1140px, calc(100% - 40px));
      min-height: 64px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .ppc-logo img {
      width: 185px;
      display: block;
    }

    .partner-lockup {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .partner-lockup span {
      width: 1px;
      height: 34px;
      background: #d1d1d1;
      display: block;
    }

    .partner-lockup img {
      width: 178px;
      display: block;
    }

    .ppc-hero {
      position: relative;
      overflow: hidden;
      min-height: 635px;
      background: #f8f8f8;
    }

    .ppc-hero-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.74) 47%, rgba(255,255,255,.52)), url("/assets/hr-software-hero.png");
      background-size: cover;
      background-position: center bottom;
    }

    .ppc-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .86fr 1fr;
      gap: 58px;
      align-items: start;
      padding: 58px 0 70px;
    }

    .ppc-hero-copy {
      padding-top: 8px;
      color: #000;
    }

    .ppc-hero-copy h1 {
      max-width: 520px;
      margin: 0;
      color: #000;
      font-size: clamp(2.65rem, 5vw, 4.45rem);
      line-height: 1.15;
      font-weight: 800;
    }

    .ppc-rule {
      width: 100%;
      max-width: 475px;
      height: 2px;
      background: rgba(0, 0, 0, .22);
      margin: 30px 0;
    }

    .ppc-hero-copy p {
      max-width: 520px;
      color: #000;
      font-size: 1.36rem;
      line-height: 1.2;
      margin: 0;
    }

    .quote-widget {
      overflow: hidden;
      background: #fff;
      border: 2px solid #008a9b;
      border-radius: 10px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    }

    .quote-widget-title {
      background: #078a9a;
      color: #fff;
      text-align: center;
      padding: 9px 16px;
      font-size: 1.05rem;
      font-weight: 800;
    }

    .quote-widget-form {
      padding: 20px 22px 22px;
    }

    .progress-track {
      height: 5px;
      background: #f0f0f0;
      border-radius: 999px;
      margin: 0 0 26px;
      overflow: hidden;
    }

    .progress-track span {
      display: block;
      width: 25%;
      height: 100%;
      background: #f58200;
      border-radius: inherit;
    }

    .employee-options {
      border: 0;
      padding: 0;
      margin: 0;
    }

    .employee-options legend {
      color: #0a0a0a;
      font-size: 1.62rem;
      line-height: 1.15;
      font-weight: 800;
      margin: 0 0 20px;
      padding: 0;
    }

    .employee-options label {
      min-height: 52px;
      border: 1px solid #dedede;
      border-radius: 6px;
      background: #fafafa;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      padding: 12px 14px;
      color: #222;
      font-size: 1.04rem;
      font-weight: 400;
      cursor: pointer;
    }

    .employee-options input {
      width: 20px;
      min-height: 20px;
      flex: 0 0 auto;
      accent-color: #f58200;
    }

    .ppc-contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 18px 0;
    }

    .wizard-step[hidden],
    .matching-step[hidden] {
      display: none;
    }

    .wizard-question {
      margin: 0 0 18px;
      color: #0a0a0a;
      font-size: 1.62rem;
      line-height: 1.15;
      font-weight: 800;
    }

    .zip-note {
      color: #6f6f6f;
      font-size: .9rem;
      margin: 12px 0 18px;
    }

    .wizard-actions {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      clear: both;
    }

    .wizard-actions-end {
      justify-content: flex-end;
      margin-top: 10px;
    }

    .wizard-back {
      min-height: 52px;
      border: 0;
      background: transparent;
      color: #333;
      font-weight: 800;
      cursor: pointer;
      padding: 0 8px;
    }

    .wizard-back::before {
      content: "<";
      margin-right: 7px;
      color: #f58200;
    }

    .matching-step {
      min-height: 320px;
      display: grid;
      place-items: center;
      align-content: center;
      gap: 16px;
      color: #0a0a0a;
      font-size: 1.16rem;
      font-weight: 700;
      text-align: center;
    }

    .matching-step p {
      margin: 0;
    }

    .matching-spinner {
      width: 58px;
      height: 58px;
      border: 6px solid #eef1f2;
      border-top-color: #f58200;
      border-radius: 50%;
      animation: spin .8s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .ppc-contact-grid .full {
      grid-column: 1 / -1;
    }

    .quote-start-button,
    .orange-button {
      min-height: 52px;
      border: 0;
      border-radius: 7px;
      background: #f58200;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 34px;
      font-weight: 800;
      cursor: pointer;
      text-decoration: none;
      transition: background .18s ease, transform .18s ease;
    }

    .quote-start-button {
      width: 120px;
      float: right;
    }

    .quote-start-button:hover,
    .orange-button:hover {
      background: #dd7500;
      transform: translateY(-1px);
    }

    .provider-strip {
      padding: 54px 0 48px;
      text-align: center;
      background: #fff;
    }

    .provider-strip h2,
    .feature-match h2,
    .choose-section h2,
    .concierge-cta h2 {
      margin: 0;
      color: #101010;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
      font-weight: 800;
    }

    .provider-strip p {
      margin: 16px 0 30px;
      color: #333;
      font-size: 1.18rem;
    }

    .provider-logos {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 26px;
      align-items: center;
    }

    .provider-logos img {
      max-width: 100%;
      max-height: 54px;
      object-fit: contain;
      filter: grayscale(.1);
    }

    .feature-match {
      padding: 56px 0;
      text-align: center;
      background: #f6f7f8;
    }

    .feature-match h2 {
      max-width: 900px;
      margin: 0 auto 28px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin: 0 auto 30px;
      max-width: 1040px;
    }

    .feature-grid span {
      min-height: 56px;
      display: grid;
      place-items: center;
      padding: 12px;
      border: 1px solid #d8e4e8;
      border-radius: 6px;
      background: #fff;
      color: #17384a;
      font-weight: 800;
      text-align: center;
    }

    .choose-section {
      padding: 62px 0;
      background: #fff;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 44px;
      align-items: start;
    }

    .choose-grid > img {
      width: 100%;
      border-radius: 4px;
      display: block;
      object-fit: cover;
      aspect-ratio: 4 / 3;
    }

    .accordion-copy {
      margin: 20px 0 24px;
      border-top: 1px solid #e0e0e0;
    }

    .accordion-copy article {
      border-bottom: 1px solid #e0e0e0;
      padding: 16px 0;
    }

    .accordion-copy h3 {
      margin: 0 0 9px;
      color: #151515;
      font-size: 1.18rem;
      line-height: 1.25;
    }

    .accordion-copy h3 span {
      color: #f58200;
      margin-right: 6px;
    }

    .accordion-copy p {
      margin: 0;
      color: #555;
      font-size: .98rem;
    }

    .concierge-cta {
      padding: 54px 0 62px;
      text-align: center;
      background: #eef7f9;
    }

    .concierge-cta p {
      max-width: 850px;
      margin: 16px auto 26px;
      color: #333;
      font-size: 1.1rem;
    }

    .ppc-footer {
      background: #f6f6f6;
      color: #333;
      padding: 30px 0;
      border-top: 1px solid #dfdfdf;
    }

    .ppc-footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .footer-brand img {
      width: 190px;
      display: block;
    }

    .ppc-footer p {
      margin: 0 0 7px;
      color: #444;
    }

    .ppc-footer nav {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .ppc-footer nav a {
      color: #17384a;
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 700;
    }

    .copyright {
      margin-top: 22px;
      color: #666;
      font-size: .9rem;
    }

    body:has(.ppc-header) {
      color: #000;
      background: #fff;
      font-family: Arial, Helvetica, sans-serif;
    }

    body:has(.ppc-header) main,
    body:has(.ppc-header) main *,
    body:has(.ppc-header) footer,
    body:has(.ppc-header) footer * {
      font-family: Arial, Helvetica, sans-serif;
      letter-spacing: 0;
    }

    body:has(.ppc-header) .wrap,
    body:has(.ppc-header) .ppc-header-inner {
      width: min(1178px, calc(100% - 84px));
    }

    body:has(.ppc-header) .ppc-header {
      height: 64px;
    }

    body:has(.ppc-header) .ppc-header-inner {
      min-height: 64px;
      justify-content: flex-start;
      gap: 22px;
    }

    body:has(.ppc-header) .ppc-logo {
      display: block;
      border: 0;
      outline: 0;
      box-shadow: none;
    }

    body:has(.ppc-header) .ppc-logo:focus,
    body:has(.ppc-header) .ppc-logo:focus-visible {
      outline: 0;
      box-shadow: none;
    }

    body:has(.ppc-header) .ppc-logo img {
      width: 135px;
      height: auto;
      border: 0;
      outline: 0;
      box-shadow: none;
    }

    body:has(.ppc-header) .partner-lockup {
      gap: 18px;
    }

    body:has(.ppc-header) .partner-lockup span {
      height: 34px;
      background: #d7d7d7;
    }

    body:has(.ppc-header) .partner-lockup img {
      width: 150px;
    }

    body:has(.ppc-header) .partner-brand {
      display: grid;
      justify-items: center;
      gap: 1px;
    }

    body:has(.ppc-header) .partner-brand small {
      display: block;
      color: #222;
      font-size: 10px;
      line-height: 10px;
      font-weight: 700;
      letter-spacing: 1.6px;
    }

    body:has(.ppc-header) .ppc-hero {
      padding: 0;
      min-height: 635px;
      background: #fff;
    }

    body:has(.ppc-header) .ppc-hero-bg {
      background-image: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .72) 48%, rgba(255, 255, 255, .55)), url("/assets/hr-software-hero.png");
      background-position: center bottom;
      background-size: cover;
    }

    body:has(.payroll-page) .ppc-hero-bg {
      background-image: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .72) 48%, rgba(255, 255, 255, .55)), url("/assets/payroll-services-hero.png");
    }

    body:has(.ppc-header) .ppc-hero-grid {
      grid-template-columns: 532px 1fr;
      gap: 41px;
      padding: 62px 0 70px;
    }

    body:has(.ppc-header) .ppc-hero-copy {
      padding: 0 0 0 40px;
    }

    body:has(.ppc-header) .ppc-hero-copy h1 {
      max-width: 500px;
      font-size: 48px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: 0;
    }

    body:has(.ppc-header) .ppc-rule {
      max-width: 475px;
      height: 1px;
      margin: 31px 0 28px;
      background: rgba(0, 0, 0, .24);
    }

    body:has(.ppc-header) .ppc-hero-copy p {
      max-width: 475px;
      font-size: 20px;
      line-height: 1.22;
      color: #000;
    }

    body:has(.ppc-header) .quote-widget {
      margin-top: -1px;
      border: 2px solid #008f9d;
      border-radius: 9px;
      box-shadow: none;
    }

    body:has(.ppc-header) .quote-widget-title {
      padding: 7px 14px;
      background: linear-gradient(#068696, #05818f);
      font-size: 16px;
      line-height: 1.3;
      font-weight: 700;
    }

    body:has(.ppc-header) .quote-widget-form {
      padding: 20px 20px 21px;
    }

    body:has(.ppc-header) .progress-track {
      height: 5px;
      margin: 0 0 25px;
    }

    body:has(.ppc-header) .progress-track span {
      background: #f58200;
    }

    body:has(.ppc-header) .employee-options legend,
    body:has(.ppc-header) .wizard-question {
      margin-bottom: 20px;
      font-size: 26px;
      line-height: 1.15;
      color: #080808;
      font-weight: 700;
    }

    body:has(.ppc-header) .employee-options label {
      min-height: 52px;
      margin-bottom: 12px;
      padding: 11px 17px;
      border-color: #ddd;
      border-radius: 5px;
      background: rgba(250, 250, 250, .82);
      font-size: 16px;
    }

    body:has(.ppc-header) .employee-options input {
      width: 20px;
      height: 20px;
      min-height: 20px;
      accent-color: #f58200;
    }

    body:has(.ppc-header) .quote-start-button {
      width: 119px;
      min-height: 51px;
      border-radius: 7px;
      background: #f58200;
      font-size: 16px;
    }

    body:has(.ppc-header) .quote-start-button:hover,
    body:has(.ppc-header) .orange-button:hover {
      transform: none;
      background: #ef7f00;
    }

    body:has(.ppc-header) .provider-strip {
      padding: 91px 0 76px;
      border-bottom: 1px solid #ddd;
    }

    body:has(.ppc-header) .provider-strip h2,
    body:has(.ppc-header) .feature-match h2,
    body:has(.ppc-header) .choose-section h2,
    body:has(.ppc-header) .concierge-cta h2 {
      font-size: 40px;
      line-height: 1.16;
      font-weight: 700;
      color: #000;
    }

    body:has(.ppc-header) .provider-strip p {
      margin: 16px 0 54px;
      font-size: 20px;
      color: #000;
    }

    body:has(.ppc-header) .provider-logos {
      max-width: 850px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 47px;
    }

    body:has(.ppc-header) .provider-logos img {
      max-height: 45px;
      width: auto;
      filter: none;
    }

    body:has(.ppc-header) .provider-logos .text-logo {
      display: flex;
      min-height: 45px;
      align-items: center;
      justify-content: center;
      color: #242424;
      font-size: 28px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0;
      white-space: nowrap;
    }

    body:has(.ppc-header) .feature-match {
      padding: 91px 0 150px;
      background: #fff;
      border-bottom: 0;
    }

    body:has(.ppc-header) .feature-match h2 {
      max-width: 1130px;
      margin-bottom: 56px;
    }

    body:has(.ppc-header) .feature-grid {
      max-width: none;
      gap: 20px;
      margin-bottom: 59px;
    }

    body:has(.ppc-header) .feature-grid span {
      min-height: 85px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 19px;
      padding: 15px 19px;
      border: 0;
      border-radius: 5px;
      background: #eaf9fb;
      color: #000;
      font-size: 23px;
      line-height: .98;
      font-weight: 700;
      text-align: left;
    }

    body:has(.ppc-header) .feature-grid b {
      color: #009bad;
      font-size: 35px;
      line-height: 1;
      font-weight: 400;
    }

    body:has(.ppc-header) .orange-button {
      min-height: 64px;
      border-radius: 4px;
      background: #f19564;
      padding: 15px 28px;
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      text-decoration: none;
    }

    body:has(.ppc-header) .choose-section {
      padding: 0 0 100px;
    }

    body:has(.ppc-header) .choose-grid {
      grid-template-columns: 475px 1fr;
      gap: 59px;
    }

    body:has(.ppc-header) .choose-grid > img {
      aspect-ratio: 1 / 1.08;
      border-radius: 5px;
    }

    body:has(.ppc-header) .accordion-copy {
      margin: 26px 0 25px;
      border-top: 0;
    }

    body:has(.ppc-header) .accordion-copy details {
      border-bottom: 1px solid #d8d8d8;
    }

    body:has(.ppc-header) .accordion-copy summary {
      list-style: none;
      position: relative;
      padding: 18px 34px 18px 0;
      color: #000;
      font-size: 22px;
      line-height: 1.25;
      font-weight: 700;
      cursor: pointer;
    }

    body:has(.ppc-header) .accordion-copy summary::-webkit-details-marker {
      display: none;
    }

    body:has(.ppc-header) .accordion-copy summary::after {
      content: "^";
      position: absolute;
      right: 17px;
      top: 17px;
      color: #000;
      font-size: 27px;
      line-height: 1;
      font-weight: 800;
    }

    body:has(.ppc-header) .accordion-copy summary span {
      display: inline-block;
      min-width: 26px;
      color: #000;
    }

    body:has(.ppc-header) .accordion-copy p {
      margin: -4px 34px 18px 0;
      color: #333;
      font-size: 16px;
      line-height: 1.45;
    }

    body:has(.ppc-header) .choose-section .orange-button {
      min-height: auto;
      padding: 0;
      background: transparent;
      color: #f19564;
      font-size: 24px;
      text-decoration: underline;
    }

    body:has(.ppc-header) .concierge-cta {
      padding: 78px 0 80px;
      background: #d9f9fd;
    }

    body:has(.ppc-header) .concierge-cta p {
      max-width: 970px;
      color: #000;
      font-size: 20px;
      line-height: 1.45;
    }

    body:has(.ppc-header) .concierge-cta h2,
    body:has(.ppc-header) .choose-section h2,
    body:has(.ppc-header) .feature-match h2,
    body:has(.ppc-header) .provider-strip h2 {
      letter-spacing: 0;
    }

    body:has(.ppc-header) .ppc-footer {
      padding: 33px 0 24px;
      background: #fff;
      border-top: 0;
    }

    body:has(.ppc-header) .ppc-footer-grid {
      grid-template-columns: 210px 1fr 1fr;
      align-items: start;
    }

    body:has(.ppc-header) .footer-brand img {
      width: 115px;
    }

    @media (max-width: 920px) {
      .hero-grid,
      .split {
        grid-template-columns: 1fr;
      }

      .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 17px 0;
      }

      .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
      }

      .trust {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 0;
      }

      .trust > b {
        grid-column: 1 / -1;
      }

      .steps,
      .vendors {
        grid-template-columns: 1fr;
      }

      .section-head,
      .cta-inner,
      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .policy-layout {
        grid-template-columns: 1fr;
      }

      .policy-sidebar {
        position: static;
      }

      .policy-meta {
        grid-template-columns: 1fr;
      }

      .unsubscribe-row {
        grid-template-columns: 1fr;
      }

      .unsubscribe-row .btn {
        width: 100%;
      }

      .rfq-grid,
      .rfq-band-grid,
      .rfq-content-grid {
        grid-template-columns: 1fr;
      }

      .rfq-proof {
        grid-template-columns: 1fr;
      }

      .ppc-hero-grid,
      .choose-grid,
      .ppc-footer-grid {
        grid-template-columns: 1fr;
      }

      .ppc-hero-bg {
        opacity: .36;
      }

      .provider-logos {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .ppc-footer nav {
        justify-content: flex-start;
      }

      .quote {
        position: static;
      }
    }

    @media (max-width: 640px) {
      .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 9px 0;
        gap: 3px;
      }

      .topbar-inner,
      .nav,
      .wrap {
        width: min(100% - 28px, 1140px);
      }

      .hero-grid {
        padding: 38px 0 42px;
        gap: 26px;
      }

      h1 {
        font-size: 2.5rem;
      }

      .hero-copy {
        font-size: 1.02rem;
      }

      .micro-proof,
      .field-grid,
      .checklist,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .panel-head,
      .finder,
      .step,
      .vendor-body,
      .vendor-top,
      .quote,
      .policy-content,
      .policy-sidebar,
      .unsubscribe-card,
      .unsubscribe-form,
      .rfq-panel,
      .rfq-checks,
      .quote-widget-form {
        padding: 18px;
      }

      .ppc-header-inner,
      .partner-lockup {
        gap: 12px;
      }

      .ppc-logo img {
        width: 150px;
      }

      .partner-lockup img {
        width: 145px;
      }

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

      .ppc-hero-grid {
        padding: 34px 0 44px;
        gap: 26px;
      }

      .ppc-hero-copy h1 {
        font-size: 2.45rem;
      }

      .ppc-hero-copy p {
        font-size: 1.08rem;
      }

      .employee-options legend {
        font-size: 1.35rem;
      }

      .ppc-contact-grid,
      .feature-grid,
      .provider-logos {
        grid-template-columns: 1fr;
      }

      .quote-start-button {
        width: 100%;
        float: none;
      }

      .hero-actions .btn,
      .cta .btn {
        width: 100%;
      }

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

      section {
        padding: 42px 0;
      }

      .logo img {
        width: 238px;
      }
    }

    /* Keep the PPC forms stacked and contained on narrow screens. */
    @media (max-width: 920px) {
      body:has(.ppc-header) .ppc-header-inner,
      body:has(.ppc-header) .wrap {
        width: min(100% - 28px, 1178px);
      }

      body:has(.ppc-header) .ppc-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
        padding: 34px 0 44px;
      }

      body:has(.ppc-header) .ppc-hero-copy {
        padding: 0;
      }

      body:has(.ppc-header) .ppc-hero-copy h1 {
        max-width: 700px;
        font-size: 2.45rem;
      }

      body:has(.ppc-header) .ppc-hero-copy p {
        max-width: 700px;
        font-size: 1.08rem;
      }

      body:has(.ppc-header) .quote-widget {
        width: 100%;
        max-width: none;
      }

      body:has(.ppc-header) .choose-grid,
      body:has(.ppc-header) .ppc-footer-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      body:has(.ppc-header) .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      body:has(.ppc-header) .ppc-header-inner {
        width: calc(100% - 28px);
        gap: 12px;
      }

      body:has(.ppc-header) .ppc-logo img {
        width: 105px;
      }

      body:has(.ppc-header) .partner-lockup {
        gap: 12px;
      }

      body:has(.ppc-header) .partner-lockup img {
        width: 130px;
      }

      body:has(.ppc-header) .quote-widget-form {
        padding: 18px;
      }

      body:has(.ppc-header) .feature-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      body:has(.ppc-header) .provider-logos {
        flex-direction: column;
        gap: 22px;
      }
    }

    @media (max-width: 640px) {
      body:has(.payroll-page) .ppc-hero-bg {
        background-image: linear-gradient(90deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .62)), url("/assets/payroll-services-hero-mobile.png");
      }
    }

    .resource-page {
      color: #17212b;
      background: #fff;
    }

    .resource-hero {
      background: #eef8fa;
      padding: 48px 0 58px;
    }

    .resource-hero-grid,
    .resource-two-column,
    .resource-cta-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
      gap: 48px;
      align-items: center;
    }

    .resource-page h1,
    .resource-page h2,
    .resource-page h3,
    .resource-page p {
      letter-spacing: 0;
    }

    .resource-page h1 {
      max-width: 650px;
      margin: 0 0 22px;
      color: #111;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      line-height: 1.04;
      font-weight: 800;
    }

    .resource-lede {
      max-width: 620px;
      margin: 0 0 28px;
      color: #273642;
      font-size: 1.15rem;
      line-height: 1.45;
    }

    .resource-hero-media {
      position: relative;
    }

    .resource-hero-media img {
      width: 100%;
      max-width: 520px;
      margin-left: auto;
      aspect-ratio: 1.35 / 1;
      display: block;
      border-radius: 6px;
      object-fit: cover;
    }

    .resource-stat {
      position: absolute;
      right: -18px;
      bottom: -18px;
      display: grid;
      gap: 2px;
      min-width: 190px;
      padding: 16px 18px;
      border: 1px solid #d6e2e5;
      border-radius: 4px;
      background: #fff;
      box-shadow: 0 8px 24px rgba(16, 42, 52, .12);
    }

    .resource-stat strong {
      color: #008f9d;
      font-size: 1.7rem;
    }

    .resource-stat span {
      color: #4e5b63;
      font-size: .88rem;
      line-height: 1.2;
    }

    .resource-intro,
    .resource-factors,
    .resource-checklist {
      padding: 88px 0;
    }

    .resource-narrow {
      max-width: 840px;
    }

    .resource-kicker {
      margin: 0 0 12px;
      color: #008f9d;
      font-size: .85rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .resource-page h2 {
      margin: 0 0 18px;
      color: #111;
      font-size: clamp(2rem, 3.4vw, 3.1rem);
      line-height: 1.12;
      font-weight: 800;
    }

    .resource-page p {
      color: #3c4b55;
      font-size: 1.08rem;
      line-height: 1.65;
    }

    .resource-pricing-band {
      padding: 88px 0 96px;
      background: #f7fbfc;
      border-top: 1px solid #e2ecee;
      border-bottom: 1px solid #e2ecee;
    }

    .resource-section-heading {
      max-width: 780px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .resource-section-heading p:last-child {
      margin: 0 auto;
    }

    .resource-article {
      padding: 82px 0;
    }

    .resource-article-alt {
      background: #fff;
    }

    .pricing-model-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .pricing-model-grid article {
      padding: 26px;
      border-left: 4px solid #008f9d;
      background: #fff;
    }

    .pricing-model-grid h3,
    .resource-faq-list h3 {
      margin: 0 0 10px;
      color: #111;
      font-size: 1.3rem;
      line-height: 1.25;
    }

    .pricing-model-grid p,
    .resource-faq-list p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.55;
    }

    .resource-faq-section {
      background: #f7fbfc;
    }

    .resource-faq-list {
      border-top: 1px solid #dce6e8;
    }

    .resource-faq-list article {
      padding: 24px 0;
      border-bottom: 1px solid #dce6e8;
    }

    .pricing-guide-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .pricing-guide-item {
      display: flex;
      min-height: 280px;
      flex-direction: column;
      padding: 28px;
      border: 1px solid #d9e7e9;
      border-radius: 6px;
      background: #fff;
    }

    .pricing-guide-item.featured {
      border: 2px solid #008f9d;
      box-shadow: 0 10px 26px rgba(0, 115, 127, .1);
    }

    .pricing-guide-label {
      color: #008f9d;
      font-size: .85rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .pricing-guide-item h3 {
      margin: 18px 0 0;
      color: #111;
      font-size: 2.45rem;
      line-height: 1;
    }

    .pricing-guide-item p {
      margin: 8px 0 26px;
      color: #63717a;
      font-size: .95rem;
    }

    .pricing-guide-item strong {
      margin-bottom: 6px;
      color: #111;
      font-size: 1.1rem;
    }

    .pricing-guide-item > span:last-child {
      color: #53616a;
      font-size: .98rem;
      line-height: 1.45;
    }

    .resource-two-column {
      grid-template-columns: 1.1fr .9fr;
      align-items: start;
    }

    .resource-two-column > div > p:not(.resource-kicker) {
      max-width: 700px;
    }

    .factor-list {
      margin-top: 28px;
      border-top: 1px solid #dce6e8;
    }

    .factor-list > div {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      padding: 19px 0;
      border-bottom: 1px solid #dce6e8;
    }

    .factor-list b {
      color: #f19564;
      font-size: 1.1rem;
    }

    .factor-list span {
      color: #53616a;
      font-size: 1rem;
      line-height: 1.5;
    }

    .factor-list strong {
      display: block;
      margin-bottom: 3px;
      color: #111;
    }

    .resource-callout {
      padding: 34px;
      border-top: 5px solid #008f9d;
      background: #eef8fa;
    }

    .resource-callout img {
      width: 145px;
      height: 42px;
      margin-bottom: 28px;
      object-fit: contain;
      object-position: left center;
    }

    .resource-callout h3 {
      margin: 0 0 12px;
      color: #111;
      font-size: 1.65rem;
      line-height: 1.2;
    }

    .resource-callout p {
      margin: 0 0 20px;
    }

    .resource-callout a {
      color: #008f9d;
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

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

    .checklist-grid > div {
      display: flex;
      min-height: 130px;
      flex-direction: column;
      gap: 18px;
      padding: 22px;
      border: 1px solid #dce6e8;
      border-radius: 5px;
      background: #fff;
    }

    .checklist-grid b {
      color: #f19564;
      font-size: 1.5rem;
    }

    .checklist-grid span {
      color: #25343d;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .resource-cta {
      padding: 72px 0;
      background: #dff7fa;
    }

    .resource-cta-inner {
      grid-template-columns: 1fr auto;
      gap: 32px;
    }

    .resource-cta-inner h2 {
      margin-bottom: 10px;
    }

    .resource-cta-inner p:last-child {
      max-width: 720px;
      margin-bottom: 0;
    }

    @media (max-width: 760px) {
      .resource-hero-grid,
      .resource-two-column,
      .resource-cta-inner,
      .pricing-guide-grid,
      .checklist-grid,
      .pricing-model-grid {
        grid-template-columns: 1fr;
      }

      .resource-hero,
      .resource-intro,
      .resource-factors,
      .resource-checklist,
      .resource-pricing-band,
      .resource-article {
        padding: 54px 0;
      }

      .resource-hero-grid,
      .resource-two-column {
        gap: 34px;
      }

      .resource-stat {
        right: 12px;
        bottom: -14px;
      }

      .resource-cta-inner .btn {
        width: 100%;
      }
    }
