/* Dobrostan pracowników – strona statyczna (tylko main) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
  background: #fff;
}

main.page {
  min-height: 100vh;
}

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  background: #fff;
  color: #00479A;
}

.breadcrumbs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 12px 12px;
  display: flex;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
  min-width: max-content;
}

.breadcrumbs-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00479A;
  text-decoration: none;
  white-space: nowrap;
}

.breadcrumbs-link:hover {
  opacity: 0.8;
}

.breadcrumbs-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.breadcrumbs-sep {
  color: #7D7D7D;
  margin: 0 4px;
}

.breadcrumbs-sep::before {
  content: ">";
}

.breadcrumbs-current {
  font-weight: 600;
  color: #00479A;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .breadcrumbs-inner {
    padding: 24px 16px;
    gap: 16px;
  }
}

/* ----- Hero ----- */
.wb-hero {
  background: #fff;
  padding: 40px 16px;
}

@media (min-width: 768px) {
  .wb-hero {
    padding: 64px 16px;
  }
}

.wb-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

@media (min-width: 1024px) {
  .wb-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    text-align: left;
  }
}

.wb-hero-img-wrap {
  width: 100%;
  max-width: 576px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #dbeafe;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  aspect-ratio: 576 / 440;
}

@media (min-width: 1024px) {
  .wb-hero-img-wrap {
    order: 2;
  }
}

.wb-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wb-hero-content {
  flex: 1;
  max-width: 656px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 1024px) {
  .wb-hero-content {
    order: 1;
    align-items: flex-start;
    gap: 24px;
  }
}

.wb-hero-content .wb-hero-title,
.wb-hero-content .wb-hero-intro {
  text-align: center;
}

@media (min-width: 1024px) {
  .wb-hero-content .wb-hero-title,
  .wb-hero-content .wb-hero-intro {
    text-align: left;
  }
}

.wb-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wb-hero-tag {
  padding: 4px 12px;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1d4ed8;
  background: #eff6ff;
}

.wb-hero-title {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-hero-title {
    font-size: 40px;
    line-height: 50px;
  }
}

.wb-hero-title--blue {
  color: #1152d4;
}

.wb-hero-intro {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  color: #515151;
}

@media (min-width: 768px) {
  .wb-hero-intro {
    font-size: 20px;
    line-height: 30px;
  }
}

.wb-hero-cta {
  display: inline-block;
  max-width: max-content;
  padding: 2px;
  background: linear-gradient(to right, #FF4500, #FFA500);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.wb-hero-cta span {
  display: block;
  padding: 12px 36px;
  background: transparent;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.wb-hero-cta:hover span {
  background: #fff;
}

.wb-hero-cta:hover {
  color: #000;
}

/* ----- Philosophy ----- */
.wb-philosophy {
  background: #f8f9fc;
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .wb-philosophy {
    padding: 80px 16px;
  }
}

.wb-philosophy-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .wb-philosophy-inner {
    gap: 48px;
  }
}

.wb-philosophy-heading {
  margin: 0;
  text-align: center;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-philosophy-heading {
    font-size: 40px;
    line-height: 50px;
  }
}

.wb-philosophy-heading--blue {
  color: #1152d4;
}

.wb-philosophy-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 280px;
}

@media (min-width: 1024px) {
  .wb-philosophy-mobile {
    display: none;
  }
}

.wb-philosophy-desktop {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 1024px) {
  .wb-philosophy-desktop {
    display: flex;
  }
}

.wb-philosophy-card {
  display: flex;
  height: 80px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 25px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border: 1px solid #f3f4f6;
  background: #fff;
  color: #0d121b;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.wb-philosophy-card--last {
  background: #1152d4;
  color: #fff;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(17,82,212,0.2), 0 4px 6px -4px rgba(17,82,212,0.2);
}

@media (min-width: 1024px) {
  .wb-philosophy-card {
    width: 214px;
    flex-shrink: 0;
    font-size: 20px;
  }
}

.wb-philosophy-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d121b;
  opacity: 0.6;
  flex-shrink: 0;
}

.wb-philosophy-arrow svg {
  width: 16px;
  height: 16px;
}

.wb-philosophy-arrow--down {
  transform: none;
}

.wb-philosophy-arrow--right {
  transform: none;
}

/* ----- Talents ----- */
.wb-talents {
  background: #fff;
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .wb-talents {
    padding: 80px 16px 80px;
  }
}

.wb-talents-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .wb-talents-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.wb-talents-left {
  flex: 1;
  max-width: 509px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wb-talents-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wb-talents-heading {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-talents-heading {
    font-size: 40px;
    line-height: 50px;
  }
}

.wb-talents-intro {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #515151;
}

.wb-talents-questions {
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #f8f9fc;
  padding: 24px;
}

@media (min-width: 768px) {
  .wb-talents-questions {
    padding: 23px 25px 25px;
  }
}

.wb-talents-questions-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.wb-talents-questions-icon {
  flex-shrink: 0;
  width: 24px;
  height: 28px;
  object-fit: contain;
}

.wb-talents-questions-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-talents-questions-title {
    font-size: 20px;
  }
}

