/* ── Register page styles — NULLIFY 2027 ── */
/* Ensure [hidden] attribute beats any display rule in this stylesheet */
[hidden] { display: none !important; }
:root {
  --navy: #0f2d52;
  --dark-navy: #102132;
  --blue: #1967d2;
  --blue-bright: #0c5adb;
  --teal: #0a7a7e;
  --snow: #f7f9fc;
  --border: #dde3ed;
  --text: #1a2a3a;
  --muted: #4a637f;
}

/* ── Body ─────────────────────────────────────────────────────────── */
.reg-body {
  background: var(--snow);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.reg-hero {
  background: var(--navy);
  padding: 4rem 2rem 3.5rem;
}
.reg-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
}
.reg-hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7ec8e3;
  margin: 0 0 .75rem;
}
.reg-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.reg-hero-desc {
  color: #b3c6d8;
  font-size: .97rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0;
}
.reg-hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  min-width: 240px;
  max-width: 280px;
}
.reg-hero-card-eyebrow {
  display: inline-block;
  background: rgba(110,231,183,.18);
  color: #6ee7b7;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: .25rem .75rem;
  margin-bottom: .85rem;
}
.reg-hero-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .6rem;
}
.reg-hero-card-desc {
  font-size: .84rem;
  color: #b3c6d8;
  line-height: 1.55;
  margin: 0;
}

/* ── Section wrapper ───────────────────────────────────────────────── */
.reg-section {
  padding: 0 2rem 5rem;
}
.reg-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* ── Two-column layout ─────────────────────────────────────────────── */
.reg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 34px;
  align-items: start;
  padding-top: 3rem;
}

/* ── Section header above cards ───────────────────────────────────── */
.section-panel {
  margin-bottom: 1.5rem;
}
.section-panel .eyebrow,
.reg-section .eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin: 0 0 .45rem;
}
.section-panel .panel-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* ── Pass card stack ───────────────────────────────────────────────── */
.ticket-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Pass card ─────────────────────────────────────────────────────── */
.registration-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 28px;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 2px solid var(--border);
  transition: border-color .18s, box-shadow .18s, transform .12s;
  cursor: pointer;
}
.registration-package:hover {
  border-color: var(--blue-bright);
  box-shadow: 0 4px 24px rgba(12,90,219,.13);
  transform: translateY(-1px);
}
.registration-package.active-package {
  border-color: var(--blue-bright);
  box-shadow: 0 6px 30px rgba(12,90,219,.18);
}

