/* ========================
   RESET & BASE
   ======================== */

html{scroll-behavior:smooth;}
body{font-family:'Red Hat Display',system-ui,sans-serif;color:#1a202c;background:#fff;-webkit-font-smoothing:antialiased;}

/* ========================
   DESIGN TOKENS
   ======================== */


/* ========================
   LAYOUT
   ======================== */
.wrap{max-width:1140px;margin:0 auto;padding:0 48px;}
@media(max-width:768px){.wrap{padding:0 24px;}}

/* ========================
   GLOBAL COMPONENTS
   ======================== */
.btn{display:inline-flex;align-items:center;gap:8px;font-family:inherit;font-size:15px;font-weight:600;padding:14px 28px;border-radius:8px;text-decoration:none;border:none;cursor:pointer;transition:all .2s ease;letter-spacing:-.01em;white-space:nowrap;}
.btn--primary{background:var(--primary);color:#fff;box-shadow:0 4px 14px rgba(161,30,92,.35);}
.btn--primary:hover{background:var(--primary-dark);box-shadow:0 6px 20px rgba(161,30,92,.45);transform:translateY(-1px);}
.btn--white{background:#fff;color:var(--primary);box-shadow:0 4px 18px rgba(0,0,0,.16);}
.btn--white:hover{background:#f9f0f5;transform:translateY(-1px);box-shadow:0 6px 28px rgba(0,0,0,.2);}

/* ========================
   SUB-NAV
   ======================== */
.subnav { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky !important; top: 64px !important; z-index: 99 !important; }
.subnav__inner {
  max-width: 1140px; margin: 0 auto; padding: 0 48px;
  height: 52px; display: flex; align-items: center; gap: 8px;
}
@media (max-width: 900px) {
  .subnav__inner { padding: 12px 24px; height: auto; overflow-x: auto; flex-wrap: nowrap; }
}
.subnav__label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--light);
  margin-right: 8px; white-space: nowrap;
}
.subnav__pill {
  font-size: 12.5px; font-weight: 600; padding: 6px 16px;
  border-radius: 100px; border: 1.5px solid var(--border);
  color: var(--muted); background: #fff;
  text-decoration: none; transition: all .18s;
  font-family: inherit; white-space: nowrap;
}
.subnav__pill:hover { border-color: var(--primary); color: var(--primary); }
.subnav__pill--active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ========================
   HERO
   ======================== */
.hero {
  background: linear-gradient(135deg, #a11e5c 0%, #BA535F 100%);
  position: relative; overflow: visible;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 5% 100%, rgba(0,0,0,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 95% 0%, rgba(255,255,255,.08) 0%, transparent 55%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero__inner {
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 88px;
  padding-left: max(48px, calc((100vw - 1140px) / 2 + 48px));
  padding-right: 48px;
  position: relative; z-index: 1;
  gap: 64px;
}
@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
    padding: 60px 24px 24px;
    align-items: flex-start;
    gap: 24px;
  }
}
.hero__text {
  flex: 0 0 50%;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero__text { flex: none; width: 100%; max-width: 100%; }
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  margin-bottom: 30px;
}
.hero__tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.95); flex-shrink: 0;
}
.hero__title {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.03em;
  color: #fff; margin: 0 0 28px;
}
.hero__sub {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.76;
  color: rgba(255,255,255,.82);
  max-width: 38rem;
}
.hero__media {
  position: absolute;
  right: max(48px, calc((100vw - 1140px) / 2 + 48px));
  bottom: -10%;
  height: 120%;
  width: 42%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 0;
  pointer-events: none;
  opacity: .95;
  transform: translateX(24px);
}
.hero__media img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.22));
}
@media (max-width: 900px) {
  .hero__media {
    position: static;
    width: 100%;
    height: auto;
    justify-content: center;
    opacity: 1;
    transform: none;
    order: 2;
  }
  .hero__media img {
    height: auto;
    width: 100%;
    max-width: 420px;
  }
  .hero__tag { order: 1; }
  .hero__title { order: 2; }
  .hero__media { order: 3; }
  .hero__sub { order: 4; }
  .hero__tag, .hero__title, .hero__sub {
    position: relative; z-index: 2;
  }
}

/* ========================
   SECTION & GENERAL LAYOUT
   ======================== */
