/* KONCEPT_6 — role-based B2B paths and procurement content. */

.c6-section {
  position: relative;
  padding: clamp(72px, 8vw, 116px) 0;
  overflow: hidden;
}

.c6-section--roles {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 174, 217, .13), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-block: 1px solid rgba(14, 32, 81, .08);
}

.c6-section--project {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 174, 217, .11), transparent 28%),
    #f7f9fd;
  border-block: 1px solid rgba(14, 32, 81, .08);
}

.c6-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.c6-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #087eaa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.c6-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00aed9;
  box-shadow: 0 0 0 6px rgba(0, 174, 217, .12);
}

.c6-heading h2 {
  margin: 0;
  max-width: 760px;
  color: #15145f;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.c6-heading p {
  margin: 0;
  color: #56617b;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.62;
}

.c6-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.c6-role-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  color: #17194d;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(21, 20, 95, .11);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(20, 30, 82, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.c6-role-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 174, 217, .42);
  box-shadow: 0 24px 58px rgba(20, 30, 82, .14);
}

.c6-role-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -58px;
  top: -65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 217, .16), rgba(0, 174, 217, 0) 70%);
}

.c6-role-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #16136b, #2f39a5);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .04em;
}

.c6-role-card h3 {
  margin: 0 0 13px;
  font-size: 25px;
  line-height: 1.15;
}

.c6-role-card p {
  margin: 0 0 20px;
  color: #616a80;
  font-size: 16px;
  line-height: 1.55;
}

.c6-role-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #343a56;
  font-size: 14px;
}

.c6-role-card li {
  position: relative;
  padding-left: 18px;
}

.c6-role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00aed9;
}

.c6-role-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #17156c;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.c6-role-link::after {
  content: "→";
  font-size: 18px;
  transition: transform .2s ease;
}

.c6-role-link:hover::after {
  transform: translateX(4px);
}

.c6-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: c6-step;
  margin-bottom: 46px;
}

.c6-step {
  position: relative;
  min-height: 210px;
  padding: 27px 25px;
  background: #fff;
  border: 1px solid rgba(21, 20, 95, .1);
  border-radius: 21px;
  counter-increment: c6-step;
}

.c6-step::before {
  content: "0" counter(c6-step);
  display: block;
  margin-bottom: 29px;
  color: #00a4d1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
}

.c6-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #17156c;
  background: #eaf8fc;
  border: 4px solid #f7f9fd;
  font-weight: 900;
}

.c6-step h3 {
  margin: 0 0 10px;
  color: #181662;
  font-size: 20px;
}

.c6-step p {
  margin: 0;
  color: #616a80;
  font-size: 15px;
  line-height: 1.55;
}

.c6-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 46px;
}

.c6-decision {
  padding: 24px;
  color: #fff;
  background: linear-gradient(140deg, #16146e, #232d91);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(22, 20, 110, .15);
}

.c6-decision small {
  display: block;
  margin-bottom: 8px;
  color: #67daf0;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.c6-decision h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.c6-decision p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.55;
}

.c6-faq {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 34px;
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid rgba(21, 20, 95, .1);
  border-radius: 26px;
}

.c6-faq h3 {
  margin: 0 0 10px;
  color: #181662;
  font-size: 28px;
  line-height: 1.12;
}

.c6-faq-intro p {
  margin: 0;
  color: #697187;
  line-height: 1.55;
}

.c6-faq-list {
  border-top: 1px solid rgba(21, 20, 95, .11);
}

.c6-faq details {
  border-bottom: 1px solid rgba(21, 20, 95, .11);
}

.c6-faq summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: #202243;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.c6-faq summary::-webkit-details-marker {
  display: none;
}

.c6-faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 16px;
  color: #00a4d1;
  font-size: 24px;
  line-height: 1;
}

.c6-faq details[open] summary::after {
  content: "–";
}

