/* Typsnitt */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap");

/* layout.css */
body {
  padding: 0;
  margin: 0;

  background: #fafafa;

  transition: ease-in-out 0.3ms;
}

/* Gradient-wrapper som bakgrund för hela sektionen (CTA + footern) */
.section-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-self: center;
}

.gradient-wrapper {
  position: relative;
  z-index: 3;
  /* Se till att wrappern är “basen” */
}

.gradient-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 70%;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(45deg, #2d2868 0%, #5a4fcf 100%);
}

.wrapper {
  max-width: 90rem;
  align-self: center;
}

/* Container-exempel */
.container {
  display: flex;
  padding: 0rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

/* Exempel: rubrik + text-stycke ihop */
.heading-and-supporting-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  justify-content: center;
}

/* Exempel: logga + text-stycke */
.logo-and-supporting-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

/* Bild-wrapper i t.ex. team-section */
.img-container {
  display: flex;
  padding: 4rem 0.5rem 0rem 0rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
}

/* Team-sektion */
.team-section {
  display: flex;
  padding: 6rem 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  background: var(--2-grey-dark-grey-grey-50, #f5f5f5);
}

.layout-space-between {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
}

.layout-space-around {
  display: flex;
  justify-content: space-around;
  align-self: stretch;
}

.row-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Team card */
.team-member-wrap {
  display: flex;
  width: 17.5rem;
  height: 20rem;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--2-grey-dark-grey-grey-100, #eaeaea);
  background: var(--1-base-black-white-white, #fafafa);
  justify-content: space-between;
}

.team-member {
  display: flex;
  align-self: flex-end;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}

.team-member-info {
  display: flex;
  flex-direction: column;
}

.team-member-icon {
  width: 3rem;
  height: 3rem;
}

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* left, center, right */
  align-items: center;
  width: 100%;
}

.pagination .pager-prev {
  justify-self: start;
}

.pagination .pager-pages {
  justify-self: center;
  display: flex;
  gap: 0.25rem;
}

.pagination .pager-next {
  justify-self: end;
}

.pagination .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-dot-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pagination-dot-active-gold,
.pagination-dot-inactive-gold,
.pagination-dot-active-purple,
.pagination-dot-inactive-purple,
.pagination-dot-active-white,
.pagination-dot-inactive-white {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.375rem;
}

.pagination-dot-active-gold {
  background: var(--3-primary-yellow-600, #f8bc41);
}

.pagination-dot-inactive-gold {
  background: var(--3-primary-yellow-100, #f2e6c5);
  mix-blend-mode: multiply;
}

.pagination-dot-active-purple {
  background: var(--4-secondary-purple-blue-500, #756cd7);
}

.pagination-dot-inactive-purple {
  background: var(--4-secondary-purple-blue-200, #c8c4ef);
}

.pagination-dot-active-white {
  background: var(--1-base-black-white-white, #fafafa);
}

.pagination-dot-inactive-white {
  background: var(--4-secondary-purple-blue-400, #918adf);
}

.avatars {
  height: 2.5rem;
}

.avatar-2xl {
  width: 5rem;
}

/* Metrics */
.metric-bg {
  background: var(--1-base-black-white-white, #fafafa);
  display: flex;
  flex-direction: column;
  align-self: center;
}

.metrics-section {
  display: flex;
  padding: 6rem 0rem;
  gap: 4rem;
  align-self: stretch;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex: 1 0 0;
}

.number-metric-item {
  align-self: stretch;
  color: var(--2-grey-dark-grey-grey-900, #1b242f);
  text-align: center;
  /* Display xl/Semibold */
  font-family: "Source Sans Pro";
  font-size: 3.75rem;
  /* 60px */
  font-weight: 600;
  line-height: 4.5rem;
  /* 120% */
  letter-spacing: -0.075rem;
}

.text-metric-item {
  align-self: stretch;
  color: var(--2-grey-dark-grey-grey-600, #696e75);
  text-align: center;
  /* Text lg/Medium */
  font-family: "Source Sans Pro";
  font-size: 1.125rem;
  /* 18px */
  font-weight: 600;
  line-height: 1.75rem;
  /* 155.556% */
}

.divider {
  width: 0.0625rem;
  flex-shrink: 0;
  align-self: stretch;
  fill: var(--2-grey-dark-grey-grey-200, #d0d1d3);
}

.divider-top {
  border-top: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
}
.divider-bottom {
  border-bottom: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
}

/* Testimonials */
.testimonial-section {
  display: flex;
  padding-top: 6rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  align-self: stretch;
}

.testimonial {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  border-radius: 1.5rem;
}

.testimonial-bg-purple {
  background: var(--4-secondary-purple-blue-600, #5a4fcf);
}

.testimonial-bg-white {
  background: white;
}

.testimonial-content {
  display: flex;
  padding: 4rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  flex: 1 0 0;
}

.testimonial-quote {
  align-self: stretch;
  /* Display md/Medium */
  font-family: "Source Sans Pro";
  font-size: 2.25rem;
  /* 36px */
  font-weight: 600;
  line-height: 2.75rem;
  /* 122.222% */
  letter-spacing: -0.045rem;
}

.testimonial-quote-black {
  color: var(--4-secondary-purple-blue-50, #1b242f);
}

.testimonial-quote-white {
  color: var(--4-secondary-purple-blue-50, #f2f1fb);
}

.testimonial-image {
  border-radius: 0 1.5rem 1.5rem 0;
  /* endast högra hörn */
  align-self: stretch;
  overflow: hidden;
  /* Make sure background is clipped properly */
  -webkit-background-clip: border-box;
  background-clip: border-box;
  width: 50%;
  object-fit: cover;
}

/**NYTT **/

/** TIMELINE **/
.timeline {
  align-self: stretch;
}

.timeline-steps {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.timeline-item {
  height: 28%;
}

.timeline-item-end {
  height: 16%;
}

.timeline-container {
  display: flex;
  height: 100%;
  gap: 1rem;
}

.icon-line-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 1.125rem;
  color: black;
  transition: background-color 0.4s ease-in;
  background-color: #ccc;
}

.vertical-line {
  width: 4px;
  height: 100%;
  /*height: 9.25rem; /* adjust height as needed */
  position: absolute;
  margin-top: 0rem;
}

.vertical-line-end {
  width: 4px;
  height: 5rem;
  /* adjust height as needed */
  position: absolute;
  background-color: white;
  margin-top: 0rem;
}

.line-filled,
.line-unfilled {
  width: 100%;
  position: absolute;
  left: 0;
}

.line-full {
  height: 100%;
  /* make this dynamic with JS or CSS class */
  top: 0;
  border-radius: 0.125rem;
  transition: background-color 0.4s ease-in;
}

.line-tophalf {
  height: 60%;
  /* make this dynamic with JS or CSS class */
  top: 0;
  border-radius: 0.125rem;
}

.line-bothalf {
  height: 50%;
  /* inverse of above */
  bottom: 0;
  border-radius: 0.125rem;
}

.tl-primary {
  background-color: var(--highlight-color, #fcbf49);
}

.tl-gray {
  background-color: #ccc;
}

.tl-secondary {
  background-color: #5a4fcf;
}

.timeline-text {
  align-self: flex-start;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.timeline-text-end {
  align-self: flex-end;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

/** FEATURES **/
.features {
  display: flex;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 2rem;
  padding-right: 2rem;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ft-darkblue {
  background: #1b242f;
}

.ft-purple {
  background: #2d2868;
}

.ft-white {
  background: #fafafa;
}

.features-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
}

.ft-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bg-lgrey {
  background-color: var(--2-grey-dark-grey-grey-100, #eaeaea);
}
.bg-xlgrey {
  background-color: var(--2-grey-dark-grey-grey-50, #f5f5f5) !important;
}

.bg-white {
  background-color: var(--1-base-black-white-white, #FAFAFA) !important;
}

.bg-transparent {
  background-color: rgba(255, 255, 255, 0) !important;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Source Sans Pro";
  color: #222;
}

/* Heading */
.faq-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

/* Accordion Item */
.faq-item {
  border-top: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  padding-left: 0rem;
  padding-right: 0rem;
}

/* Job detail description separator should appear below the text */
.job-description {
  border-top: 0;
  border-bottom: 0;
}

/* Question Row */
.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* Icon */
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Answer Section */
.faq-answer {
  color: var(--2-grey-dark-grey-grey-600, #696e75);
  font-size: 1rem;
  /* 16px */
  font-weight: 400;
  line-height: 1.5rem;
}

/* Contact Section */
.faq-contact {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: #fafafa;
  border-radius: 10px;
  margin-top: 4rem;
  padding: 2rem 1rem;
  gap: 2rem;
}

.faq-contact p {
  margin: 0.5rem 0;
}

.faq-contact img {
  border-style: solid;
  border-width: 2px;
  border-color: #fafafa;
  border-radius: 50%;
  margin: 0 -0.65rem;
}

.faq-image-mid {
  width: 56px;
  height: 56px;
}

.faq-image-side {
  width: 48px;
  height: 48px;
}

/** SOCIAL PROOF SELECTION **/
.social-proof {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: #f5f5f5;
  margin-top: 4rem;
  padding: 2rem 1rem;
  gap: 2rem;

  border-radius: 1rem;
}

.social-proof-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.social-proof-icon {
  height: 3rem;
  justify-content: center;
}

/** PRICING **/
.pricing-section {
  background-color: #f5f5f5;
  margin: 0;
  color: #1e1e1e;
  text-align: center;
  font-family: "Source Sans Pro";
}

.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.billing-toggle button {
  font-family: "Source Sans Pro";
  font-weight: 600;
  padding: 0.625rem 0.875rem;
  border: none;
  background-color: #f5f5f5;
  color: #82878c;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease;
}

.billing-toggle button:hover {
  color: #4e555d;
  transition: 0.2s ease-in;
}

.billing-toggle .active {
  background-color: #fafafa;
  color: #4e555d;
  box-shadow: 0px 1px 2px 0px #1018280f;

  box-shadow: 0px 1px 3px 0px #1018281a;
}

.billing-toggle-box {
  border-radius: 5px;
  background-color: #f5f5f5;
  border-style: solid;
  border-color: #eaeaea;
  padding: 0.375rem;
  border-width: 1px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  width: 100%;
}

.pricing-header {
  text-align: justify;
}

.pricing-card {
  background: var(--1-base-black-white-white, #fafafa);
  border-radius: 16px;
  box-shadow: 0 0 0 1px #e0e0e0, 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 32px;
  max-width: 30%;
  min-width: 21.5rem;
  flex: 1;
  transition: transform 0.3s ease;
  opacity: 1;
  transition: opacity 1s ease-in;
}

.pricing-card.fade {
  opacity: 0;
  transition: none;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h2 {
  font-size: 20px;
}

.pricing-card button {
  width: 100%;
}

.pricing-card .price {
  font-size: 3.75rem;
  font-weight: bold;
}

.pricing-card .per-month {
  font-size: 1rem;
  color: #666;
  margin-top: auto;
  padding-bottom: 0.75rem;
  padding-left: 0.5rem;
}

/* Recommended badge */
.pricing-recommended {
  background-color: #5a4fcf;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-block;
}

.pricing-hr {
  border-top: 1px solid #d0d1d3;
  margin-left: -32px;
  margin-right: -32px;
}

/* Features list */
.pricing-features {
  width: 100%;
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  display: flex;

  /* align-items: center; */
}

.pricing-features li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%235A4FCF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-right: 10px;
  color: #7b61ff;

  /* Matches height of svg to vertically align it to text. Change value if you change svg-size */
  height: 24px;
}

/** CONTACTFORM **/
.input-form-container {
  border-radius: 1rem;
  background: var(--2-grey-dark-grey-grey-50, #f5f5f5);
  display: flex;
  padding: 2.5rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  flex: 1 0 0;
  /* min-width: 33rem; */
}

/** LISTING **/
.frame-listing {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-listing-comp {
  width: 8rem;
  height: 8rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-listing-lg {
  width: 10rem;
  height: 10rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-white {
  background-color: #ececee52;
}

.listing {
  display: flex;
  padding: 1rem;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
  border-radius: 0.75rem;
  border: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
  min-width: 33.75rem;
}

.listing-comp {
  display: flex;
  padding: 1rem;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
  border-radius: 0.75rem;
  border: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
  min-width: 42.75rem;
}

.listing-primary:hover {
  border: 1px solid var(--3-primary-yellow-600, #f8bc41);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.listing-secondary:hover {
  border: 1px solid var(--4-secondary-purple-blue-600, #5a4fcf);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.listing-dot-primary {
  color: #f8bc41;
}

.listing-dot-secondary {
  color: #5a4fcf;
}

.listing-status-container {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  /* full pill shape */
  padding: 0.25rem 0.25rem 0.25rem 0.75rem;
  font-size: 14px;
  width: fit-content;
}

.listing-status-container.active {
  background: var(--5-success-green-100, #dceee5);
}

.listing-status-container.paused {
  background: var(--2-grey-dark-grey-grey-100, #eaeaea);
}

.listing-status-container.completed {
  background: var(--4-secondary-purple-blue-100, #e4e2f7);
}

.listing-status-container.neutral {
  background: var(--1-base-black-white-white, #fafafa);
}

.listing-status-container.draft {
  background: var(--2-grey-dark-grey-grey-100, #eaeaea);
}

.listing-status-container.pending {
  background: var(--3-primary-yellow-100, #f2e6c5);
}

.listing-status-badge {
  display: flex;
  align-items: center;

  color: white;
  border-radius: 9999px;
  padding: 2px 10px;
}

.listing-status-badge.active {
  background: var(--5-success-green-600, #269960);
}

.listing-status-badge.paused {
  background: var(--2-grey-dark-grey-grey-600, #696e75);
}

.listing-status-badge.completed {
  background: var(--4-secondary-purple-blue-600, #5a4fcf);
}

.listing-status-badge.draft {
  background: var(--2-grey-dark-grey-grey-600, #696e75);
}

.listing-status-badge.pending {
  background: var(--3-primary-yellow-600, #f8bc41);
}

.listing-status-text.active {
  color: var(--5-success-green-600, #269960);
}

.listing-status-text.paused {
  color: var(--2-grey-dark-grey-grey-600, #696e75);
}

.listing-status-text.completed {
  color: var(--4-secondary-purple-blue-600, #5a4fcf);
}

.listing-status-text.draft {
  color: var(--2-grey-dark-grey-grey-600, #696e75);
}

.listing-status-text.pending {
  color: var(--3-primary-yellow-600, #f8bc41);
}

.listing-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
  border-radius: 50%;
  margin-right: 6px;
}

/** GENERAL LAYOUT **/
.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-auto {
  flex: auto;
}

.flex-grow {
  flex-grow: 1;
}

.align-content-start {
  align-content: start;
}

.profile-card {
  background: var(--1-base-black-white-white, #fafafa);
  border-radius: 16px;
  box-shadow: 0 0 0 1px #e0e0e0, 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 0rem 1.5rem 1.5rem 1.5rem;
  flex: 1;
  transition: transform 0.3s ease;
  opacity: 1;
  transition: opacity 1s ease-in;
  border: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  min-width: 25rem;
}

.columns-container {
  background: var(--1-base-black-white-white, #fafafa);
  border-radius: 0rem;
  box-shadow: none;
  padding: 0.5rem 1rem 0.5rem 1rem;
  flex: 1;
  transition: transform 0.3s ease;
  opacity: 1;
  transition: opacity 1s ease-in;
  border-top: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  border-bottom: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  min-width: 24rem;
}

.no-box-shadow {
  box-shadow: none;
}

.profile-hr {
  border-top: 1px solid #d0d1d3;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

/* Generic horizontal separator */
.separator {
  border: 0;
  border-top: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
}

.profile-img {
  width: 4rem;
  height: 4rem;
}

.ad-banner {
  display: flex;
  width: 300px;
  height: 600px;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 12px;
  color: white;
  background: var(--gradient-gray-70050045-deg,
      linear-gradient(45deg, #2d2868 0%, #5a4fcf 100%));
}

.inner-profile-card {
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  border-radius: 8px;
  border: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  background: var(--2-grey-dark-grey-grey-50, #f5f5f5);
}

.icon-active {
  stroke: #1b242f;
  transition: 0.25s ease-in;
}

.icon-disabled {
  stroke: #b7b9bc;
}

.cv-form {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999999;
  width: 50%;
  max-width: 32rem;
}

.cv-form .form-content {
  background: white;
  max-height: 95vh;
  /* limit to 90% of viewport height */
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  border-radius: 8px;
  z-index: 999999;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* black with 50% opacity */
  z-index: 9;
}

.search-tag {
  font-family: "Source Sans Pro";
  color: var(--2-grey-dark-grey-grey-700, #4e555d);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.125rem 0.625rem 0.125rem 0.5rem;
  background: var(--2-grey-dark-grey-grey-100, #eaeaea);
  mix-blend-mode: multiply;
  gap: 0.25rem;
}

.progress-container {
  height: 1rem;
  background-color: #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
}

.progress-bar-solid {
  height: 100%;
  background-color: #fbbf24;
  /* orange */
  border-radius: 0.5rem;
  transition: width 0.3s;
}

.progress-bar-solid-comp {
  height: 100%;
  background-color: #5a4fcf;
  /* orange */
  border-radius: 0.5rem;
  transition: width 0.3s;
}

.forgot-pass-icon-container {
  padding: 0.5rem;
  border-radius: 50%;
  border: 0.75rem solid var(--3-primary-yellow-25, #fcf9f1);
  background: var(--3-primary-yellow-50, #f9f3e3);
}

.team-tag-container {
  border-radius: 1rem;
}

.team-tag-container.blue {
  border: 1.5px solid var(--Blue-600, #1570ef);
  color: #1570ef;
}

.team-tag-container.green {
  color: #269960;
  border: 1.5px solid var(--5-success-green-600, #269960);
}

.team-tag-container.red {
  border: 1.5px solid var(--Ros-600, #e31b54);
  color: #e31b54;
}

.team-tag-container.yellow {
  border: 1.5px solid var(--3-primary-yellow-600, #f8bc41);
  color: #f8bc41;
}

.team-tag-container.gray {
  color: #696e75;
  border: 1.5px solid var(--2-grey-dark-grey-grey-600, #696e75);
}

.clickable:hover {
  cursor: pointer;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.w-95 {
  width: 95%;
}

.w-90 {
  width: 90%;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.w-40 {
  width: 40%;
}

.w-30 {
  width: 30%;
}

.w-20 {
  width: 20%;
}

.w-15 {
  width: 15%;
}

.w-10 {
  width: 10%;
}

.mw-100 {
  max-width: 100%;
}

.mw-50 {
  max-width: 50%;
}

.m-w-none {
  max-width: none;
}

.m-w-10 {
  max-width: 20rem;
}

.h-100 {
  height: 100%;
}

.h-50 {
  height: 50%;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mt-0-5 {
  margin-top: 0.5rem;
}

.mb-0-5 {
  margin-bottom: 0.5rem;
}

.ml-0-5 {
  margin-left: 0.5rem;
}

.mr-0-5 {
  margin-right: 0.75rem;
}

.mt-0-75 {
  margin-top: 0.75rem;
}

.mb-0-75 {
  margin-bottom: 0.75rem;
}

.ml-0-75 {
  margin-left: 0.75rem;
}

.mr-0-75 {
  margin-right: 0.75rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mt-1-5 {
  margin-top: 1.5rem;
}

.mb-1-5 {
  margin-bottom: 1.5rem;
}

.ml-1-5 {
  margin-left: 1.5rem;
}

.mr-1-5 {
  margin-right: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.g-0-25 {
  gap: 0.25rem;
}

.g-0-5 {
  gap: 0.5rem;
}

.g-0-75 {
  gap: 0.75rem;
}

.g-1 {
  gap: 1rem;
}

.g-1-5 {
  gap: 1.5rem;
}

.g-2 {
  gap: 2rem;
}

.g-3 {
  gap: 3rem;
}

.g-4 {
  gap: 4rem;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pt-0-5 {
  padding-top: 0.5rem;
}

.pb-0-5 {
  padding-bottom: 0.5rem;
}

.pl-0-5 {
  padding-left: 0.5rem;
}

.pr-0-5 {
  padding-right: 0.5rem;
}

.pt-0-75 {
  padding-top: 0.75rem;
}

.pb-0-75 {
  padding-bottom: 0.75rem;
}

.pl-0-75 {
  padding-left: 0.75rem;
}

.pr-0-75 {
  padding-right: 0.75rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pt-1-5 {
  padding-top: 1.5rem;
}

.pb-1-5 {
  padding-bottom: 1.5rem;
}

.pl-1-5 {
  padding-left: 1.5rem;
}

.pr-1-5 {
  padding-right: 1.5rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pt-11 {
  padding-top: 11rem;
}

.jc-center {
  justify-content: center;
}

.ai-center {
  align-items: center;
}

.image-fill {
  width: 6rem;
  height: auto;
  display: block;
}

.image-fill-comp {
  width: 8rem;
  height: auto;
  display: block;
}

.min-h-10 {
  min-height: 10rem;
}

.min-h-5 {
  min-height: 5rem;
}

.min-w-3 {
  min-width: 3rem;
}

.min-w-0 {
  min-width: 0;
}

.min-w-5 {
  min-width: 5rem;
}

.min-w-8 {
  min-width: 8rem;
}

.min-w-10 {
  min-width: 10rem;
}

.min-w-20 {
  min-width: 20rem;
}

.profile-subnav-leftpadding {
  padding-left: 260px;
}

.desktop-hide {
  display: none;
}

.desktop-invisible {
  visibility: hidden;
}

.hide {
  display: none;
}

.no-border {
  border: 0px !important;
}

.h-auto {
  height: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.aspect-r-1-1 {
  aspect-ratio: 1.1;
}

.object-fit-contain {
  object-fit: contain;
}

.object-fit-cover {
  object-fit: cover;
}

.border-radius-0 {
  border-radius: 0rem;
}

.border-radius-1 {
  border-radius: 1rem;
}

.border-radius-1-5 {
  border-radius: 1.5rem;
}

.mobile-navbar-profile-container {
  display: none;
}

@media (min-width: 900px) {
  .mobile-navbar-profile-container {
    display: none !important;
  }
}

@media screen and (max-width: 900px) {
  .columns-container {
    min-width: 0rem;
  }

  /* Show separator only on mobile for job description */
  .job-description {
    border-bottom: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  }

  .mobile-min-w-0 {
    min-width: none !important;
  }

  .mobile-pt-0 {
    padding-top: 0rem !important;
  }

  .mobile-pb-0 {
    padding-bottom: 0rem !important;
  }

  .mobile-pl-0 {
    padding-left: 0rem !important;
  }

  .mobile-pr-0 {
    padding-right: 0rem !important;
  }

  .mobile-mt-0 {
    margin-top: 0rem !important;
  }

  .mobile-mb-0 {
    margin-bottom: 0rem !important;
  }

  .mobile-ml-0 {
    margin-left: 0rem !important;
  }

  .mobile-mr-0 {
    margin-right: 0rem !important;
  }

  .mobile-pt-0-5 {
    padding-top: 0.5rem !important;
  }

  .mobile-pb-0-5 {
    padding-bottom: 0.5rem !important;
  }

  .mobile-pl-0-5 {
    padding-left: 0.5rem !important;
  }

  .mobile-pr-0-5 {
    padding-right: 0.5rem !important;
  }

  .mobile-mt-0-5 {
    margin-top: 0.5rem !important;
  }

  .mobile-mb-0-5 {
    margin-bottom: 0.5rem !important;
  }

  .mobile-ml-0-5 {
    margin-left: 0.5rem !important;
  }

  .mobile-mr-0-5 {
    margin-right: 0.5rem !important;
  }

  .mobile-g-0-5 {
    gap: 0.5rem !important;
  }

  .mobile-g-0-75 {
    gap: 0.75rem !important;
  }

  .mobile-pt-1 {
    padding-top: 1rem !important;
  }

  .mobile-pb-1 {
    padding-bottom: 1rem !important;
  }

  .mobile-pl-1 {
    padding-left: 1rem !important;
  }

  .mobile-pr-1 {
    padding-right: 1rem !important;
  }

  .mobile-mt-1 {
    margin-top: 1rem !important;
  }

  .mobile-mb-1 {
    margin-bottom: 1rem !important;
  }

  .mobile-ml-1 {
    margin-left: 1rem !important;
  }

  .mobile-mr-1 {
    margin-right: 1rem !important;
  }

  .mobile-pt-1-5 {
    padding-top: 1.5rem !important;
  }

  .mobile-pb-1-5 {
    padding-bottom: 1.5rem !important;
  }

  .mobile-pl-1-5 {
    padding-left: 1.5rem !important;
  }

  .mobile-pr-1-5 {
    padding-right: 1.5rem !important;
  }

  .mobile-mt-1-5 {
    margin-top: 1.5rem !important;
  }

  .mobile-mb-1-5 {
    margin-bottom: 1.5rem !important;
  }

  .mobile-ml-1-5 {
    margin-left: 1.5rem !important;
  }

  .mobile-mr-1-5 {
    margin-right: 1.5rem !important;
  }

  .wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0rem;
  }

  .features {
    padding: 2rem;
  }

  .mobile-w-100 {
    width: 100%;
  }

  .mobile-w-75 {
    width: 75%;
  }

  .mobile-w-50 {
    width: 50%;
  }

  .mobile-w-25 {
    width: 25%;
  }

  .mobile-w-20 {
    width: 20%;
  }

  .mobile-w-15 {
    width: 15%;
  }

  .mobile-w-0 {
    width: 0%;
  }

  .mobile-col {
    display: flex;
    flex-direction: column;
  }

  .mobile-col-r {
    display: flex;
    flex-direction: column-reverse;
  }

  .mobile-row {
    display: flex;
    flex-direction: row;
  }

  .mobile-row-r {
    display: flex;
    flex-direction: row-reverse;
  }

  .img-container {
    max-width: 100%;
  }

  .img {
    max-width: 100%;
    padding: 1rem;
  }

  .testimonial {
    padding: 2rem;
  }

  .testimonial-logo {
    width: 30vw;
  }

  .testimonial-content {
    max-width: 90vw;
  }

  .testimonial-image {
    display: none;
  }

  .section-center {
    max-width: 100vw;
    padding: 2rem;
  }

  .metrics-section {
    gap: 0rem;
  }

  .number-metric-item {
    font-size: 2.75rem;
  }

  .pt-11 {
    padding-top: 2rem;
  }

  .team-member {
    margin-left: auto;
    margin-right: auto;
  }

  .social-proof {
    padding: 4rem;
  }

  .social-proof-icon {
    max-width: 300px;
    justify-content: center;
  }

  .social-proof-icons {
    padding: 1rem;
  }

  .team-member-info {
    align-items: center;
  }

  .gradient-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 95%;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(45deg, #2d2868 0%, #5a4fcf 100%);
  }

  .mobile-hide {
    display: none;
  }

  .mobile-hide-i {
    display: none !important;
  }

  .mobile-invisible {
    visibility: hidden;
  }

  .desktop-hide {
    display: flex;
  }

  .desktop-invisible {
    visibility: visible;
  }

  .profile-subnav-leftpadding {
    padding-left: 0;
  }

  .profile-card {
    width: 100%;
    background-color: transparent;
    border-radius: 0;

    /* Draw divider inside padding so it aligns with content */
    border: none;
    /* background-image: linear-gradient(var(--2-grey-dark-grey-grey-200, #d0d1d3), var(--2-grey-dark-grey-grey-200, #d0d1d3));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 1px;
    background-origin: content-box;
    background-clip: content-box;

     */
    box-shadow: 0 0 0 0;
    padding: 0rem 1.5rem 1rem 1.5rem;
    min-width: 0px;
  }

  .listing {
    width: 100%;
    background-color: transparent;
    border-radius: 0;

    border: none;
    border-bottom: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);

    /* background-image: linear-gradient(var(--2-grey-dark-grey-grey-200, #d0d1d3), var(--2-grey-dark-grey-grey-200, #d0d1d3));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 1px;
    background-origin: content-box;
    background-clip: content-box;

    box-shadow: 0 0 0 0; */

    padding: 0rem 1.5rem 1rem 1.5rem;
    min-width: 0px;
  }

  .listing-comp {
    width: 100%;
    background-color: transparent;
    border-radius: 0;

    border: none;
    background-image: linear-gradient(var(--2-grey-dark-grey-grey-200, #d0d1d3), var(--2-grey-dark-grey-grey-200, #d0d1d3));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 1px;
    background-origin: content-box;
    background-clip: content-box;

    box-shadow: 0 0 0 0;

    padding: 0rem 1.5rem 1rem 1.5rem;
    min-width: 0px;
  }

  .listing-primary:hover {
    border: none;
    box-shadow: none;
  }

  .mobile-jc-center {
    display: flex;
    justify-content: center;
  }

  .mobile-ai-center {
    align-items: center;
  }

  .mobile-ai-start {
    align-items: start;
  }

  .mobile-no-border {
    border: 0px !important;
  }

  .image-fill {
    width: 5rem;
  }

  .popup-bg {
    background-color: var(--1-base-black-white-white, #fafafa);
  }

  .cv-form {
    width: 90%;
    max-width: 28rem;
  }

  .cv-form .form-content {
    width: 100%;
  }

  .image-fill-comp {
    width: 3rem;
    height: auto;
    display: block;
  }

  .frame-listing-comp {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: none;
  }

  .frame-listing-lg {
    width: 6rem;
    height: 6rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 900px) and (pointer: fine) {
  .wrapper {
    width: 100%;
    max-width: 100%;
  }

  .features {
    padding: 2rem;
  }

  .mobile-w-100 {
    width: 100%;
  }

  .mobile-col {
    display: flex;
    flex-direction: column;
  }

  .mobile-col-r {
    display: flex;
    flex-direction: column-reverse;
  }

  .mobile-row {
    display: flex;
    flex-direction: row;
  }

  .img-container {
    max-width: 100%;
  }

  .img {
    max-width: 100%;
    padding: 1rem;
  }

  .testimonial {
    padding: 2rem;
  }

  .testimonial-logo {
    width: 30vw;
  }

  .testimonial-content {
    max-width: 90vw;
  }

  .testimonial-image {
    display: none;
  }

  .section-center {
    max-width: 100vw;
    padding: 2rem;
  }

  .metrics-section {
    gap: 0rem;
  }

  .number-metric-item {
    font-size: 2.75rem;
  }

  .pt-11 {
    padding-top: 2rem;
  }

  .team-member {
    margin-left: auto;
    margin-right: auto;
  }

  .social-proof {
    padding: 4rem;
  }

  .resize-w-100 {
    width: 100% !important;
  }

  .social-proof-icon {
    max-width: 300px;
    justify-content: center;
  }

  .social-proof-icons {
    padding: 1rem;
  }

  .team-member-info {
    align-items: center;
  }

  .gradient-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 95%;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(45deg, #2d2868 0%, #5a4fcf 100%);
  }

  .listing-comp {
    display: flex;
    padding: 1rem;
    align-items: center;
    gap: 1.25rem;
    align-self: stretch;
    border-radius: 0.75rem;
    border: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease;
    min-width: 42.75rem;
  }

  .mobile-ai-center {
    align-items: center;
  }

  .mobile-jc-center {
    display: flex;
    justify-content: center;
  }

  .desktop-ai-center {
    align-items: center;
  }

  .desktop-jc-center {
    display: flex;
    justify-content: center;
  }
}

.narrow-hide {
  display: flex;
}

.narrow-show {
  display: none;
}

@media (max-width: 900px) {
  .narrow-hide {
    display: none;
  }

  .narrow-show {
    display: flex;
  }
}

.job-logo {
  /* width: 150px;
  height: 60px; */
  max-width: 96px;
  max-height: 96px;
  border-radius: 0.5rem;
  overflow: hidden;
  object-fit: contain;
}

/* Ensure modal cards keep their surface styling on mobile */
.overlay .profile-card {
  background: var(--1-base-black-white-white, #fafafa);
  border-radius: 16px;
  border: 1px solid var(--2-grey-dark-grey-grey-200, #d0d1d3);
  box-shadow: 0 0 0 1px #e0e0e0, 0 10px 20px rgba(0, 0, 0, 0.05);
}

