/* Premium layouts: Insurance, Medical Records hub, Medical record request */

.pr-hero-insurance.page-hero--photo::before {
  background-image: url("../_next/myra-and-doc-consult.webp");
}

.pr-hero-records.page-hero--photo::before {
  background-image: url("../_next/office-indoor.webp");
}

.pr-hero-mrr.page-hero--photo::before {
  background-image: url("../_next/ppsi-dr-team.webp");
}

.pr-section {
  padding: 72px 0 80px;
  background: var(--bg-soft, #f5f8fc);
}

.pr-section--alt {
  background: #fff;
}

.pr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .pr-layout {
    grid-template-columns: 1fr;
  }
}

.pr-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pr-side-card {
  background: #fff;
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: var(--radius-lg, 16px);
  padding: 22px 22px 20px;
  box-shadow: 0 8px 32px rgba(15, 76, 129, 0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pr-side-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.12), rgba(15, 76, 129, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #0f4c81);
}

.pr-side-card-icon .icon {
  width: 22px;
  height: 22px;
}

.pr-side-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text, #1a2b3d);
  letter-spacing: -0.02em;
}

.pr-side-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft, #5a6b7c);
}

.pr-form-shell {
  background: #fff;
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: var(--radius-lg, 16px);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 12px 48px rgba(15, 76, 129, 0.08);
}

.pr-form-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 76, 129, 0.1);
}

.pr-form-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  color: var(--text, #1a2b3d);
}

.pr-form-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft, #5a6b7c);
}

.pr-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

@media (max-width: 600px) {
  .pr-form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.pr-form-shell .ppsi-form label {
  margin-top: 4px;
}

.pr-form-shell .ppsi-form input:last-of-type,
.pr-form-shell .ppsi-form textarea:last-of-type {
  margin-bottom: 0;
}

.pr-form-shell .ppsi-form button[type="submit"] {
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
}

.pr-form-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft, #5a6b7c);
}

.pr-photo-band {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  overflow: hidden;
  background: #0a355a;
}

.pr-photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.pr-photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 40, 70, 0.92) 0%, rgba(15, 76, 129, 0.75) 55%, rgba(10, 53, 90, 0.88) 100%);
}

.pr-photo-band--office::before {
  background-image: url("../_next/edison-office.webp");
}

.pr-photo-band--team::before {
  background-image: url("../_next/group-of-doctors.webp");
}

.pr-photo-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

.pr-photo-band-inner h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.pr-photo-band-inner p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.pr-photo-band-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pr-photo-band .btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.pr-photo-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.pr-form-shell select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line, #e4e7ec);
  border-radius: var(--radius-xs, 8px);
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 16px;
  background: #fff;
  color: var(--text, #101828);
}

.pr-form-shell select:focus {
  outline: none;
  border-color: var(--primary, #0f4c81);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.pr-steps {
  counter-reset: prstep;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-steps li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft, #5a6b7c);
}

.pr-steps li:last-child {
  margin-bottom: 0;
}

.pr-steps li::before {
  counter-increment: prstep;
  content: counter(prstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary, #0f4c81);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .pr-feature-row {
    grid-template-columns: 1fr;
  }
}

.pr-feature-tile {
  background: #fff;
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: var(--radius-lg, 16px);
  padding: 24px 22px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(15, 76, 129, 0.05);
}

.pr-feature-tile h3 {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text, #1a2b3d);
}

.pr-feature-tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft, #5a6b7c);
}

.form-status {
  padding: 14px 16px;
  border-radius: var(--radius-xs, 8px);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.form-status--success {
  background: rgba(34, 160, 107, 0.12);
  border: 1px solid rgba(34, 160, 107, 0.35);
  color: #1a5c3d;
}

.form-status--error {
  background: rgba(200, 60, 60, 0.1);
  border: 1px solid rgba(200, 60, 60, 0.35);
  color: #8b2a2a;
}

.pr-cta-panel {
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.06) 0%, rgba(15, 76, 129, 0.02) 100%);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: var(--radius-lg, 16px);
  padding: 28px 26px;
  margin-top: 8px;
}

.pr-cta-panel h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text, #1a2b3d);
}

.pr-cta-panel p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft, #5a6b7c);
}

.pr-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-soft, #5a6b7c);
}

.pr-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pr-trust-strip .icon {
  color: var(--primary, #0f4c81);
  flex-shrink: 0;
}