.pkg-content {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.package-badge {
  display: inline-block;
  background: rgba(25,103,210,.1);
  color: var(--blue-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: .22rem .7rem;
  width: fit-content;
}
.pkg-badge--academic { background: rgba(10,122,126,.1); color: var(--teal); }
.pkg-badge--govt     { background: rgba(120,53,15,.08); color: #92400e; }
.pkg-badge--ngo      { background: rgba(76,29,149,.08); color: #6d28d9; }
.pkg-badge--virtual  { background: rgba(30,41,59,.08);  color: #374151; }

.pkg-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.package-audience {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.package-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: .4rem;
}
.package-features div {
  background: #f4f7fb;
  border-radius: 10px;
  padding: 9px 11px;
  font-size: .78rem;
  color: var(--text);
  line-height: 1.35;
  font-weight: 500;
}

/* ── Price column ──────────────────────────────────────────────────── */
.package-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: .4rem;
}
.package-price small {
  font-size: .72rem;
  color: var(--muted);
  text-align: right;
}
.original-price {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: line-through;
  color: #8191a1;
  text-align: right;
}
.discount-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--blue-bright);
  text-align: right;
  line-height: 1;
}
.discount-price--virtual {
  color: var(--teal);
}

.select-package-btn {
  width: 100%;
  min-height: 48px;
  background: var(--blue-bright);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin-top: auto;
}
.select-package-btn:hover {
  background: #0a4bc7;
  transform: translateY(-1px);
}
.active-package .select-package-btn {
  background: var(--dark-navy);
}
.active-package .select-package-btn:hover {
  background: #1a3d5c;
}

/* ── Summary card (right sticky) ──────────────────────────────────── */
.summary-card {
  position: sticky;
  top: 80px;
  background: var(--dark-navy);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  scroll-behavior: smooth;
}
.summary-card::-webkit-scrollbar { width: 4px; }
.summary-card::-webkit-scrollbar-track { background: transparent; }
.summary-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 4px; }

.summary-top {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.summary-top-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 .4rem;
}
.summary-top-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

/* ── Form base inside dark card ────────────────────────────────────── */
.summary-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.summary-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.summary-group label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.summary-group input:not([type="checkbox"]),
.summary-group select,
.summary-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  min-height: 46px;
  padding: 0 .9rem;
  color: #fff;
  font-size: .88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
  box-sizing: border-box;
}
.summary-group input:not([type="checkbox"])::placeholder { color: rgba(255,255,255,.28); }
.summary-group select { color: #fff; }
.summary-group select option { background: #1e3a5c; color: #fff; }
.summary-group input:not([type="checkbox"]):focus,
.summary-group select:focus {
  border-color: rgba(147,197,253,.5);
  background: rgba(255,255,255,.1);
}

.required-marker { color: #f87171; }
.field-help      { font-size: .76rem; color: rgba(255,255,255,.45); line-height: 1.45; }
.form-error      { font-size: .75rem; color: #fca5a5; display: none; }

.name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

/* ── Stepper tabs ──────────────────────────────────────────────────── */
.registration-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 5px;
  margin-bottom: 1.25rem;
}
.registration-step-tab {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  font-family: 'Inter', sans-serif;
}
.registration-step-tab span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.registration-step-tab.active-step-tab {
  background: rgba(37,99,235,.22);
  border-color: rgba(147,197,253,.35);
  color: #fff;
}
.registration-step-tab.active-step-tab span {
  background: var(--blue-bright);
}
.registration-step-tab.completed-step-tab {
  color: rgba(255,255,255,.65);
}
.registration-step-tab.completed-step-tab span {
  background: rgba(16,185,129,.25);
  color: #6ee7b7;
}

/* ── Step panel ────────────────────────────────────────────────────── */
.registration-step-panel { display: none; }
.registration-step-panel.active-step-panel { display: block; }

.step-panel-heading {
  margin-bottom: 1.1rem;
}
.step-panel-heading .eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 .25rem;
}
.step-panel-heading h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* ── Colleague / payer fields ──────────────────────────────────────── */
.colleague-toggle-group {
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: .85rem .9rem;
  margin-bottom: 1rem;
}
.coupon-toggle-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  font-size: .84rem;
  line-height: 1.45;
}
.coupon-toggle-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue-bright);
}
.payer-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1rem;
}

