﻿/*
  Snaproles Business Homepage
  Frozen production handoff
  Typography dependencies are intentionally not bundled:
  Inter and Source Serif 4 should load through the existing Snaproles pipeline.
*/

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  fonts  */

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/Inter-Black.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*~~~~~~~~~~~~~~~~~~~~  end of fonts  */ 

:root {
  --worker-orange: #ff8011;
  --business-blue: #1673ff;
  --ink: #111318;
  --heading-gray: #525861;
  --body: #5c6572;
  --muted: #7a8390;
  --line: #e1e6ec;
  --line-strong: #d6dde6;
  --soft: #f7f8fa;
  --soft-blue: #f4f8ff;
  --soft-orange: #fff8f2;
  --white: #ffffff;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 22px 52px rgba(35, 47, 65, .09);
  --small-shadow: 0 12px 28px rgba(35, 47, 65, .07);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(225, 230, 236, .8);
}

.nav-shell {
  width: min(var(--shell), calc(100% - 40px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.brand-word {
  font-size: 23px;
  letter-spacing: -.9px;
  line-height: 1;
}

.brand-word b {
  color: var(--worker-orange);
  font-weight: 700;
}

.brand-word strong {
  color: var(--business-blue);
  font-weight: 700;
}

.brand small {
  color: #4f5763;
  font-size: 10px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a,
.login-link {
  color: #4f5763;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover,
.login-link:hover,
.text-link:hover {
  color: var(--business-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cta,
.mobile-nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: white;
  background: var(--business-blue);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: min(100% - 28px, 480px);
  display: grid;
  gap: 4px;
  margin: 0 auto 14px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--small-shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #3f4855;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav a:not(.mobile-nav-cta):hover {
  background: var(--soft);
}

.mobile-nav .mobile-nav-cta {
  justify-content: center;
  margin-top: 4px;
  color: white;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  border-bottom: 1px solid #edf0f3;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #fff 0%, #fcfcfd 100%);
}

.centered {
  text-align: center;
}

.eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #5b6470;
  font-size: 11px !important;
  line-height: 1.3;
  letter-spacing: 1.45px;
  font-weight: 700;
}

.eyebrow i {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--worker-orange);
  border-radius: 999px;
}

.eyebrow-left {
  justify-content: flex-start;
}

h1,
h2 {
  margin: 0;
  color: var(--heading-gray);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -1.6px;
}

h1 {
  margin-top: 24px;
  font-size: clamp(50px, 4.15vw, 68px);
  line-height: .98;
}

h2 {
  margin-top: 19px;
  font-size: clamp(42px, 3.35vw, 55px);
  line-height: 1.04;
}

h1 em,
h2 em {
  position: relative;
  display: inline-block;
  color: var(--worker-orange);
  font-style: normal;
}

h1 em::after,
h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: -1%;
  bottom: -5px;
  height: 3px;
  background: var(--business-blue);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.hero {
  padding: 64px 0 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(22, 115, 255, .045), transparent 29%),
    linear-gradient(180deg, #fff 0%, #fdfefe 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(440px, .88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 42px;
  padding-bottom: 58px;
}

.hero-copy .eyebrow {
  justify-content: flex-start;
}

.hero-body,
.copy-block > p,
.center-copy,
.section-head-row > p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.hero-body {
  max-width: 590px;
  margin: 26px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #2f3a49;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--business-blue);
  font-size: 18px;
}

.primary-cta {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 350px);
  margin-top: 20px;
  padding: 14px 20px;
  color: white;
  background: var(--business-blue);
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(22, 115, 255, .18);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 32px rgba(22, 115, 255, .22);
}

.primary-cta span {
  font-size: 20px;
}

.microcopy,
.cta-support {
  color: #747d89;
  font-size: 12px;
  line-height: 1.4;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}

.hero-product {
  position: relative;
}

.hero-product img {
  width: 100%;
  border-radius: 22px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: white;
}

.trust-strip article {
  min-height: 114px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #647080;
  background: var(--soft);
  border-radius: 12px;
  font-size: 20px;
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  color: #2f3743;
  font-size: 11px;
}

.trust-strip small {
  margin-top: 5px;
  color: #7a8390;
  font-size: 11px;
  line-height: 1.35;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 74px;
}

.copy-block > p {
  max-width: 600px;
  margin: 21px 0 0;
}

.chips-label {
  margin-top: 27px !important;
  color: #737c88 !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  font-weight: 700;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 510px;
  margin-top: 10px;
}

.chips span {
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 9px 13px;
  color: #47515f;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px; 
  font-weight: 600; 
}

.copy-block .primary-cta {
  margin-top: 25px;
}

.cta-support {
  width: min(100%, 350px);
  margin: 8px auto 0;
  text-align: center;
}

.image-card {
  overflow: hidden;
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
}

.hiring-image img {
  max-height: 650px;
  object-fit: cover;
  object-position: center 18%;
}

.image-card figcaption {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  color: #667180;
  background: white;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.4;
}

.image-card figcaption span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--worker-orange);
  border-radius: 50%;
}

.insights {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.insights article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.insights article > span {
  color: var(--business-blue);
  font-size: 11px;
}

.insights strong,
.insights small {
  display: block;
}

.insights strong {
  color: #384250;
  font-size: 14px;
  line-height: 1.4;
}

.insights small {
  margin-top: 4px;
  color: #7b8490;
  font-size: 12px;
  line-height: 1.4;
}

.visibility-image {
  max-width: 620px;
  justify-self: end;
}

.shorter-path .centered > h2,
.readiness .centered > h2,
.pricing .centered > h2 {
  max-width: 1000px;
  margin-inline: auto;
}

.product-flow {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: stretch;
  margin-top: 38px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-flow > article {
  position: relative;
  min-height: 310px;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.flow-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--business-blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.flow-visual {
  min-height: 125px;
  margin-top: 19px;
  padding: 12px;
  background: white;
  border: 1px solid #e1e7ef;
  border-radius: 13px;
}

.worker-list-mini {
  display: grid;
  gap: 8px;
}

.worker-list-mini > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid #e5eaf0;
  border-radius: 9px;
}

.worker-list-mini b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: #9e6b55;
  border-radius: 50%;
  font-size: 8px;
}

.worker-list-mini span,
.worker-list-mini small {
  display: block;
  text-align: left;
}

.worker-list-mini span {
  color: #303947;
  font-size: 12px;
  font-weight: 700;
}

.worker-list-mini small {
  margin-top: 3px;
  color: #808994;
  font-size: 11px;
  font-weight: 400;
}

.invite-mini {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.invite-mini b,
.invite-mini small {
  display: block;
}

.invite-mini b {
  color: #303947;
  font-size: 12px;
}

.invite-mini small {
  margin-top: 5px;
  color: #7d8692;
  font-size: 11px;
}

.invite-mini span {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 17px;
  color: white;
  background: var(--business-blue);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
}

.message-mini {
  text-align: left;
}

.message-mini small {
  color: #7e8792;
  font-size: 12px;
}

.message-mini p {
  margin: 11px 0 0;
  padding: 11px;
  color: #4c5664;
  background: #f3f5f8;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.45;
}

.product-flow h3 {
  margin: 18px 0 0;
  color: #293240;
  font-size: 13px;
}

.product-flow article > p {
  margin: 8px 0 0;
  color: #707a87;
  font-size: 11px;
  line-height: 1.45;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--business-blue);
  font-size: 24px;
}

.privacy-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #687383;
  font-size: 12px;
}

.compact-cta {
  margin-inline: auto;
}

.section-head-row {
  display: grid;
  grid-template-columns: 1fr minmax(290px, .48fr);
  align-items: end;
  gap: 50px;
  text-align: left;
}

.section-head-row h2 {
  margin-top: 17px;
}

.section-head-row > p {
  margin: 0 0 5px;
}

.comparison-desktop {
  overflow: hidden;
  margin-top: 34px;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.comparison-row {
  min-height: 160px;
  display: grid;
  grid-template-columns: 200px minmax(520px, 1fr) 250px;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.current-row {
  background: linear-gradient(90deg, #fffaf6 0%, #fffefd 100%);
}

.snaproles-row {
  background: linear-gradient(90deg, #f5f9ff 0%, #fcfdff 100%);
}

.comparison-label {
  text-align: left;
}

.comparison-label small,
.comparison-label strong {
  display: block;
}

.comparison-label small {
  font-size: 11px;
  letter-spacing: .9px;
  font-weight: 700;
}

.current-row .comparison-label small {
  color: #c55e0b;
}

.snaproles-row .comparison-label small {
  color: #0d67df;
}

.comparison-label strong {
  margin-top: 8px;
  color: #303947;
  font-size: 12px;
}

.comparison-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.comparison-steps span {
  min-height: 45px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #3e4856;
  font-size: 10px;
  font-weight: 700;
}

.comparison-steps b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  font-size: 8px;
}

.current-row .comparison-steps b {
  background: var(--worker-orange);
}

.snaproles-row .comparison-steps b {
  background: var(--business-blue);
}

.comparison-steps i {
  color: #a3abb5;
  font-style: normal;
}

.comparison-outcome {
  min-height: 74px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 11px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  text-align: left;
}

.comparison-outcome > b {
  font-size: 16px;
}

.current-row .comparison-outcome > b {
  color: var(--worker-orange);
}

.snaproles-row .comparison-outcome > b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--business-blue);
  background: #eaf2ff;
  border-radius: 9px;
}

.comparison-outcome strong,
.comparison-outcome small {
  display: block;
}

.comparison-outcome strong {
  color: #3b4553;
  font-size: 11px;
  line-height: 1.35;
}

.comparison-outcome small {
  margin-top: 4px;
  color: #7a8390;
  font-size: 11px;
}

.comparison-mobile {
  display: none;
}

.center-copy {
  max-width: 710px;
  margin: 20px auto 0;
}

.readiness-board {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(580px, 1.18fr);
  gap: 18px;
  margin-top: 37px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: left;
}

.trigger-side {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 20px;
  background: linear-gradient(180deg, #fffaf6 0%, #fffdfb 100%);
  border: 1px solid #efd9c8;
  border-radius: 17px;
}

.board-heading small,
.board-heading strong {
  display: block;
}

.board-heading small {
  color: var(--worker-orange);
  font-size: 11px;
  letter-spacing: .9px;
  font-weight: 700;
}

.board-heading strong {
  margin-top: 7px;
  color: #303947;
  font-size: 14px;
}

.trigger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}

.trigger-grid article {
  min-height: 126px;
  padding: 13px 11px;
  background: white;
  border: 1px solid #efd8c7;
  border-radius: 13px;
}

.trigger-grid article span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--worker-orange);
  background: var(--soft-orange);
  border-radius: 10px;
}

