/* weROI Work With Us tile wizard (portfolio zhnotepad pattern) */

.work-with-us-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  background: #ffffff;
}

.work-with-us-shell .nav-header {
  flex-shrink: 0;
}

.lead-wizard {
  position: relative;
  box-sizing: border-box;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 2rem)
    clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
  background: #ffffff;
  color: #163a14;
}

.lead-wizard__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.lead-wizard__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  width: min(1380px, 100%);
  max-width: 1380px;
  margin: 0 auto;
}

.lead-wizard__intro {
  padding-top: 0.5rem;
}

.lead-wizard__eyebrow {
  margin: 0 0 14px;
  color: #4a6b12;
  font-family: var(--title-font), Unbounded, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lead-wizard__title {
  margin: 0 0 18px;
  color: #163a14;
  font-family: var(--title-font), Unbounded, sans-serif;
  font-size: clamp(2.05rem, 3.8vw, 3.05rem);
  font-weight: 700;
  line-height: 1.12;
}

.lead-wizard__lead {
  margin: 0 0 30px;
  max-width: 32rem;
  color: rgba(22, 58, 20, 0.78);
  font-size: clamp(1.08rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

.lead-wizard__aside {
  margin: 22px 0 0;
  color: rgba(22, 58, 20, 0.62);
  font-size: 0.98rem;
}

.lead-wizard__aside a {
  color: #163a14;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #e3ff04;
  text-underline-offset: 3px;
}

.lead-wizard__intro .btn {
  background: #e3ff04;
  color: #0a0c00;
  border: none;
  padding: 0.95rem 1.55rem;
  font-size: 0.95rem;
}

.lead-wizard__intro .btn:hover {
  background: #f0ff5a;
  color: #0a0c00;
}

.lead-wizard__wrap {
  width: 100%;
}

.weroi-wizard__card {
  position: relative;
  border-radius: 32px;
  background: #eef2e8;
  box-shadow: 0 28px 70px rgba(22, 58, 20, 0.12);
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(22, 58, 20, 0.12);
  color: #163a14;
}

.weroi-wizard__head {
  padding: 2rem 2rem 0.65rem;
  text-align: center;
}

.weroi-wizard__eyebrow {
  margin: 0 0 0.45rem;
  color: #4a6b12;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.weroi-wizard__step {
  margin: 0;
  color: rgba(22, 58, 20, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.weroi-wizard__progress {
  width: min(16rem, 70%);
  height: 0.35rem;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: rgba(22, 58, 20, 0.12);
  overflow: hidden;
}

.weroi-wizard__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c8e800, #e3ff04);
  box-shadow: 0 0 12px rgba(227, 255, 4, 0.45);
  transition: width 0.35s ease;
}

.weroi-wizard__pricing-ctx {
  display: block;
  width: fit-content;
  max-width: calc(100% - 2.5rem);
  margin: 0.85rem auto 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(74, 107, 18, 0.1);
  color: #163a14;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
}

.weroi-wizard__stage {
  position: relative;
  padding: 0.75rem 1.85rem 1.35rem;
  min-height: 420px;
}

.weroi-wizard__panel {
  animation: weroiWizardIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes weroiWizardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .weroi-wizard__panel {
    animation: none;
  }
}

.weroi-wizard__question {
  margin: 0 0 0.55rem;
  color: #163a14;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  max-width: 24em;
  margin-left: auto;
  margin-right: auto;
}

.weroi-wizard__hint {
  margin: 0 0 1.55rem;
  color: rgba(22, 58, 20, 0.62);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.weroi-wizard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.weroi-wizard__grid--paths {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.weroi-wizard__grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.weroi-wizard__grid--duo .weroi-wizard__tile {
  min-height: 180px;
  padding: 2rem 1.35rem;
  gap: 0.7rem;
  border-radius: 18px;
}

.weroi-wizard__grid--duo .weroi-wizard__tile-label {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.weroi-wizard__grid--duo .weroi-wizard__tile-desc {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 13rem;
}

.weroi-wizard__tile {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 132px;
  padding: 1.2rem 0.95rem;
  border: 1px solid rgba(22, 58, 20, 0.14);
  border-radius: 18px;
  background: #ffffff;
  color: #163a14;
  text-align: center;
  font: inherit;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.weroi-wizard__tile:hover {
  border-color: rgba(22, 58, 20, 0.35);
  background: #f7faf2;
  transform: translateY(-2px);
}

.weroi-wizard__tile.is-selected {
  border-color: #163a14;
  background: rgba(227, 255, 4, 0.28);
  box-shadow: 0 0 0 1px rgba(227, 255, 4, 0.55);
}

.weroi-wizard__tile.is-selected .weroi-wizard__tile-label,
.weroi-wizard__tile.is-selected .weroi-wizard__tile-icon {
  color: #163a14;
}

.weroi-wizard__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid #163a14;
  border-radius: 3px;
  background: #ffffff;
  color: #e3ff04;
  box-shadow: none;
  outline: none;
}

.weroi-wizard__check.is-on {
  background: #163a14;
  border-color: #163a14;
}

.weroi-wizard__check svg {
  width: 11px;
  height: 11px;
  display: block;
}

.weroi-wizard__tile--check {
  justify-content: space-between;
}

.weroi-wizard__tile--check .weroi-wizard__tile-label {
  margin-top: auto;
}

/* Monthly care: tick corner + keep gauge icon */
.weroi-wizard__tile--care {
  position: relative;
}

.weroi-wizard__tile--care .weroi-wizard__check {
  position: absolute;
  top: 14px;
  right: 14px;
}

.weroi-wizard__tile-icon {
  display: flex;
  width: 52px;
  height: 52px;
  color: #163a14;
}

.weroi-wizard__tile-icon svg {
  width: 48px;
  height: 48px;
}

.weroi-wizard__tile-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.weroi-wizard__tile-desc {
  display: block;
  color: rgba(22, 58, 20, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.weroi-wizard__grid--paths .weroi-wizard__tile {
  min-height: 172px;
  align-items: flex-start;
  text-align: left;
  padding: 1.35rem 1.2rem;
}

.weroi-wizard__grid--niches {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.weroi-wizard__grid--niches .weroi-wizard__tile {
  min-height: 188px;
  align-items: flex-start;
  text-align: left;
  padding: 1.4rem 1.2rem;
  gap: 0.65rem;
}

.weroi-wizard__grid--niches .weroi-wizard__tile-label {
  font-size: 16px;
}

.weroi-wizard__grid--niches .weroi-wizard__tile-desc {
  font-size: 13px;
}

.weroi-wizard__grid--duo .weroi-wizard__tile-icon {
  width: 52px;
  height: 52px;
}

.weroi-wizard__grid--duo .weroi-wizard__tile-icon svg {
  width: 48px;
  height: 48px;
}

.weroi-wizard__ref {
  margin: 0 0 1.1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(227, 255, 4, 0.35);
  border-radius: 14px;
  background: rgba(227, 255, 4, 0.08);
  text-align: left;
}

.weroi-wizard__ref-kicker {
  margin: 0 0 0.2rem;
  color: #4a6b12;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.weroi-wizard__ref strong {
  display: block;
  color: #163a14;
  font-size: 15px;
}

.weroi-wizard__ref a {
  display: inline-block;
  margin-top: 0.2rem;
  color: rgba(22, 58, 20, 0.75);
  font-size: 13px;
  word-break: break-all;
}

.weroi-wizard__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 1.2rem;
}

.weroi-wizard__pill {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 58, 20, 0.08);
  color: rgba(22, 58, 20, 0.85);
  font-size: 12px;
  font-weight: 600;
}

.weroi-wizard__form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.weroi-wizard__field {
  display: grid;
  gap: 6px;
}

.weroi-wizard__field span {
  color: rgba(22, 58, 20, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.weroi-wizard__field input,
.weroi-wizard__field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(22, 58, 20, 0.16);
  border-radius: 12px;
  background: #ffffff;
  color: #163a14;
  font-size: 15px;
  font-family: inherit;
}

.weroi-wizard__field textarea {
  min-height: 100px;
  resize: vertical;
}

.weroi-wizard__field--locked input {
  opacity: 0.72;
  cursor: not-allowed;
  background: rgba(22, 58, 20, 0.06);
  color: rgba(22, 58, 20, 0.55);
}

.weroi-wizard__send-via {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 1rem;
}

.weroi-wizard__send-btn {
  appearance: none;
  min-height: 48px;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(22, 58, 20, 0.18);
  border-radius: 12px;
  background: #fff;
  color: #163a14;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.weroi-wizard__send-btn:hover {
  border-color: #163a14;
}

.weroi-wizard__send-btn.is-on {
  border-color: #163a14;
  background: rgba(227, 255, 4, 0.35);
  box-shadow: 0 0 0 1px rgba(227, 255, 4, 0.5);
}

.weroi-wizard__field input::placeholder,
.weroi-wizard__field textarea::placeholder {
  color: #7a8268;
}

.weroi-wizard__field input:focus,
.weroi-wizard__field textarea:focus {
  outline: none;
  border-color: rgba(227, 255, 4, 0.55);
  box-shadow: 0 0 0 2px rgba(227, 255, 4, 0.15);
}

.weroi-wizard__error {
  min-height: 1.25rem;
  margin: 0.85rem 0 0;
  color: #ff8f8f;
  font-size: 13px;
  text-align: center;
  opacity: 0;
}

.weroi-wizard__error.is-show {
  opacity: 1;
}

.weroi-wizard__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1.5rem 1.5rem;
}

.weroi-wizard__back,
.weroi-wizard__next {
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.weroi-wizard__back {
  border: 1px solid rgba(22, 58, 20, 0.22);
  background: #ffffff;
  color: #163a14;
}

.weroi-wizard__back:hover {
  border-color: rgba(22, 58, 20, 0.45);
}

.weroi-wizard__next {
  margin-left: auto;
  border: none;
  background: #e3ff04;
  color: #0a0c00;
}

.weroi-wizard__next:hover {
  background: #f0ff5a;
}

.weroi-wizard__back[hidden],
.weroi-wizard__next[hidden] {
  display: none;
}

.weroi-wizard__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(238, 242, 232, 0.92);
  color: #163a14;
  font-weight: 600;
}

.weroi-wizard__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(227, 255, 4, 0.25);
  border-top-color: #e3ff04;
  border-radius: 50%;
  animation: weroiSpin 0.7s linear infinite;
}

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

.weroi-wizard__success {
  text-align: center;
  padding: 0.5rem 0.5rem 1rem;
}

.weroi-wizard__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(227, 255, 4, 0.35);
  color: #163a14;
  font-size: 1.5rem;
  font-weight: 700;
}

.weroi-wizard__success h2 {
  margin: 0 0 0.6rem;
  color: #163a14;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.weroi-wizard__success > p {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  color: rgba(22, 58, 20, 0.7);
}

.weroi-wizard__success-card {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(22, 58, 20, 0.12);
  text-align: left;
}

.weroi-wizard__success-kicker {
  margin: 0 0 0.5rem;
  color: #4a6b12;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.weroi-wizard__success-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(22, 58, 20, 0.8);
  font-size: 14px;
  line-height: 1.55;
}

.weroi-wizard__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

.weroi-wizard__linkish {
  display: block;
  margin: 0 auto;
  border: none;
  background: none;
  color: #163a14;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #e3ff04;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .work-with-us-shell {
    min-height: auto;
  }

  .lead-wizard {
    place-items: start center;
    padding: 1.5rem 1rem 2.5rem;
  }

  .lead-wizard__layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .lead-wizard__intro {
    text-align: center;
  }

  .lead-wizard__lead {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .lead-wizard {
    padding: 1.25rem 0.85rem 2.5rem;
  }

  .weroi-wizard__grid,
  .weroi-wizard__grid--paths,
  .weroi-wizard__grid--duo,
  .weroi-wizard__grid--niches {
    grid-template-columns: 1fr 1fr;
  }

  .weroi-wizard__grid--duo .weroi-wizard__tile {
    min-height: 148px;
    padding: 1.4rem 1rem;
  }

  .weroi-wizard__grid--niches .weroi-wizard__tile {
    min-height: 148px;
  }

  .weroi-wizard__stage {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 420px) {
  .weroi-wizard__grid--paths {
    grid-template-columns: 1fr;
  }
}

/* Exact launch date picker (replaces Exploring) */
.weroi-wizard-date {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.weroi-wizard-date__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 16, 12, 0.55);
  cursor: pointer;
}

.weroi-wizard-date__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 18px;
  background: #ffffff;
  color: #163a14;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.weroi-wizard-date__eyebrow {
  margin: 0 0 6px;
  color: #4a6b12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.weroi-wizard-date__title {
  margin: 0 0 8px;
  font-family: var(--title-font), Unbounded, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.weroi-wizard-date__hint {
  margin: 0 0 1.1rem;
  color: rgba(22, 58, 20, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.weroi-wizard-date__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.weroi-wizard-date__field input[type="date"] {
  appearance: none;
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(22, 58, 20, 0.22);
  border-radius: 12px;
  background: #f7f9f5;
  color: #163a14;
  font-size: 1rem;
  font-weight: 600;
}

.weroi-wizard-date__field input[type="date"]:focus {
  outline: none;
  border-color: #163a14;
  box-shadow: 0 0 0 1px rgba(227, 255, 4, 0.55);
}

.weroi-wizard-date__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.weroi-wizard-date__cancel,
.weroi-wizard-date__confirm {
  appearance: none;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.weroi-wizard-date__cancel {
  border: 1px solid rgba(22, 58, 20, 0.25);
  background: #fff;
  color: #163a14;
}

.weroi-wizard-date__confirm {
  border: 0;
  background: #e3ff04;
  color: #0a0c00;
}

.weroi-wizard-date__confirm:hover {
  filter: brightness(1.04);
}

/* ---- Care / price modal (ported for pitch-site work-with-us) ---- */
.price-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.price-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 20, 9, 0.55);
  cursor: pointer;
}
.price-modal__panel {
  position: relative;
  z-index: 1;
  width: min(34rem, 100%);
  max-height: min(88vh, 40rem);
  overflow: auto;
  border-radius: 1.25rem;
  background: #f7f8f4;
  color: #163a14;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  padding: 1.35rem 1.35rem 1.5rem;
}
.price-modal__panel--care { width: min(36rem, 100%); }
.price-modal__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.price-modal__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a6b12;
}
.price-modal__step {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(22, 58, 20, 0.55);
}
.price-modal__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
}
.price-modal__hint {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(22, 58, 20, 0.72);
}
.price-modal__care-list {
  display: grid;
  gap: 0.75rem;
}
.price-modal__care-tile {
  border: 1px solid rgba(22, 58, 20, 0.14);
  border-radius: 1rem;
  background: #fff;
  padding: 0.95rem 1rem;
  text-align: left;
}
.price-modal__care-tile.is-open,
.price-modal__care-tile:hover {
  border-color: rgba(227, 255, 4, 0.85);
  box-shadow: 0 0 0 2px rgba(227, 255, 4, 0.35);
}
.price-modal__care-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}
.price-modal__care-label {
  font-weight: 700;
  font-size: 1.05rem;
}
.price-modal__care-price {
  font-weight: 700;
  color: #4a6b12;
}
.price-modal__care-desc {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: rgba(22, 58, 20, 0.7);
}
.price-modal__care-sell {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(22, 58, 20, 0.78);
}
.price-modal__care-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.price-modal__care-details,
.price-modal__care-choose,
.price-modal__why-toggle,
.price-modal__back {
  border: 1px solid rgba(22, 58, 20, 0.18);
  background: #fff;
  color: #163a14;
  border-radius: 0.55rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.price-modal__care-choose {
  background: #e3ff04;
  border-color: transparent;
  color: #0a0c00;
}
.price-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.price-modal__tile {
  border: 1px solid rgba(22, 58, 20, 0.14);
  border-radius: 0.9rem;
  background: #fff;
  padding: 0.85rem;
  text-align: left;
  cursor: pointer;
  color: #163a14;
}
.price-modal__tile:hover {
  border-color: rgba(227, 255, 4, 0.85);
  box-shadow: 0 0 0 2px rgba(227, 255, 4, 0.3);
}
.price-modal__tile-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}
.price-modal__why {
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(22, 58, 20, 0.05);
  font-size: 0.88rem;
  line-height: 1.45;
}
.price-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #163a14;
}

/* Calendly lightbox */
.weroi-calendly {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.weroi-calendly[hidden] { display: none !important; }
.weroi-calendly__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 20, 9, 0.6);
  cursor: pointer;
}
.weroi-calendly__panel {
  position: relative;
  z-index: 1;
  width: min(64rem, 100%);
  height: min(80vh, 44rem);
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.weroi-calendly__panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.weroi-calendly__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  border: 0;
  background: #e3ff04;
  color: #0a0c00;
  font-weight: 700;
  border-radius: 999px;
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
}

/* Pitch-site shell: dark Solarity page + rays show through */
.work-with-us-shell {
  background: transparent;
  min-height: 100vh;
  color-scheme: dark;
}
.work-with-us-shell > nav {
  background: transparent !important;
  color: #f7f8f4 !important;
  border-bottom: none;
}
.work-with-us-shell > nav a.logo,
.work-with-us-shell > nav a.logo .heavy {
  color: #f7f8f4 !important;
}
.work-with-us-shell > nav a.logo .heavy {
  color: #e3ff04 !important;
}
.work-with-us-shell > nav .nav-link {
  color: #f7f8f4 !important;
}
.work-with-us-shell .lead-wizard {
  padding-top: clamp(5.5rem, 12vh, 8rem);
  background: transparent;
  color: #f7f8f4;
}

/* --- Price / care modal (from frontend-next custom.scss) --- */
.price-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.price-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 18, 12, 0.62);
  cursor: pointer;
}