.c6-faq details p {
  margin: 0;
  padding: 0 32px 19px 0;
  color: #626b80;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .c6-heading,
  .c6-faq {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .c6-role-grid,
  .c6-decision-grid {
    grid-template-columns: 1fr;
  }

  .c6-role-card {
    min-height: 0;
  }

  .c6-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c6-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .c6-section {
    padding: 62px 0;
  }

  .c6-heading {
    margin-bottom: 28px;
  }

  .c6-heading h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .c6-process-grid {
    grid-template-columns: 1fr;
  }

  .c6-step {
    min-height: 0;
  }

  .c6-step::after {
    display: none !important;
  }

  .c6-role-card,
  .c6-step,
  .c6-decision {
    border-radius: 18px;
  }

  .c6-faq {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

/* Prosty proces zakupu TuriColl — bez konsultingowego żargonu i nadmiaru kart. */
.c6-how {
  padding: clamp(72px, 8vw, 104px) 0;
  color: #15173e;
  background: #fff;
  border-block: 1px solid #e7eaf1;
}

.c6-how__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: start;
}

.c6-how__label {
  display: block;
  margin-bottom: 18px;
  color: #087eaa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.c6-how__intro h2 {
  max-width: 560px;
  margin: 0;
  color: #15145f;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.c6-how__intro > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: #5b6378;
  font-size: 18px;
  line-height: 1.65;
}

.c6-how__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.c6-how__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #17156c;
  background: #fff;
  border: 1px solid #d8dce7;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.c6-how__button:hover {
  transform: translateY(-2px);
  border-color: #17156c;
}

.c6-how__button--primary {
  color: #fff;
  background: #17156c;
  border-color: #17156c;
}

.c6-how__button--primary:hover {
  background: #24238a;
}

.c6-how__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dfe3ec;
}

.c6-how__steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #dfe3ec;
}

.c6-how__steps li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #087eaa;
  background: #edf9fc;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}

.c6-how__steps h3 {
  margin: 1px 0 8px;
  color: #17183e;
  font-size: 22px;
  line-height: 1.25;
}

.c6-how__steps p {
  max-width: 620px;
  margin: 0;
  color: #626a7d;
  font-size: 15px;
  line-height: 1.6;
}

.c6-quick-faq {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 90px);
  margin-top: clamp(66px, 8vw, 96px);
  padding-top: clamp(36px, 5vw, 54px);
  border-top: 1px solid #dfe3ec;
}

.c6-quick-faq > h3 {
  margin: 0;
  color: #17183e;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.c6-quick-faq__list {
  border-top: 1px solid #dfe3ec;
}

.c6-quick-faq details {
  border-bottom: 1px solid #dfe3ec;
}

.c6-quick-faq summary {
  position: relative;
  padding: 19px 42px 19px 0;
  color: #202243;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.c6-quick-faq summary::-webkit-details-marker {
  display: none;
}

.c6-quick-faq summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 17px;
  color: #087eaa;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.c6-quick-faq details[open] summary::after {
  content: "–";
}

.c6-quick-faq details p {
  max-width: 720px;
  margin: 0;
  padding: 0 42px 19px 0;
  color: #626a7d;
  font-size: 15px;
  line-height: 1.62;
}

.c6-quick-faq details p a {
  color: #17156c;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(23, 21, 108, .28);
  text-underline-offset: 3px;
}

.c6-quick-faq details p a:hover {
  text-decoration-color: #17156c;
}

@media (max-width: 900px) {
  .c6-how__grid,
  .c6-quick-faq {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .c6-how {
    padding: 64px 0;
  }

  .c6-how__intro h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .c6-how__intro > p {
    font-size: 17px;
  }

  .c6-how__actions {
    display: grid;
  }

  .c6-how__button {
    width: 100%;
  }

  .c6-how__steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 23px 0;
  }

  .c6-how__steps li > span {
    width: 40px;
    height: 40px;
  }

  .c6-how__steps h3 {
    font-size: 20px;
  }

  .c6-quick-faq {
    margin-top: 62px;
    padding-top: 36px;
  }
}