.trigger-grid article strong {
  display: block;
  margin-top: 14px;
  color: #303947;
  font-size: 12px;
  line-height: 1.35;
}

.restart-note {
  display: grid;
  grid-template-columns: 4px auto 1fr;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  color: #756b64;
  font-size: 11px;
  line-height: 1.45;
}

.restart-note > span {
  width: 4px;
  height: 37px;
  background: var(--worker-orange);
  border-radius: 999px;
}

.restart-note strong {
  color: #914817;
}

.starting-point-card {
  overflow: hidden;
  background: linear-gradient(180deg, white 0%, #f8faff 100%);
  border: 1px solid #d7e3f5;
  border-radius: 17px;
}

.starting-head {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 17px;
  border-bottom: 1px solid #e1e8f2;
}

.starting-head small,
.starting-head strong {
  display: block;
}

.starting-head small {
  color: var(--business-blue);
  font-size: 11px;
  letter-spacing: .9px;
  font-weight: 700;
}

.starting-head strong {
  margin-top: 6px;
  color: #303947;
  font-size: 12px;
}

.starting-head > span {
  padding: 7px 10px;
  color: #3967a8;
  background: var(--soft-blue);
  border: 1px solid #d8e5f7;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.role-list {
  display: grid;
  gap: 8px;
  padding: 13px 15px;
}

.role-list article {
  min-height: 66px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  background: white;
  border: 1px solid #e1e7ef;
  border-radius: 12px;
}

.role-list article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--business-blue);
  background: var(--soft-blue);
  border-radius: 11px;
}