.price-modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 20px;
  background: #121a14;
  color: #f7faf4;
  border: 1px solid rgba(227, 255, 4, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.price-modal__panel--care {
  width: min(520px, 100%);
}

.price-modal__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.price-modal__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moc-lime, #e3ff04);
}

.price-modal__step {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.price-modal__title {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
}

.price-modal__hint {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

.price-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.price-modal__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 100%;
  text-align: left;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.price-modal__tile:hover {
  border-color: rgba(227, 255, 4, 0.55);
  background: rgba(227, 255, 4, 0.08);
  transform: translateY(-2px);
}

.price-modal__tile-icon {
  color: var(--moc-lime, #e3ff04);
}

.price-modal__tile-label {
  font-size: 1.05rem;
  font-weight: 800;
}

.price-modal__tile-desc {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.price-modal__care-list {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.price-modal__care-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.price-modal__care-tile.is-open,
.price-modal__care-tile:hover {
  border-color: rgba(227, 255, 4, 0.55);
  background: rgba(227, 255, 4, 0.08);
}

.price-modal__care-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-modal__care-label {
  font-weight: 800;
  font-size: 1.05rem;
}

.price-modal__care-price {
  font-weight: 800;
  color: var(--moc-lime, #e3ff04);
}

.price-modal__care-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.price-modal__care-sell {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.45;
}

.price-modal__care-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 4px;
}

.price-modal__care-details,
.price-modal__care-choose {
  appearance: none;
  border-radius: 999px;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.price-modal__care-details {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.price-modal__care-details:hover {
  border-color: var(--moc-lime, #e3ff04);
  color: var(--moc-lime, #e3ff04);
}

.price-modal__care-choose {
  border: 0;
  background: var(--moc-lime, #e3ff04);
  color: #0c1210;
}

.price-modal__care-choose:hover {
  filter: brightness(1.05);
}

.price-modal__focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.price-modal__focus-tile {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(22, 58, 20, 0.14);
  border-radius: 14px;
  background: #fff;
  color: #163a14;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.price-modal__focus-tile:hover {
  border-color: #163a14;
  background: rgba(227, 255, 4, 0.22);
  box-shadow: 0 0 0 1px rgba(227, 255, 4, 0.45);
}

.price-modal__focus-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #163a14;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
}

.price-modal__focus-label {
  margin-top: auto;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.price-modal__skip {
  appearance: none;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-size: 0.92rem;
  padding: 6px 0;
}

@media (max-width: 640px) {
  .price-modal__grid {
    grid-template-columns: 1fr;
  }

  .price-modal__focus-list {
    grid-template-columns: 1fr;
  }
}

/* --- Calendly lightbox (minimal from weroi-modal) --- */
.weroi-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.weroi-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8, 10, 0, 0.55);
  cursor: pointer;
}

.weroi-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #f7f8f2;
  color: #0a0c00;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.weroi-modal__panel--calendly {
  width: min(960px, 100%);
  height: min(86vh, 820px);
  padding: 0;
}

.weroi-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 0;
}

.weroi-modal__title {
  margin: 0;
  font-family: var(--title-font), Unbounded, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: #0a0c00;
}

.weroi-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(10, 12, 0, 0.06);
  color: #0a0c00;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.weroi-modal__close:hover {
  background: rgba(10, 12, 0, 0.1);
}

.weroi-modal__calendly {
  flex: 1;
  min-height: 0;
  padding: 8px 12px 12px;
}

.weroi-modal__calendly iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

/* Get Quote: intro sits above the brief, panels stay glass so rays show through */
.work-with-us-shell {
  position: relative;
  z-index: 1;
  background: transparent !important;
  color: #f7f8f4;
}

.work-with-us-shell .lead-wizard {
  background: transparent !important;
  color: #f7f8f4;
  place-items: start center;
  padding-top: clamp(6.5rem, 14vh, 9rem);
}

.work-with-us-shell .lead-wizard__layout {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  width: min(820px, 100%);
  gap: 1.35rem;
}

.work-with-us-shell .lead-wizard__intro,
.work-with-us-shell .lead-wizard__wrap {
  width: 100%;
  text-align: center;
}

.work-with-us-shell .lead-wizard__eyebrow,
.work-with-us-shell .weroi-wizard__eyebrow,
.work-with-us-shell .weroi-wizard__ref-kicker {
  color: #e3ff04;
}

.work-with-us-shell .lead-wizard__title,
.work-with-us-shell .weroi-wizard__question,
.work-with-us-shell .weroi-wizard__success h2,
.work-with-us-shell .weroi-wizard__ref strong {
  color: #f7f8f4;
}

.work-with-us-shell .lead-wizard__lead,
.work-with-us-shell .lead-wizard__aside,
.work-with-us-shell .weroi-wizard__hint,
.work-with-us-shell .weroi-wizard__step,
.work-with-us-shell .weroi-wizard__tile-desc,
.work-with-us-shell .weroi-wizard__success > p,
.work-with-us-shell .weroi-wizard__linkish {
  color: rgba(247, 248, 244, 0.78);
}

.work-with-us-shell .lead-wizard__lead,
.work-with-us-shell .lead-wizard__aside {
  margin-left: auto;
  margin-right: auto;
}

.work-with-us-shell .lead-wizard__aside a,
.work-with-us-shell .weroi-wizard__ref a {
  color: #e3ff04;
}

.work-with-us-shell .weroi-wizard__card,
.work-with-us-shell .weroi-wizard__success-card {
  background: rgba(8, 18, 10, 0.38);
  border: 1px solid rgba(247, 248, 244, 0.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f7f8f4;
}

.work-with-us-shell .weroi-wizard__tile {
  background: rgba(8, 18, 10, 0.28);
  border-color: rgba(247, 248, 244, 0.16);
  color: #f7f8f4;
}

.work-with-us-shell .weroi-wizard__tile:hover {
  background: rgba(227, 255, 4, 0.08);
  border-color: rgba(227, 255, 4, 0.45);
}

.work-with-us-shell .weroi-wizard__tile.is-selected {
  background: rgba(227, 255, 4, 0.14);
  border-color: #e3ff04;
  box-shadow: none;
}

.work-with-us-shell .weroi-wizard__tile.is-selected .weroi-wizard__tile-label,
.work-with-us-shell .weroi-wizard__tile.is-selected .weroi-wizard__tile-icon,
.work-with-us-shell .weroi-wizard__tile-icon,
.work-with-us-shell .weroi-wizard__tile-label {
  color: #f7f8f4;
}

.work-with-us-shell .weroi-wizard__field span {
  color: rgba(247, 248, 244, 0.72);
}

.work-with-us-shell .weroi-wizard__field input,
.work-with-us-shell .weroi-wizard__field textarea {
  background: rgba(8, 18, 10, 0.45);
  border-color: rgba(247, 248, 244, 0.2);
  color: #f7f8f4;
}

.work-with-us-shell .weroi-wizard__field input::placeholder,
.work-with-us-shell .weroi-wizard__field textarea::placeholder {
  color: rgba(247, 248, 244, 0.45);
}

.work-with-us-shell .weroi-wizard__pill,
.work-with-us-shell .weroi-wizard__pricing-ctx {
  background: rgba(247, 248, 244, 0.08);
  color: rgba(247, 248, 244, 0.86);
}

.work-with-us-shell .weroi-wizard__back {
  background: transparent;
  color: #f7f8f4;
  border-color: rgba(247, 248, 244, 0.28);
}

/* Rays stay fixed behind the quote page, same beam as the homepage */
.weroi-rays-host {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none;
}

.work-with-us-shell .quote-hero {
  padding: 0 0.5rem 0.25rem;
}

.work-with-us-shell .quote-hero .hero-text {
  max-width: 100% !important;
  font-size: clamp(2.7rem, 5.6vw, 5.1rem) !important;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .work-with-us-shell .quote-hero .hero-text {
    white-space: normal;
  }
}

.work-with-us-shell .quote-hero__lead {
  margin: 1.15rem auto 0;
  max-width: 34rem;
  color: rgba(247, 248, 244, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.55;
}

.work-with-us-shell .quote-hero__cal {
  border: 0;
  background: none;
  padding: 0;
  color: #e3ff04;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.work-with-us-shell .weroi-wizard__progress {
  background: rgba(247, 248, 244, 0.12);
}

.work-with-us-shell .weroi-wizard__progress-fill {
  background: linear-gradient(90deg, #b8d400, #e3ff04);
  box-shadow: 0 0 14px rgba(227, 255, 4, 0.35);
}

/* PC-only: center the Project Brief stack (leave mobile alone) */
@media (min-width: 900px) {
  .work-with-us-shell .lead-wizard {
    place-items: center;
  }

  .work-with-us-shell .lead-wizard__layout {
    width: min(880px, 100%);
    justify-items: center;
  }

  .work-with-us-shell .lead-wizard__intro,
  .work-with-us-shell .lead-wizard__wrap,
  .work-with-us-shell .weroi-wizard__card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .work-with-us-shell .weroi-wizard__pricing-ctx {
    margin-left: auto;
    margin-right: auto;
  }

  .work-with-us-shell .weroi-wizard__hint {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .work-with-us-shell .weroi-wizard__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .work-with-us-shell .weroi-wizard__panel {
    width: 100%;
    text-align: center;
  }

  .work-with-us-shell .weroi-wizard__grid,
  .work-with-us-shell .weroi-wizard__grid--paths,
  .work-with-us-shell .weroi-wizard__grid--niches,
  .work-with-us-shell .weroi-wizard__grid--duo {
    width: 100%;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

  .work-with-us-shell .weroi-wizard__question {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .work-with-us-shell .weroi-wizard__form {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}