/* ── Category price note ───────────────────────────────────────────── */
.cat-price-note {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .4rem;
  flex-wrap: wrap;
}
.cat-rate-badge {
  font-size: .72rem;
  font-weight: 700;
  background: rgba(110,231,183,.18);
  color: #6ee7b7;
  border-radius: 20px;
  padding: .18rem .6rem;
}
.cat-price-val {
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

/* ── Interests grid ────────────────────────────────────────────────── */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.interest-check {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: .5rem .65rem;
  cursor: pointer;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  transition: background .14s;
}
.interest-check:hover { background: rgba(255,255,255,.09); }
.interest-check input { accent-color: var(--blue-bright); flex-shrink: 0; }
.interest-check span  { line-height: 1.3; }

/* ── Workshop items ────────────────────────────────────────────────── */
.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.workshop-label-note {
  font-weight: 400;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-left: .3rem;
}
.workshop-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .75rem .9rem;
  cursor: pointer;
  transition: background .14s;
}
.workshop-item:hover { background: rgba(255,255,255,.1); }
.workshop-item input[type="checkbox"] { accent-color: var(--blue-bright); margin-top: 3px; flex-shrink: 0; }
.ws-body { display: flex; flex-direction: column; gap: .18rem; }
.ws-title { font-size: .84rem; font-weight: 600; color: #fff; }
.ws-sub   { font-weight: 400; font-size: .8rem; color: rgba(255,255,255,.55); }
.ws-date  { font-size: .75rem; color: rgba(255,255,255,.4); }
.ws-price { font-size: .76rem; color: #6ee7b7; font-weight: 600; }

/* ── Group panel ───────────────────────────────────────────────────── */
.group-toggle-group {
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: .85rem .9rem;
}
.group-toggle-label { font-size: .9rem; font-weight: 600; }

.group-registration-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1.15rem;
  margin-bottom: 1rem;
}
.group-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .9rem;
}
.group-panel-top .eyebrow {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  margin: 0 0 .2rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.group-panel-top h5 { font-size: .95rem; font-weight: 700; color: #fff; margin: 0; }
.group-panel-top > span { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); white-space: nowrap; }

.group-discount-banner {
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 10px;
  padding: .65rem .9rem;
  font-size: .82rem;
  color: #6ee7b7;
  font-weight: 600;
  margin-bottom: .9rem;
}

.group-attendee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: .9rem;
}

.group-attendee-card {
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 1rem;
}
.group-attendee-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .85rem;
}
.group-attendee-top strong { font-size: .88rem; color: rgba(255,255,255,.9); }
.remove-attendee-btn {
  background: rgba(239,68,68,.12);
  border: none;
  color: #f87171;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 6px;
  padding: .25rem .55rem;
  cursor: pointer;
}
.remove-attendee-btn:hover { background: rgba(239,68,68,.22); }

.group-attendee-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.group-attendee-fields .summary-group { margin-bottom: 0; }

.add-attendee-btn {
  width: 100%;
  min-height: 42px;
  background: transparent;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 10px;
  color: rgba(255,255,255,.7);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  font-family: 'Inter', sans-serif;
}
.add-attendee-btn:hover:not(:disabled) { border-color: rgba(255,255,255,.55); color: #fff; }
.add-attendee-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── Selected pass box ─────────────────────────────────────────────── */
.selected-pass-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}
.selected-pass-box p {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 .25rem;
}
.selected-pass-box h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.selected-pass-discount-note {
  margin-top: .35rem;
  font-size: .78rem;
  font-weight: 700;
  color: #6ee7b7;
}
.selected-pass-box > span {
  font-size: 1.55rem;
  font-weight: 900;
  color: #6ee7b7;
  white-space: nowrap;
}