.role-list strong,
.role-list small {
  display: block;
}

.role-list strong {
  color: #2c3542;
  font-size: 12px;
}

.role-list small {
  margin-top: 4px;
  color: #7a8390;
  font-size: 11px;
}

.role-list a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: var(--business-blue);
  background: white;
  border: 1px solid #d8e4f6;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.starting-foot {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 10px 16px;
  color: #667184;
  background: var(--soft-blue);
  border-top: 1px solid #dce7f5;
  font-size: 11px;
  line-height: 1.45;
}

.starting-foot > span {
  color: var(--business-blue);
}

.starting-foot strong {
  color: #2d3746;
}

.pricing {
  padding-top: 68px;
  padding-bottom: 70px;
}

.pricing-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(560px, 1.3fr);
  gap: 14px;
  margin: 31px auto 0;
  text-align: left;
}

.free-plan,
.transparency-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.free-plan {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: 19px 21px;
  background:
    radial-gradient(circle at 88% 5%, rgba(255, 128, 17, .075), transparent 33%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  border-color: #efdac8;
}

.free-plan::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--worker-orange);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.plan-top small {
  color: var(--worker-orange);
  font-size: 11px;
  letter-spacing: .9px;
  font-weight: 700;
}

.plan-top h3 {
  margin: 5px 0 0;
  color: #2c3441;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.plan-top b {
  padding: 7px 10px;
  color: white;
  background: var(--worker-orange);
  border-radius: 999px;
  font-size: 11px;
}

.price {
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 17px;
}

.price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 44px;
  line-height: .9;
}

.price span {
  padding-bottom: 4px;
  color: #7b827e;
  font-size: 11px;
}

.free-plan > p {
  margin: 13px 0 0;
  color: #6d746f;
  font-size: 11px;
  line-height: 1.5;
}

.free-plan ul {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.free-plan li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4f5865;
  font-size: 11px;
}

.free-plan li span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--worker-orange);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.pricing-side {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.transparency-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
}

.doc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--business-blue);
  background: var(--soft-blue);
  border-radius: 11px;
  font-size: 19px;
}

.transparency-card small,
.transparency-card strong {
  display: block;
}

.transparency-card small {
  color: var(--business-blue);
  font-size: 11px;
  letter-spacing: .9px;
  font-weight: 700;
}

.transparency-card strong {
  margin-top: 4px;
  color: #2c3542;
  font-size: 12px;
}

.transparency-card p {
  margin: 4px 0 0;
  color: #727b88;
  font-size: 11px;
}

.transparency-card .text-link {
  max-width: 165px;
  margin: 0;
  color: var(--business-blue);
  font-size: 11px;
  white-space: normal;
}

.simple-proof {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 8px 12px;
  padding: 14px 20px;
  color: #3b4552;
  background: var(--soft-blue);
  border: 1px solid #d8e4f5;
  border-radius: 15px;
}

.simple-proof strong,
.simple-proof span {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.05;
}

.simple-proof span {
  color: var(--worker-orange);
}