.section { padding: var(--pad) 0; }
@media (max-width: 900px) {
  .section:first-of-type { padding-top: calc(var(--pad) / 2); }
}
.section--surface { background: var(--surface); }

.section-label {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 600; letter-spacing: -.01em;
  color: var(--secondary);
  border: 1.5px solid rgba(186,83,95,.38);
  border-radius: 8px; padding: 7px 20px; margin-bottom: 24px;
  background: transparent;
}
h2.section-h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.body-block { max-width: 720px; }
.body-block p {
  font-size: 15.5px; line-height: 1.82; color: var(--muted);
  margin-bottom: 18px;
}
.body-block p:last-child { margin-bottom: 0; }

.bullet-list-2col {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-sm);
  margin-top: 28px;
}
@media (max-width: 760px) { .bullet-list-2col { grid-template-columns: 1fr; } }
.bullet-list-2col li {
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
  padding: 20px 24px;
  border: none;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
}
.bullet-list-2col li.full {
  grid-column: 1 / -1;
}
.bullet-list-2col .item-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
  background: var(--teal);
}
.bullet-list-2col--rose {
  background: #BA535F !important;
  border: none !important;
  box-shadow: var(--sh-md);
}
.bullet-list-2col--rose li {
  color: #fff !important;
}
.bullet-list-2col--rose .item-dot {
  background: #fff !important;
}
@media (min-width: 761px) {
  .bullet-list-2col--rose li:nth-child(-n+2) {
    padding-top: 40px;
  }
  .bullet-list-2col--rose li:nth-last-child(-n+2) {
    padding-bottom: 40px;
  }
  .bullet-list-2col--rose li:nth-child(2n+1) {
    padding-left: 40px;
  }
}
@media (max-width: 760px) {
  .bullet-list-2col--rose li:first-child {
    padding-top: 40px;
  }
  .bullet-list-2col--rose li:last-child {
    padding-bottom: 40px;
  }
  .bullet-list-2col--rose li {
    padding-left: 40px;
  }
}

/* ========================
   BENEFITS GRID
   ======================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  box-shadow: var(--sh-sm);
}
.benefit-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  border-color: rgba(161, 30, 92, 0.28);
}
.benefit-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.benefit-card__icon svg {
  width: 20px;
  height: 20px;
}
.benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ========================
   OVERVIEW SPLIT
   ======================== */
.overview-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.overview-split__text {
  display: flex;
  flex-direction: column;
}
.overview-split__img {
  display: flex;
  justify-content: flex-end;
}
.overview-split__img img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(10, 15, 30, 0.08);
  object-fit: cover;
}
@media (max-width: 900px) {
  .overview-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .overview-split__img {
    justify-content: center;
  }
  .overview-split__img img {
    max-width: 100%;
  }
}

/* ========================
   BULLET LIST 3 COL (EMPLOYER CONTROL)
   ======================== */
.bullet-list-3col {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-sm);
  margin-top: 28px;
}
.bullet-list-3col li {
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
}
.bullet-list-3col .item-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
  background: var(--teal);
}
.bullet-list-3col li.img-cell {
  grid-column: 3;
  grid-row: 1 / span 4;
  padding: 0;
  display: block;
  height: 100%;
}
.bullet-list-3col li.img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .bullet-list-3col {
    grid-template-columns: 1fr;
  }
  .bullet-list-3col li.img-cell {
    grid-column: 1;
    grid-row: auto;
    height: 240px;
  }
}

/* ========================
   WHAT IT DOES SPLIT
   ======================== */
.what-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.what-split__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.what-split__img {
  display: flex;
  justify-content: flex-end;
}
.what-split__img img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 20px 48px rgba(10, 15, 30, 0.12));
}
@media (min-width: 901px) {
  .what-split {
    position: relative;
  }
  .what-split__img img {
    position: absolute;
    right: 0;
    top: calc(-1 * var(--pad) - 50px);
    bottom: calc(-1 * var(--pad) - 50px);
    height: auto;
    width: auto;
    max-width: 40%;
  }
}
@media (max-width: 900px) {
  .what-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .what-split__img {
    justify-content: center;
  }
  .what-split__img img {
    max-width: 320px;
  }
}

/* ========================
   WORKFORCE LAYOUT
   ======================== */
