/* Borong procurement pages */
.proc-hero {
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-lilac) 0%, #fff 52%, var(--brand-mist) 100%);
}
.proc-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px;
}
.proc-kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--brand-muted);
  font-weight: 700;
  font-size: 12px;
}
.proc-hero h1 {
  max-width: 760px;
  color: var(--brand-purple);
}
.proc-hero-copy {
  margin-top: 24px;
  max-width: 650px;
  color: #443D66;
  font-size: 18px;
  line-height: 1.65;
}
.proc-hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.proc-visual {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(244,241,251,.72)),
    radial-gradient(circle at 70% 20%, rgba(255,133,0,.22), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(82,69,133,.2), transparent 34%);
  border: 1px solid rgba(214,207,232,.8);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.proc-visual::before {
  content: "";
  position: absolute;
  inset: 42px 34px auto;
  height: 66px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.proc-visual::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  height: 210px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(82,69,133,.12) 1px, transparent 1px),
    linear-gradient(rgba(82,69,133,.12) 1px, transparent 1px),
    #fff;
  background-size: 54px 46px;
  box-shadow: var(--shadow-card);
}
.proc-visual .proc-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
}
.proc-visual.has-image {
  background: #fff;
  overflow: visible;
}
.proc-visual.has-image::before,
.proc-visual.has-image::after { display: none; }
.proc-visual-story { min-height: 320px; }
.proc-visual-story.has-image { border: none; background: transparent; }
.proc-visual-story .proc-visual-image { object-fit: cover; }
.proc-purple .proc-visual-story.has-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 4rem 1.5rem;
  box-shadow: none;
}
.proc-purple .proc-visual-story.has-image .proc-visual-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: none;
}
.proc-visual.has-image .metric:nth-child(2),
.proc-visual.has-image .metric:nth-child(3) {
  top: auto; right: auto; bottom: auto; left: auto;
}
.proc-visual.has-image .metric:nth-child(2) { background: var(--brand-purple); }
.proc-visual.has-image .metric:nth-child(3) { background: var(--brand-orange); }
.proc-visual.has-image.metric-tr-bl .metric:nth-child(2) {
  top: 0; right: 0;
  transform: translate(20%, -20%);
}
.proc-visual.has-image.metric-tr-bl .metric:nth-child(3) {
  bottom: 0; left: 0;
  transform: translate(-20%, 20%);
}
.proc-visual.has-image.metric-tl-br .metric:nth-child(2) {
  top: 0; left: 0;
  transform: translate(-20%, -20%);
}
.proc-visual.has-image.metric-tl-br .metric:nth-child(3) {
  bottom: 0; right: 0;
  transform: translate(20%, 20%);
}
@media (max-width: 640px) {
  .proc-visual.has-image.metric-tr-bl .metric:nth-child(2),
  .proc-visual.has-image.metric-tl-br .metric:nth-child(2) { transform: translate(0, -20%); right: 12px; left: auto; }
  .proc-visual.has-image.metric-tr-bl .metric:nth-child(3),
  .proc-visual.has-image.metric-tl-br .metric:nth-child(3) { transform: translate(0, 20%); left: 12px; right: auto; }
}
.proc-visual .metric {
  position: absolute;
  z-index: 1;
  width: 150px;
  border-radius: 18px;
  background: var(--brand-purple);
  color: #fff;
  padding: 18px;
  box-shadow: var(--shadow-pop);
}
.proc-visual .metric:nth-child(1) { right: 38px; top: 102px; }
.proc-visual .metric:nth-child(2) { left: 38px; bottom: 54px; background: var(--brand-orange); }
.metric strong { display: block; font-size: 26px; line-height: 1; }
.metric span { display: block; margin-top: 8px; font-size: 12px; line-height: 1.35; opacity: .9; }
.proc-band { background: rgba(244,241,251,.65); }
.proc-section { padding: 88px 0; }
.proc-section.mist { background: rgba(244,241,251,.62); }
.proc-section.lilac { background: var(--brand-lilac); }
.proc-heading {
  max-width: 840px;
  margin: 0 auto 40px;
  text-align: center;
}
.proc-heading.left { margin-left: 0; text-align: left; }
.proc-heading h2 {
  color: var(--brand-purple);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
}
.proc-heading p {
  margin-top: 16px;
  color: var(--brand-muted);
  font-size: var(--text-body);
  line-height: 1.7;
}
.proc-grid { display: grid; gap: 24px; }
.proc-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.proc-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.proc-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proc-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: rgba(244,241,251,.52);
  box-shadow: var(--shadow-card);
}
.proc-card.white { background: #fff; }
.proc-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #fff;
  color: var(--brand-orange);
  border: 1px solid var(--brand-border);
  font-weight: 700;
}
.proc-icon img { display: block; }
.proc-stat-icon { width: 40px; height: 40px; display: block; margin-bottom: 10px; }
.proc-card h3 { color: var(--brand-purple); font-size: 22px; line-height: 1.22; }
.proc-card h4 { color: var(--brand-purple); font-size: 18px; line-height: 1.3; }
.proc-card p, .proc-card li { color: var(--brand-muted); font-size: var(--text-body); line-height: normal; }
.proc-card p { margin-top: 12px; }
.proc-card a { display: inline-flex; margin-top: 18px; color: var(--brand-orange); font-weight: 700; font-size: var(--text-body); line-height: normal; }
.proc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.proc-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.proc-table th, .proc-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--brand-border);
  vertical-align: top;
  font-size: var(--text-body);
  line-height: normal;
}
.proc-table th { color: var(--brand-purple); text-align: left; font-weight: 700; }
.proc-table td { color: var(--brand-muted); }
.proc-table tr:last-child td { border-bottom: 0; }
.proc-check { color: #079455; font-weight: 700; }
.proc-cross { color: #D92D20; font-weight: 700; }
.proc-split {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 34px;
  align-items: center;
}
.proc-purple {
  overflow: hidden;
  border-radius: 32px;
  background: var(--brand-purple);
  color: #fff;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.proc-purple h2, .proc-purple h3, .proc-purple h4 { color: #fff; }
.proc-purple p { color: rgba(255,255,255,.8); }
.proc-purple .proc-card { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); box-shadow: none; }
.proc-purple .proc-card.white { background: #fff; color: var(--brand-ink); padding: 20px; }
.proc-purple .proc-card.white p { color: var(--brand-ink); margin-top: 8px; font-size: 14px; line-height: 1.5; }
.proc-purple .proc-card.white strong { font-weight: 700; color: var(--brand-purple); }
.proc-stat {
  border-radius: 18px;
  background: #fff;
  color: var(--brand-purple);
  padding: 20px;
}
.proc-stat strong { display: block; font-size: 30px; line-height: 1; }
.proc-stat span { display: block; margin-top: 10px; color: var(--brand-ink); font-size: var(--text-body); line-height: normal; }
.proc-step-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.proc-step-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 27px;
  height: 6px;
  border-radius: 99px;
  background: #fce7cb;
}
.proc-step {
  position: relative;
  text-align: center;
}
.proc-step-num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fce7cb;
}
.proc-step-num span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
}
.proc-cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  background: rgba(244,241,251,.64);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.proc-cta-panel h2 { color: var(--brand-purple); font-size: clamp(30px, 3vw, 42px); line-height: 1.1; }
.proc-cta-panel p { margin-top: 14px; color: var(--brand-muted); max-width: 760px; }
.proc-cta-panel .btn { margin-top: 28px; }
.proc-form-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 36px;
  align-items: start;
}
.proc-form-card {
  border-radius: 28px;
  border: 1px solid var(--brand-border);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.proc-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.proc-field.full { grid-column: 1 / -1; }
.proc-field label, .proc-field legend {
  display: block;
  margin-bottom: 7px;
  font-size: var(--text-body);
  line-height: normal;
  font-weight: 700;
  color: var(--brand-ink);
}
.proc-field input:not([type="checkbox"]), .proc-field select, .proc-field textarea {
  width: 100%;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--brand-ink);
  outline: 0;
  background: #fff;
  font: inherit;
  font-size: var(--text-body);
  line-height: normal;
}
.proc-field input:not([type="checkbox"]):focus, .proc-field select:focus, .proc-field textarea:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(82,69,133,.14);
}
.proc-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.proc-check-grid .proc-check-label input[type="checkbox"] { accent-color: var(--brand-purple); cursor: pointer; }
.proc-check-grid .proc-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 12px;
  color: var(--brand-ink);
  font-size: var(--text-body);
  line-height: normal;
  font-weight: 500;
  margin-bottom: 0;
  cursor: pointer;
}
.proc-topic-list { display: flex; gap: 10px; flex-wrap: wrap; }
.proc-topic-list a {
  border-radius: 999px;
  background: var(--brand-mist);
  color: var(--brand-purple);
  padding: 9px 14px;
  font-size: var(--text-sm);
  line-height: normal;
  font-weight: 700;
}
.proc-topic-list a:first-child { background: var(--brand-purple); color: #fff; }
.faq-details {
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  background: #fff;
  padding: 0 22px;
}
.faq-details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  color: var(--brand-purple-ink);
  font-weight: 700;
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details div { padding: 0 0 20px; color: var(--brand-muted); }
.faq-details.open > div,
.faq-details[open] > div { cursor: pointer; }
.faq-details summary .plus {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-mist);
  color: var(--brand-purple);
  font-size: 0;
  line-height: 1;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.faq-details summary .plus::before,
.faq-details summary .plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}
.faq-details summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-details.open > summary .plus,
.faq-details[open] > summary .plus { background: var(--brand-orange); color: #fff; }
.faq-details.open > summary .plus::before,
.faq-details[open] > summary .plus::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq-details.open > summary .plus::after,
.faq-details[open] > summary .plus::after { transform: translate(-50%, -50%) rotate(-45deg); }
.proc-contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
}
.proc-contact p { color: var(--brand-muted); margin-top: 12px; }
.proc-contact strong { color: var(--brand-ink); }
.proc-logo-scroller {
  overflow: hidden;
  margin-top: 34px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.proc-logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: proc-logo-scroll 28s linear infinite;
}
.proc-logo-scroller:hover .proc-logo-track {
  animation-play-state: paused;
}
@keyframes proc-logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3334%); }
}
.proc-logo-item {
  flex: none;
  display: flex;
  align-items: center;
}
.proc-logo-item img {
  height: 58px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  filter: url(#purple-mono) opacity(0.7);
  transition: filter 0.25s ease;
}
.proc-logo-item:hover img {
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .proc-logo-scroller {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .proc-logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .proc-logo-item[aria-hidden="true"] {
    display: none;
  }
}
@media (max-width: 960px) {
  .proc-hero-grid, .proc-split, .proc-form-grid, .proc-contact { grid-template-columns: 1fr; }
  .proc-grid.three, .proc-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proc-step-line { grid-template-columns: repeat(2, 1fr); }
  .proc-step-line::before { display: none; }
  .proc-purple .proc-visual-story.has-image { padding: 0; }
}
@media (max-width: 640px) {
  .proc-hero-grid { padding-top: 52px; padding-bottom: 52px; }
  .proc-visual { min-height: 280px; }
  .proc-grid.two, .proc-grid.three, .proc-grid.four, .proc-form, .proc-check-grid, .proc-step-line { grid-template-columns: 1fr; }
  .proc-section { padding: 64px 0; }
  .proc-purple, .proc-cta-panel, .proc-form-card { padding: 28px; border-radius: 24px; }
}