.simple-proof p {
  margin: 0 0 0 8px;
  padding-left: 18px;
  color: #6d7785;
  border-left: 1px solid #dce4ee;
  font-size: 11px;
}

.final-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 17px;
  padding: 24px 28px;
  color: white;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(17, 19, 24, .14);
  text-align: left;
}

.final-strip small,
.final-strip strong {
  display: block;
}

.final-strip small {
  color: #ff9c47;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
}

.final-strip strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
  font-weight: 600;
}

.final-cta {
  width: 200px;
  margin: 0;
}

@media (max-width: 1120px) {
  .nav-shell,
  .shell {
    width: min(100% - 36px, 1040px);
  }

  .hero-grid {
    grid-template-columns: minmax(380px, .9fr) minmax(500px, 1.1fr);
  }

  .split-layout {
    gap: 48px;
  }

  .comparison-row {
    grid-template-columns: 120px minmax(460px, 1fr) 140px;
    gap: 16px;
    padding-inline: 15px;
  }

  .comparison-steps span {
    min-width: 75px;
    padding-inline: 8px;
  }

  .readiness-board {
    grid-template-columns: minmax(330px, .78fr) minmax(520px, 1.22fr);
  }
}

@media (max-width: 899px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: grid;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding-bottom: 34px;
  }

  .hero-product {
    max-width: 680px;
    margin-inline: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split-layout {
    gap: 34px;
  }

  .copy-block {
    text-align: center;
  }

  .copy-block .eyebrow,
  .section-head-row .eyebrow {
    justify-content: center;
  }

  .copy-block > p,
  .chips,
  .copy-block .primary-cta,
  .copy-block .cta-support {
    margin-inline: auto;
  }

  .chips-label {
    text-align: center;
  }

  .image-card {
    max-width: 650px;
    justify-self: center;
  }

  .product-flow {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .product-flow > article {
    min-height: 0;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .section-head-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-head-row > p {
    max-width: 650px;
    margin: 0 auto;
  }

  .comparison-desktop {
    display: none;
  }

  .comparison-mobile {
    display: grid;
    gap: 14px;
    width: min(100%, 650px);
    margin: 30px auto 0;
    text-align: left;
  }

  .mobile-path-card {
    padding: 22px 18px 18px;
    border: 1px solid var(--line);
    border-radius: 19px;
    box-shadow: var(--small-shadow);
  }

  .mobile-current {
    background: linear-gradient(180deg, #fffaf6 0%, #fffdfb 100%);
    border-color: #efd9c8;
  }

  .mobile-snaproles {
    background: linear-gradient(180deg, #f7faff 0%, #fbfdff 100%);
    border-color: #d4e1f5;
  }

  .mobile-path-label {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 1.1px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-current .mobile-path-label {
    color: #cf650d;
  }

  .mobile-snaproles .mobile-path-label {
    color: #0f66df;
  }

  .mobile-path-card h3 {
    margin: 8px 0 0;
    color: var(--ink);
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.35px;
  }

  .mobile-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
  }

  .mobile-steps > div {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: 0 4px 12px rgba(25, 36, 52, .035);
  }

  .mobile-steps span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-current .mobile-steps span {
    background: var(--worker-orange);
  }

  .mobile-snaproles .mobile-steps span {
    background: var(--business-blue);
  }

  .mobile-steps strong {
    font-size: 15px;
    line-height: 1.15;
  }

  .mobile-outcome {
    min-height: 70px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 13px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .mobile-current .mobile-outcome {
    border-color: #efd6c1;
  }

  .mobile-snaproles .mobile-outcome {
    border-color: #d2e0f4;
  }

  .mobile-outcome > b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    font-size: 21px;
    font-weight: 800;
  }

  .mobile-current .mobile-outcome > b {
    color: white;
    background: var(--worker-orange);
  }

  .mobile-snaproles .mobile-outcome > b {
    color: var(--business-blue);
    background: #e8f1ff;
  }

  .mobile-outcome strong,
  .mobile-outcome small {
    display: block;
  }

  .mobile-outcome strong {
    color: #2e3744;
    font-size: 14px;
    line-height: 1.25;
  }

  .mobile-outcome small {
    margin-top: 3px;
    color: var(--body);
    font-size: 13px;
    line-height: 1.3;
  }

  .readiness-board,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .readiness-board,
  .pricing-grid {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .trigger-side {
    min-height: 0;
  }

  .transparency-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .transparency-card .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .simple-proof {
    min-height: 76px;
  }

  .final-strip {
    grid-template-columns: 1fr;
    gap: 19px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 70px;
  }

  .nav-shell,
  .shell {
    width: calc(100% - 28px);
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand-word {
    font-size: 21px;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    padding-top: 34px;
  }

  .eyebrow {
    gap: 9px;
    letter-spacing: 1.15px;
  }

  .eyebrow i {
    width: 24px;
  }

  h1 {
    margin-top: 20px;
    font-size: 45px;
    line-height: .99;
    letter-spacing: -1.25px;
  }

  h2 {
    font-size: 37px;
    line-height: 1.045;
    letter-spacing: -1px;
  }

  .hero-body,
  .copy-block > p,
  .center-copy,
  .section-head-row > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-copy .text-link {
    margin-top: 18px;
  }

  .primary-cta {
    min-height: 50px;
    width: 100%;
    font-size: 13px;
  }

  .microcopy {
    justify-content: center;
  }

  .hero-product {
    margin-top: 2px;
  }

  .hero-product img {
    border-radius: 16px;
  }

  .trust-strip article {
    min-height: 102px;
    grid-template-columns: 36px 1fr;
    padding: 15px 12px;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .trust-strip strong {
    font-size: 9px;
  }

  .chips {
    gap: 7px;
  }

  .chips span {
    min-height: 42px;
  }

  .image-card {
    border-radius: 17px;
  }

  .hiring-image img {
    max-height: none;
  }

  .product-flow {
    margin-top: 29px;
    padding: 12px;
    border-radius: 19px;
  }

  .product-flow > article {
    padding: 16px 14px;
  }

  .product-flow h3 {
    font-size: 14px;
  }

  .comparison-mobile {
    margin-top: 26px;
  }

  .mobile-path-card {
    padding: 22px 18px 18px;
  }

  .mobile-path-card h3 {
    font-size: 23px;
  }

  .mobile-steps strong {
    font-size: 15px;
  }

  .readiness-board {
    gap: 12px;
    padding: 12px;
    margin-top: 28px;
    border-radius: 20px;
  }

  .trigger-side,
  .starting-point-card {
    border-radius: 15px;
  }

  .trigger-side {
    padding: 16px 14px;
  }

  .trigger-grid {
    gap: 7px;
    margin-top: 18px;
  }

  .trigger-grid article {
    min-height: 96px;
    padding: 10px 8px;
  }

  .trigger-grid article span {
    width: 31px;
    height: 31px;
  }

  .trigger-grid article strong {
    margin-top: 10px;
  }

  .restart-note {
    margin-top: 17px;
  }

  .restart-note strong {
    grid-column: 2;
  }

  .starting-head {
    padding: 13px;
  }

  .starting-head > span {
    font-size: 7px;
  }

  .role-list {
    padding: 10px;
  }

  .role-list article {
    min-height: 62px;
    grid-template-columns: 36px 1fr auto;
    gap: 9px;
    padding: 8px 9px;
  }

  .role-list article > span {
    width: 36px;
    height: 36px;
  }

  .role-list strong {
    font-size: 10px;
  }

  .role-list a {
    min-height: 38px;
    padding-inline: 8px;
  }

  .pricing {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .pricing-grid {
    margin-top: 23px;
  }

  .free-plan {
    min-height: 0;
    padding: 17px 16px;
    border-radius: 16px;
  }

  .plan-top h3 {
    font-size: 27px;
  }

  .price {
    margin-top: 14px;
  }

  .price strong {
    font-size: 39px;
  }

  .transparency-card {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 13px 14px;
    border-radius: 16px;
  }

  .doc-icon {
    width: 38px;
    height: 38px;
  }

  .transparency-card .text-link {
    grid-column: 2;
    margin-top: 1px;
    font-size: 11px;
  }

  .simple-proof {
    min-height: 0;
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .simple-proof strong,
  .simple-proof span {
    font-size: 23px;
  }

  .simple-proof p {
    margin: 8px 0 0;
    padding: 0;
    border-left: 0;
  }

  .final-strip {
    margin-top: 14px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .final-strip strong {
    font-size: 25px;
  }

  .final-cta {
    width: 100%;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .mobile-path-card {
    padding-inline: 15px;
  }

  .mobile-path-card h3 {
    font-size: 22px;
  }

  .mobile-steps strong {
    font-size: 14px;
  }

  .starting-head > span {
    display: none;
  }

  .final-strip strong {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Business benefit strip visibility enhancement */
.trust-strip-band{
  padding:24px clamp(18px,3.2vw,58px) 30px;
  background:linear-gradient(112deg,#093979 0%,#0d5fd5 54%,#1673ff 100%);
  border-top:1px solid rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 18px 42px rgba(15,72,154,.16);
}
.trust-strip-label{
  width:min(100%,1460px);
  margin:0 auto 20px;
  color:rgba(255,255,255,.78);
  font-size:18px;
  font-weight:700;
  letter-spacing:1.65px;
  text-align:center;
}
.trust-strip{
  width:min(100%,1460px);
  margin-inline:auto;
  gap:12px;
  border:0;
  background:transparent;
}
.trust-strip article{
  min-height:126px;
  grid-template-columns:50px 1fr;
  gap:15px;
  padding:22px 21px;
  border:1px solid rgba(255,255,255,.18)!important;
  border-radius:16px;
  background:rgba(255,255,255,.105);
  box-shadow:0 12px 28px rgba(2,30,78,.12);
  backdrop-filter:blur(7px);
}
.trust-strip article:hover{background:rgba(255,255,255,.15);transform:translateY(-1px)}
.trust-icon{
  width:50px;
  height:50px;
  color:#ff8011;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.95);
  border-radius:14px;
  box-shadow:0 8px 20px rgba(2,30,78,.18),inset 0 1px 0 rgba(255,255,255,1);
  font-size:0;
}
.trust-icon svg{width:29px;height:29px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.trust-strip strong{color:#fff;font-size:15px;line-height:1.25;letter-spacing:-.08px}
.trust-strip small{margin-top:7px;color:rgba(255,255,255,.78);font-size:11.5px;line-height:1.45}
@media(max-width:1040px){
  .trust-strip-band{padding:23px 22px 27px}
  .trust-strip{grid-template-columns:repeat(2,1fr)}
  .trust-strip article:nth-child(n){border:1px solid rgba(255,255,255,.18)!important}
}
@media(max-width:600px){
  .trust-strip-band{padding:21px 12px 24px}
  .trust-strip-label{margin-bottom:12px;font-size:14px;letter-spacing:1.3px}
  .trust-strip{grid-template-columns:1fr;gap:9px}
  .trust-strip article{min-height:92px;grid-template-columns:44px 1fr;padding:15px 14px;gap:13px}
  .trust-icon{width:44px;height:44px;border-radius:13px}
  .trust-icon svg{width:25px;height:25px}
  .trust-strip strong{font-size:13.5px}
  .trust-strip small{margin-top:4px}
}

/* =========================================================
   FULL PLAN DETAILS BUTTON
========================================================= */

.sr-plan-details-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 16px 0 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1673ff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

    .sr-plan-details-open-btn span:last-child {
        font-size: 20px;
        line-height: 1;
        text-decoration: none;
    }

    .sr-plan-details-open-btn:hover {
        color: #0d5fe0;
    }


/* =========================================================
   DETAILS MODAL
========================================================= */

.sr-plan-details-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

    .sr-plan-details-modal.is-open {
        display: flex;
    }


/* Overlay */

.sr-plan-details-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 40, 0.68);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


/* Prevent page scrolling */

body.sr-plan-details-open {
    overflow: hidden;
}


/* =========================================================
   DIALOG
========================================================= */

.sr-plan-details-dialog {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(1400px, 100%);
    height: min(900px, calc(100vh - 48px));
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   HEADER
========================================================= */

.sr-plan-details-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex: 0 0 auto;
    padding: 34px 40px 28px;
    border-bottom: 1px solid #e4e9f0;
    background: #ffffff;
}


.sr-plan-details-heading {
    min-width: 0;
}


.sr-plan-details-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #1673ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.sr-plan-details-heading h2 {
    margin: 0;
    color: #202936;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 700;
    line-height: 1;
}


.sr-plan-details-heading p {
    margin: 16px 0 0;
    color: #718096;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.sr-plan-details-close {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce3ec;
    border-radius: 14px;
    background: #ffffff;
    color: #253448;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}


    .sr-plan-details-close:hover {
        background: #f5f8fc;
        border-color: #c9d3df;
    }


/* =========================================================
   DESKTOP TABLE
========================================================= */

.sr-plan-details-desktop {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    background: #f3f6fc;
}


.sr-plan-table-wrap {
    width: 100%;
    min-width: 1050px;
    overflow: visible;
}


.sr-plan-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    color: #253448;
    font-size: 14px;
}


    .sr-plan-table th,
    .sr-plan-table td {
        padding: 18px 16px;
        border-bottom: 1px solid #e3e8ef;
        text-align: center;
        vertical-align: middle;
    }


    .sr-plan-table thead th {
        position: sticky;
        top: 0;
        z-index: 5;
        height: 74px;
        background: #ffffff;
        color: #202936;
        font-size: 16px;
        font-weight: 700;
    }


        .sr-plan-table thead th:first-child {
            width: 250px;
            text-align: left;
        }


    .sr-plan-table tbody th {
        width: 250px;
        color: #2d3c51;
        font-size: 14px;
        font-weight: 700;
        text-align: left;
    }


        .sr-plan-table tbody th small {
            display: block;
            margin-top: 3px;
            color: #7c8795;
            font-size: 11px;
            font-weight: 500;
        }


    .sr-plan-table td strong {
        display: block;
        font-size: 18px;
        font-weight: 700;
    }


    .sr-plan-table td small {
        display: block;
        margin-top: 2px;
        color: #8290a1;
        font-size: 11px;
    }


/* =========================================================
   POPULAR COLUMN
========================================================= */

.sr-plan-table-popular {
    background: #edf4ff !important;
    border-left: 1px solid #1673ff !important;
    border-right: 1px solid #1673ff !important;
}


.sr-plan-table thead .sr-plan-table-popular {
    border-top: 2px solid #1673ff !important;
}


.sr-plan-table tbody tr:last-child
.sr-plan-table-popular {
    border-bottom: 2px solid #1673ff !important;
}


/* =========================================================
   BADGES
========================================================= */

.sr-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #1673ff;
    color: #ffffff;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
    vertical-align: middle;
}


.sr-plan-badge--free {
    background: #ff7a00;
}


/* =========================================================
   YES / NO
========================================================= */

.sr-plan-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #55c84a;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900;
}


.sr-plan-no {
    color: #df2d2d !important;
    font-size: 22px !important;
    font-weight: 700;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.sr-plan-details-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 42px;
    padding: 0 18px;
    box-sizing: border-box;
    border: 1px solid #cddcf2;
    border-radius: 9px;
    background: #ffffff;
    color: #1673ff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}


    .sr-plan-details-cta:hover {
        border-color: #1673ff;
        background: #1673ff;
        color: #ffffff;
        transform: translateY(-1px);
    }


.sr-plan-details-cta--free {
    border-color: #ff7a00;
    background: #ff7a00;
    color: #ffffff;
}


    .sr-plan-details-cta--free:hover {
        background: #ed6d00;
        border-color: #ed6d00;
    }


.sr-plan-details-cta--popular {
    border-color: #ff7a00;
    background: #ff7a00;
    color: #ffffff;
}


    .sr-plan-details-cta--popular:hover {
        background: #ed6d00;
        border-color: #ed6d00;
    }


.sr-plan-table-cta-row th,
.sr-plan-table-cta-row td {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 0;
}


/* =========================================================
   MOBILE / TABLET AREA
========================================================= */

.sr-plan-details-mobile {
    display: none;
}


.sr-plan-mobile-navigation {
    display: none;
}

/* =========================================================
   DESKTOP FOOTER
   1200PX AND ABOVE
========================================================= */

.sr-plan-details-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 0 0 auto;
    width: 100%;
    min-height: 42px;
    padding: 10px 24px;
    box-sizing: border-box;
    border-top: 1px solid #e3e8ef;
    background: #ffffff;
    color: #718096;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    z-index: 10;
}

    .sr-plan-details-footer span {
        display: block;
        color: #718096;
        white-space: nowrap;
    }

        .sr-plan-details-footer span:last-child {
            margin-left: auto;
            text-align: right;
        }

/* =========================================================
   BELOW 1200PX
========================================================= */

@media (max-width: 1199px) {

    .sr-plan-details-modal {
        padding: 16px;
    }


    .sr-plan-details-dialog {
        width: 100%;
        height: calc(100vh - 32px);
        max-height: calc(100vh - 32px);
        border-radius: 22px;
    }


    .sr-plan-details-desktop {
        display: none;
    }


    .sr-plan-details-mobile {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
        width: 100%;
        padding: 16px;
        gap: 10px;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        background: #f3f6fc;
        -webkit-overflow-scrolling: touch;
    }


    /* =====================================================
       PLAN CARD
    ===================================================== */

    .sr-plan-mobile-card {
        position: relative;
        display: block;
        width: 100%;
        flex: 0 0 auto;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
        border: 1px solid #e3e8ef;
        border-radius: 10px;
        background: #ffffff;
        color: #1e2938;
    }


    .sr-plan-mobile-card--popular {
        border-color: #1673ff;
        background: #1673ff;
        color: #ffffff;
    }


    /* =====================================================
       RECOMMENDED
    ===================================================== */

    .sr-plan-mobile-popular {
        position: absolute;
        top: 8px;
        left: 50%;
        z-index: 3;
        transform: translateX(-50%);
        padding: 5px 10px;
        border-radius: 5px;
        background: #ff7a00;
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }


    /* =====================================================
       HEADER
    ===================================================== */

    .sr-plan-mobile-header {
        appearance: none;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto 30px;
        align-items: center;
        gap: 10px;
        width: 100%;
        min-height: 76px;
        padding: 12px;
        margin: 0;
        box-sizing: border-box;
        border: 0;
        outline: none;
        background: transparent;
        color: inherit;
        font: inherit;
        text-align: left;
        cursor: pointer;
    }


    .sr-plan-mobile-card--popular
    .sr-plan-mobile-header {
        padding-top: 34px;
        min-height: 92px;
    }


    .sr-plan-mobile-heading {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }


        .sr-plan-mobile-heading strong {
            display: block;
            color: #111820;
            font-size: 22px;
            font-weight: 700;
            line-height: 1.1;
        }


        .sr-plan-mobile-heading small {
            display: block;
            margin-top: 4px;
            color: #777f89;
            font-size: 11px;
            font-weight: 500;
            line-height: 1.25;
        }


    .sr-plan-mobile-card--popular
    .sr-plan-mobile-heading strong,
    .sr-plan-mobile-card--popular
    .sr-plan-mobile-heading small {
        color: #ffffff;
    }


    .sr-plan-mobile-price {
        color: #737c87;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }


    .sr-plan-mobile-card--popular
    .sr-plan-mobile-price {
        color: #ffffff;
    }


    /* =====================================================
       CHEVRON
    ===================================================== */

    .sr-plan-mobile-chevron {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        background: #eff3f9;
        color: #1d2a3b;
        font-size: 18px;
        line-height: 1;
        transition: transform .2s ease;
    }


    .sr-plan-mobile-card--popular
    .sr-plan-mobile-chevron {
        background: #ffffff;
        color: #1d2a3b;
    }


    .sr-plan-mobile-card.is-expanded
    .sr-plan-mobile-chevron {
        transform: rotate(180deg);
    }


    /* =====================================================
       CONTENT
    ===================================================== */

    .sr-plan-mobile-content {
        display: none;
        width: 100%;
        height: auto;
        max-height: none;
        padding: 0 12px 12px;
        box-sizing: border-box;
        overflow: visible;
    }


    .sr-plan-mobile-card.is-expanded
    .sr-plan-mobile-content {
        display: block;
    }


    /* =====================================================
       ROW
    ===================================================== */

    .sr-plan-mobile-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(90px, 42%);
        align-items: center;
        gap: 12px;
        min-height: 50px;
        padding: 12px 0;
        box-sizing: border-box;
        border-top: 1px solid #e1e6ed;
    }


        .sr-plan-mobile-row > span {
            min-width: 0;
            color: #26344a;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.3;
        }


        .sr-plan-mobile-row > strong {
            min-width: 0;
            color: #26344a;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.3;
        }


        .sr-plan-mobile-row small {
            display: block;
            margin-top: 2px;
            color: #7c8795;
            font-size: 11px;
            font-weight: 500;
        }


    .sr-plan-mobile-card--popular
    .sr-plan-mobile-row {
        border-top-color: rgba(255,255,255,.28);
    }


        .sr-plan-mobile-card--popular
        .sr-plan-mobile-row > span,
        .sr-plan-mobile-card--popular
        .sr-plan-mobile-row > strong {
            color: #ffffff;
        }


        .sr-plan-mobile-card--popular
        .sr-plan-mobile-row small {
            color: rgba(255,255,255,.78);
        }


    /* =====================================================
       MOBILE CTA
    ===================================================== */

    .sr-plan-mobile-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 0 2px;
    }


    /* =====================================================
       MOBILE PREVIOUS / NEXT
    ===================================================== */

    .sr-plan-mobile-navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex: 0 0 auto;
        padding: 10px 16px;
        border-top: 1px solid #e3e8ef;
        background: #ffffff;
    }


    .sr-plan-mobile-nav-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        min-width: 80px;
        min-height: 36px;
        padding: 0 10px;
        border: 1px solid #d8e0ea;
        border-radius: 8px;
        background: #ffffff;
        color: #1673ff;
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
    }


        .sr-plan-mobile-nav-btn:disabled {
            opacity: .35;
            cursor: default;
        }


    .sr-plan-mobile-nav-position {
        color: #64748b;
        font-size: 11px;
        font-weight: 800;
        text-align: center;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .sr-plan-details-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex: 0 0 auto;
        padding: 12px 20px;
        border-top: 1px solid #e3e8ef;
        background: #ffffff;
        color: #718096;
        font-size: 10px;
        line-height: 1.3;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media ( min-width: 768px ) and ( max-width: 1199px ) {

    .sr-plan-details-modal {
        padding: 24px;
    }


    .sr-plan-details-dialog {
        height: calc(100vh - 48px);
        max-height: calc(100vh - 48px);
        border-radius: 26px;
    }


    .sr-plan-details-mobile {
        padding: 20px;
        gap: 12px;
    }


    .sr-plan-mobile-header {
        min-height: 82px;
        padding: 16px;
    }


    .sr-plan-mobile-card--popular
    .sr-plan-mobile-header {
        min-height: 98px;
        padding-top: 36px;
    }


    .sr-plan-mobile-heading strong {
        font-size: 24px;
    }


    .sr-plan-mobile-heading small {
        font-size: 12px;
    }


    .sr-plan-mobile-row {
        min-height: 56px;
        padding: 14px 0;
    }


        .sr-plan-mobile-row > span,
        .sr-plan-mobile-row > strong {
            font-size: 14px;
        }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sr-plan-details-modal {
        padding: 0;
    }


    .sr-plan-details-dialog {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }


    .sr-plan-details-header {
        padding: 20px 18px;
    }


    .sr-plan-details-heading h2 {
        font-size: 34px;
    }


    .sr-plan-details-heading p {
        margin-top: 10px;
        font-size: 13px;
    }


    .sr-plan-details-close {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 11px;
        font-size: 26px;
    }


    .sr-plan-details-mobile {
        padding: 10px;
        gap: 8px;
    }


    .sr-plan-mobile-header {
        grid-template-columns: minmax(0, 1fr) auto 28px;
        gap: 7px;
        min-height: 70px;
        padding: 10px;
    }


    .sr-plan-mobile-card--popular
    .sr-plan-mobile-header {
        min-height: 90px;
        padding-top: 34px;
    }


    .sr-plan-mobile-heading strong {
        font-size: 19px;
    }

    .sr-plan-mobile-price {
        font-size: 11px;
    }


    .sr-plan-mobile-chevron {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }


    .sr-plan-mobile-content {
        padding: 0 10px 10px;
    }


    .sr-plan-mobile-row {
        grid-template-columns: minmax(0, 1fr) minmax(80px, 42%);
        gap: 8px;
        min-height: 46px;
        padding: 10px 0;
    }

    .sr-plan-mobile-navigation {
        padding: 8px 10px;
    }


    .sr-plan-mobile-nav-btn {
        min-width: 70px;
        min-height: 34px;
    }


    .sr-plan-mobile-nav-position {
        font-size: 10px;
    }


    .sr-plan-details-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        padding: 9px 14px;
        font-size: 9px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .sr-plan-details-heading h2 {
        font-size: 29px;
    }


    .sr-plan-details-heading p {
        font-size: 12px;
    }


    .sr-plan-mobile-heading strong {
        font-size: 18px;
    }

}