.wb-talents-questions-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wb-talents-questions-list li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 26px;
  color: #0d121b;
}

.wb-talents-questions-num {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #1152d4;
}

.wb-talents-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .wb-talents-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .wb-talents-stats {
    max-width: 490px;
    flex-shrink: 0;
    gap: 24px;
  }
}

.wb-talents-stat {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #f8f9fc;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.wb-talents-stat-title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #1152d4;
}

@media (min-width: 768px) {
  .wb-talents-stat-title {
    font-size: 18px;
    line-height: 28px;
  }
}

.wb-talents-stat-desc {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #515151;
}

/* ----- Culture ----- */
.wb-culture {
  background: #f8f9fc;
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .wb-culture {
    padding: 96px 16px;
  }
}

.wb-culture-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wb-culture-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.wb-culture-heading {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-culture-heading {
    font-size: 40px;
    line-height: 50px;
  }
}

.wb-culture-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: #515151;
}

@media (min-width: 768px) {
  .wb-culture-subtitle {
    font-size: 20px;
  }
}

.wb-culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .wb-culture-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .wb-culture-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wb-pillar {
  display: flex;
/*  min-height: 320px;*/
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  background: #fff;
}

@media (min-width: 768px) {
  .wb-pillar {
    min-height: 325px;
    padding: 25px 33px;
  }
}

.wb-pillar-num {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: rgba(17, 82, 212, 0.1);
}

.wb-pillar-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wb-pillar-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-pillar-title {
    font-size: 20px;
  }
}

.wb-pillar-icon {
  flex-shrink: 0;
  width: 24px;
  height: 28px;
  object-fit: contain;
}

.wb-pillar-text {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #515151;
}

.wb-pillar-highlight {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #f9fafb;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 26px;
  color: #515151;
}

.wb-pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wb-pillar-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #515151;
}

.wb-pillar-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #1152d4;
}

.wb-pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wb-pillar-tags--green .wb-pillar-tag {
  color: #15803d;
  background: #f0fdf4;
}

.wb-pillar-tags--blue .wb-pillar-tag {
  color: #1d4ed8;
  background: #eff6ff;
}

.wb-pillar-tag {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

/* ----- What we look for ----- */
.wb-lookfor {
  background: #fff;
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .wb-lookfor {
    padding: 80px 16px;
  }
}

.wb-lookfor-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.wb-lookfor-box {
  width: 100%;
  max-width: 960px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(17, 82, 212, 0.1);
  background: #f8f9fc;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .wb-lookfor-box {
    padding: 41px;
  }
}

.wb-lookfor-heading {
  margin: 0 0 32px;
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-lookfor-heading {
    margin-bottom: 40px;
  }
}

.wb-lookfor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .wb-lookfor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.wb-lookfor-item {
  display: flex;
  flex: 1;
  gap: 16px;
  min-width: 0;
}

.wb-lookfor-icon-wrap {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-lookfor-icon {
  width: 24px;
  height: 28px;
  object-fit: contain;
}

.wb-lookfor-item-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  flex: 1;
}

.wb-lookfor-item-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-lookfor-item-title {
    font-size: 20px;
  }
}

.wb-lookfor-item-desc {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #515151;
}

/* ----- Join team ----- */
.wb-join {
  border-top: 1px solid #e7ebf3;
  background: #f8f9fc;
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .wb-join {
    padding: 97px 16px;
  }
}

.wb-join-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.wb-join-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 725px;
  margin: 0 auto;
  text-align: center;
}

.wb-join-heading {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-join-heading {
    font-size: 40px;
    line-height: 50px;
  }
}

.wb-join-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: #515151;
}

@media (min-width: 768px) {
  .wb-join-subtitle {
    font-size: 20px;
  }
}

.wb-join-cta {
  display: inline-block;
  padding: 2px;
  background: linear-gradient(to right, #FF4500, #FFA500);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.wb-join-cta span {
  display: block;
  padding: 12px 36px;
  background: transparent;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.wb-join-cta:hover span {
  background: #fff;
}

.wb-join-cta:hover {
  color: #000;
}

/* ----- Discover more ----- */
.wb-discover {
  background: #f6f6f8;
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .wb-discover {
    padding: 96px 16px;
  }
}

.wb-discover-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.wb-discover-heading {
  margin: 0 0 16px;
  text-align: center;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .wb-discover-heading {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 50px;
  }
}

.wb-discover-line {
  width: 96px;
  height: 6px;
  margin: 0 auto 32px;
  border-radius: 9999px;
  background: #1152d4;
}

@media (min-width: 768px) {
  .wb-discover-line {
    margin-bottom: 48px;
  }
}

.wb-discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: max-content;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wb-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wb-discover-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.discover-card {
  max-width: 302px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.discover-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.discover-card-img-wrap {
  height: 142px;
  width: 100%;
  overflow: hidden;
}

.discover-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 32px 32px;
}

.discover-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #262626;
}

.discover-card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #515151;
}

.discover-card-link {
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #00479a;
}