/* ── Step actions ──────────────────────────────────────────────────── */
.registration-step-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.step-next-btn {
  flex: 1;
  min-height: 48px;
  background: var(--blue-bright);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .15s;
}
.step-next-btn:hover { background: #0a4bc7; }
.step-back-btn {
  min-height: 48px;
  padding: 0 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .15s;
}
.step-back-btn:hover { background: rgba(255,255,255,.13); }

/* ── Review (Step 2) ───────────────────────────────────────────────── */
.registration-review {
  margin-bottom: .5rem;
}
.review-section {
  margin-bottom: 1.25rem;
}
.review-section h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 .7rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}
.review-item {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: .65rem .8rem;
}
.review-item span { display: block; font-size: .7rem; color: rgba(255,255,255,.45); margin-bottom: .2rem; }
.review-item strong { font-size: .84rem; color: #fff; font-weight: 600; }
.review-attendee-list { display: flex; flex-direction: column; gap: 10px; }
.review-attendee-card {
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: .9rem 1rem;
}
.review-attendee-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .7rem;
}
.review-attendee-top span   { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; }
.review-attendee-top strong { font-size: .88rem; color: #fff; font-weight: 700; }
.review-attendee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

/* ── Coupon (Step 3) ───────────────────────────────────────────────── */
.coupon-group {
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: .85rem .9rem;
}
.coupon-entry { margin-top: .75rem; }
.coupon-apply-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
}
.coupon-apply-row input {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  min-height: 42px;
  padding: 0 .8rem;
  color: #fff;
  font-size: .88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.coupon-apply-row input:focus { border-color: rgba(147,197,253,.5); }
.coupon-apply-row button {
  background: var(--blue-bright);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 1.1rem;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.coupon-apply-row button:disabled { opacity: .5; }
.coupon-success { color: #6ee7b7 !important; }
.coupon-error   { color: #f87171 !important; }

/* ── Price breakdown ───────────────────────────────────────────────── */
.price-breakdown {
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}
.price-breakdown div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  font-size: .86rem;
}
.price-breakdown div:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.07); }
.price-breakdown div span   { color: rgba(255,255,255,.6); }
.price-breakdown div strong { color: #fff; font-weight: 700; }
.price-breakdown div:last-child span,
.price-breakdown div:last-child strong { font-weight: 800; font-size: .95rem; }
.price-breakdown div:last-child strong { color: #6ee7b7; }

/* ── Payment methods ───────────────────────────────────────────────── */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pay-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .7rem .9rem;
  cursor: pointer;
  font-size: .84rem;
  color: rgba(255,255,255,.8);
  transition: background .12s, border-color .12s;
}
.pay-option:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.pay-option input { accent-color: var(--blue-bright); flex-shrink: 0; }
.pay-option small { color: rgba(255,255,255,.45); font-size: .76rem; }

/* ── Terms checkboxes ──────────────────────────────────────────────── */
.terms-checks {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.1rem;
}
.terms-checks .coupon-toggle-label { font-size: .8rem; }
.terms-checks .coupon-toggle-label a { color: #93c5fd; }

/* ── Payment action row ────────────────────────────────────────────── */
.payment-action-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.complete-registration-btn {
  flex: 1;
  min-height: 52px;
  min-width: 160px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, #0d3b8e 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity .15s, transform .1s;
}
.complete-registration-btn:hover { opacity: .92; transform: translateY(-1px); }
.complete-registration-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.secure-payment-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.secure-payment-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
}
.secure-payment-badge strong { display: block; font-size: .78rem; color: rgba(255,255,255,.8); }
.secure-payment-badge small  { font-size: .71rem; color: rgba(255,255,255,.42); }

.summary-note {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin-bottom: .4rem;
  line-height: 1.45;
}
.data-disclaimer {
  font-size: .73rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}
.data-disclaimer a { color: rgba(255,255,255,.55); }

/* ── Policy cards ──────────────────────────────────────────────────── */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 3rem;
}
.policy-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border-top: 3px solid var(--teal);
}
.policy-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .85rem;
}
.policy-card ul {
  margin: 0;
  padding-left: 1.1rem;
}
.policy-card li {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: .4rem;
}
.policy-card a { color: var(--blue-bright); }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .reg-layout {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    gap: 24px;
  }
  .summary-card {
    position: static;
    max-height: none;
  }
  .reg-hero-inner { grid-template-columns: 1fr; }
  .reg-hero-card  { max-width: 100%; }
}
@media (max-width: 680px) {
  .reg-hero, .reg-section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .registration-package { grid-template-columns: 1fr; }
  .package-price { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: .6rem; }
  .select-package-btn { width: auto; min-width: 130px; }
  .policy-grid { grid-template-columns: 1fr; }
  .payer-fields-grid,
  .group-attendee-fields,
  .name-row,
  .review-grid,
  .review-attendee-grid { grid-template-columns: 1fr; }
  .registration-step-tab { font-size: .7rem; gap: 5px; }
}
