/* MedRefer — Built For You section styles. Scoped under .built. */

.built {
  padding: 80px 0 96px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.built .b-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.built .b-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  color: var(--teal-ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 18px;
}
.built .b-kicker::before, .built .b-kicker::after {
  content:""; width: 24px; height: 1px; background: var(--teal-deep); opacity: 0.5;
}
.built .b-head h2 {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.built .b-head h2 .muted { color: var(--navy-3); font-weight: 400; }
.built .b-head p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 580px;
  text-wrap: pretty;
}

/* Two-column duo */
.built .duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.built .col {
  position: relative;
  border-radius: 22px;
  padding: 40px 36px 32px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.built .col.gp { background: #fff; }
.built .col.spec {
  background: var(--paper-2);
  border-color: rgba(13,27,42,0.08);
}
.built .col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.built .col.gp::before { background: linear-gradient(90deg, var(--teal-deep), var(--teal)); }
.built .col.spec::before { background: linear-gradient(90deg, var(--navy-3), var(--navy)); }

.built .role {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}
.built .col.gp .role {
  background: var(--teal-soft);
  color: var(--teal-ink);
  border: 1px solid rgba(0,191,166,0.22);
}
.built .col.spec .role {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--rule);
}
.built .role .role-dot { width: 6px; height: 6px; border-radius: 50%; }
.built .col.gp .role .role-dot { background: var(--teal); }
.built .col.spec .role .role-dot { background: var(--navy); }

.built .col h3 {
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 10px;
  text-wrap: balance;
}
.built .col .sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 420px;
}

/* Benefit rows */
.built .benefits {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
  flex: 1;
}
.built .benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  align-items: flex-start;
  border-top: 1px solid var(--rule-soft);
}
.built .col.spec .benefit { border-top-color: rgba(13,27,42,0.08); }
.built .benefit:first-of-type { border-top: 0; }

.built .b-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex: none;
}
.built .col.gp .b-ico {
  background: var(--teal-soft);
  color: var(--teal-ink);
}
.built .col.spec .b-ico {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--rule);
}

.built .b-body { min-width: 0; }
.built .b-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  line-height: 1.3;
}
.built .b-detail {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 440px;
}

/* Column CTA */
.built .col-cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed transparent;
}
.built .col.gp .col-cta { border-top-color: var(--rule-soft); }
.built .col.spec .col-cta { border-top-color: rgba(13,27,42,0.08); }
.built .col-cta .button {
  display: inline-flex; align-items: center; gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: background-color .15s, transform .15s;
}
.built .col-cta .button svg { transition: transform .2s ease; }
.built .col-cta .button:hover svg { transform: translateX(2px); }
.built .col.gp .col-cta .button {
  background: var(--teal);
  color: var(--teal-ink);
  font-weight: 600;
}
.built .col.gp .col-cta .button:hover { background: #00D6BA; }
.built .col.spec .col-cta .button {
  background: var(--navy);
  color: #fff;
}
.built .col.spec .col-cta .button:hover { background: var(--navy-deep); }
.built .col-cta .note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 6px;
}
.built .col-cta .note svg { color: var(--ink-3); }

@media (max-width: 900px) {
  .built .duo { grid-template-columns: 1fr; gap: 20px; }
  .built .col { padding: 32px 28px 28px; }
}
@media (max-width: 720px) {
  .built { padding: 56px 0 72px; }
}