.section--workforce {
  position: relative;
  z-index: 2;
}
.section--workforce .wrap {
  position: relative;
}
@media (min-width: 901px) {
  .workforce-top {
    max-width: 580px;
  }
  .workforce-top + .bullet-list-2col {
    margin-top: 50px;
  }
  .workforce-split__img img {
    position: absolute;
    right: 0;
    top: -177px;
    height: 354px;
    width: auto;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 20px 48px rgba(10, 15, 30, 0.1));
  }
}
@media (max-width: 900px) {
  .workforce-split__img {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .workforce-split__img img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--sh-md);
  }
}


/* ========================
   GAP SPLIT LAYOUT
   ======================== */
.gap-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .gap-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.outcomes-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--sh-sm);
}
.outcomes-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.outcomes-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outcomes-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  color: var(--navy);
  font-size: 14.5px;
  box-shadow: 0 1px 3px rgba(0,0,0,.02);
  transition: border-color .2s, transform .2s;
}
.outcomes-list li:hover {
  border-color: var(--secondary);
  transform: translateX(4px);
}
.outcome-icon {
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.outcome-icon svg {
  width: 18px;
  height: 18px;
}

/* ========================
   PARAMETER PILLS
   ======================== */
.parameter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.parameter-badge {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(161, 30, 92, 0.18);
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.parameter-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ========================
   STEPS LAYOUT
   ======================== */
.steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .steps-list { grid-template-columns: 1fr; gap: 20px; }
}
.step-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--sh-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.step-item:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.step-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-body {
  flex: 1;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================
   FAQ PANEL
   ======================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}
.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--sh-sm);
  transition: border-color .2s;
}
.faq-card:hover {
  border-color: rgba(161, 30, 92, 0.28);
}
.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.faq-answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================
   ROSE POWERED SECTION
   ======================== */
.section--rose-powered {
  background: #BA535F;
  color: #fff;
  position: relative;
  overflow: visible;
}
.rose-powered-bg {
  position: absolute;
  top: -50px;
  right: max(48px, calc((100vw - 1140px) / 2 + 48px));
  width: 360px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.section--rose-powered .wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .rose-powered-bg {
    display: none;
  }
}
.section--rose-powered h2.section-h2 {
  color: #fff;
}
.section--rose-powered p {
  color: rgba(255, 255, 255, 0.9);
}
.section--rose-powered .bullet-list-2col {
  box-shadow: var(--sh-lg);
  border: none;
}
.section--rose-powered .bullet-list-2col li {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: none !important;
  padding: 20px 48px;
}
@media (min-width: 1025px) {
  .section--rose-powered .bullet-list-2col li:nth-child(-n+2) {
    padding-top: 40px;
  }
  .section--rose-powered .bullet-list-2col li:nth-last-child(-n+2) {
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) and (min-width: 641px) {
  .section--rose-powered .bullet-list-2col li:nth-child(-n+2) {
    padding-top: 40px;
  }
  .section--rose-powered .bullet-list-2col li:nth-last-child(-n+2) {
    padding-bottom: 40px;
  }
}
@media (max-width: 640px) {
  .section--rose-powered .bullet-list-2col li:first-child {
    padding-top: 40px;
  }
  .section--rose-powered .bullet-list-2col li:last-child {
    padding-bottom: 40px;
  }
}

/* ========================
   CLOSING CTA
   ======================= */
.closing {
  background: linear-gradient(140deg, var(--navy) 0%, #160a20 100%);
  padding: 0; position: relative; overflow: hidden;
}
.closing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(161, 30, 92, 0.28) 0%, transparent 70%);
  pointer-events: none;
}
.closing::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.closing__inner {
  max-width: 1140px; margin: 0 auto;
  padding: 80px 48px 96px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .closing__inner { padding: 56px 24px 72px; flex-direction: column; align-items: flex-start; }
}
.closing__text h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700; color: #fff;
  margin: 0 0 14px; letter-spacing: -.025em; line-height: 1.2;
}
.closing__text p {
  font-size: 15px; color: rgba(255,255,255,.52); line-height: 1.65; margin: 0;
}
.closing__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.closing .btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 4px 20px rgba(161, 30, 92, .4);
  font-size: 15px; padding: 15px 32px;
}