/* register.css */
:root {
  --walk:  #F5C518;
  --run10: #1A73E8;
  --semi:  #C0392B;
  --dark:  #0a0a0a;
  --gray:  #6b7280;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
  --card-bg: rgba(15,15,15,0.72);
  --card-border: rgba(255,255,255,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  pointer-events: none;
  z-index: 0;
}
.hero, .page-body { position: relative; z-index: 1; }

/* ── LANG SWITCHER ── */
.lang-bar { position: absolute; top: 16px; right: 20px; z-index: 10; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.22);
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── HERO ── */
.hero { color: var(--white); position: relative; overflow: hidden; }
.hero-accent-bar { height: 5px; background: linear-gradient(90deg, var(--walk) 0%, var(--run10) 50%, var(--semi) 100%); }
.hero-inner {
  position: relative; max-width: 860px; margin: 0 auto;
  padding: 56px 32px 52px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
}
.hero-flag { display: flex; gap: 7px; margin-bottom: 4px; }
.hero-flag span { width: 30px; height: 6px; border-radius: 3px; }
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.8rem, 7vw, 4.6rem); font-weight: 900; line-height: 0.93; letter-spacing: -1px; text-transform: uppercase; }
.hero-title em { font-style: italic; color: var(--semi); }
.hero-subtitle { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 10px; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.hero-meta-item strong { color: var(--white); font-weight: 600; }
@media (max-width: 480px) {
  .hero-inner { padding: 44px 20px 40px; }
  .hero-meta { gap: 14px; }
  .hero-meta-item { font-size: 0.8rem; }
}

/* ── PAGE BODY ── */
.page-body { background: transparent; }
.form-wrap { max-width: 720px; margin: 0 auto; padding: 40px 20px 100px; }
@media (min-width: 780px) { .form-wrap { padding: 52px 32px 100px; } }

/* ── ALERTS ── */
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 0.875rem; display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.alert-error   { background: rgba(185,28,28,0.35); color: #fca5a5; border-left: 4px solid #ef4444; }
.alert-warning { background: rgba(120,53,15,0.35); color: #fcd34d; border-left: 4px solid #f59e0b; }
.alert-info    { background: rgba(30,64,175,0.35); color: #93c5fd; border-left: 4px solid #3b82f6; }

/* ── SECTION CARD ── */
.section-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
}
.section-head { padding: 20px 28px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 14px; }
.section-num {
  width: 32px; height: 32px; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; flex-shrink: 0;
}
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
.section-body { padding: 26px 28px; }
@media (max-width: 480px) {
  .section-head { padding: 16px 20px 14px; }
  .section-body { padding: 20px; }
}

/* ── EVENT PILLS ── */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 560px) { .event-grid { grid-template-columns: 1fr; gap: 10px; } }
.event-pill {
  border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 20px 18px 18px;
  cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  position: relative; background: rgba(255,255,255,0.06);
}
@media (max-width: 560px) {
  .event-pill { flex-direction: row; align-items: center; padding: 16px 18px; gap: 14px; }
  .event-color-bar { width: 5px; height: 48px; border-radius: 3px; flex-shrink: 0; }
}
.event-pill input[type=radio] { display: none; }
.event-pill:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.event-pill.selected { border: 2px solid #fff; background: rgba(255,255,255,0.14); box-shadow: 0 0 0 3px rgba(255,255,255,0.12), 0 6px 20px rgba(0,0,0,0.3); transform: translateY(-2px); }
.event-pill.full { opacity: 0.35; pointer-events: none; }
.event-color-bar { width: 40px; height: 5px; border-radius: 3px; }
.event-pill-distance { font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; font-weight: 900; line-height: 1; color: #fff; }
.event-pill-label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.event-pill-cap { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.event-pill-cap.warn { color: #fbbf24; font-weight: 700; }
.event-pill-cap.full-tag { background: rgba(185,28,28,0.4); color: #fca5a5; padding: 2px 8px; border-radius: 100px; font-weight: 700; font-size: 0.68rem; }
.check-mark { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; background: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; color: #0a0a0a; font-size: 0.65rem; }
.event-pill.selected .check-mark { display: flex; }

/* ── FIELDS ── */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-row:last-child { margin-bottom: 0; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field-group { margin-bottom: 16px; }
.field-group:last-child { margin-bottom: 0; }
.field-label { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.9px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.field-label .opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.45); font-size: 0.71rem; }
.field-input {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  font-size: 1rem; font-family: 'Barlow', sans-serif; background: rgba(255,255,255,0.08); color: #fff;
  transition: border-color .15s, background .15s; appearance: none; -webkit-appearance: none;
}
.field-input::placeholder { color: rgba(255,255,255,0.35); }
.field-input:focus { outline: none; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.13); box-shadow: 0 0 0 3px rgba(255,255,255,0.06); }
.field-input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.6); }
.field-error { color: #fca5a5; font-size: 0.75rem; margin-top: 5px; }
.field-hint  { color: rgba(255,255,255,0.45); font-size: 0.73rem; margin-top: 5px; }
.section-hint { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 22px; line-height: 1.55; }
.field-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 20px 0; }

/* ── GENDER ── */
.gender-toggle { display: flex; gap: 10px; }
.gender-opt { flex: 1; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; padding: 13px 12px; text-align: center; cursor: pointer; transition: all .15s; font-weight: 600; font-size: 0.92rem; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.gender-opt input { display: none; }
.gender-opt:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.10); }
.gender-opt.selected { border: 2px solid #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.15); background: rgba(255,255,255,0.9); color: #0a0a0a; }

/* ── SHIRT SIZE ── */
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-opt { border: 1px solid rgba(255,255,255,0.18); border-radius: 9px; padding: 10px 18px; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; transition: all .15s; min-width: 54px; text-align: center; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
.size-opt input { display: none; }
.size-opt:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.10); }
.size-opt.selected { border: 2px solid #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.15); background: rgba(255,255,255,0.9); color: #0a0a0a; }

/* ── PAYMENT ── */
.payment-toggle { display: flex; gap: 12px; margin-bottom: 20px; }
.pay-option { flex: 1; border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 20px 14px; text-align: center; cursor: pointer; transition: all .15s; background: rgba(255,255,255,0.06); }
.pay-option input { display: none; }
.pay-option .pay-icon { font-size: 1.9rem; display: block; margin-bottom: 7px; }
.pay-option .pay-label { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.pay-option .pay-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.pay-option:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.10); }
.pay-option.selected { border: 2px solid #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.12); background: rgba(255,255,255,0.13); }

.upload-area { border: 2px dashed rgba(255,255,255,0.25); border-radius: 14px; padding: 38px 24px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; background: rgba(255,255,255,0.04); }
.upload-area:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.upload-area input { display: none; }
.upload-icon { font-size: 2.2rem; margin-bottom: 10px; }
.upload-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; color: rgba(255,255,255,0.9); }
.upload-hint { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ── CONSENT ── */
.consent-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.consent-row input[type=checkbox] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; accent-color: #fff; cursor: pointer; }
.consent-row label { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; cursor: pointer; }

/* ── SUBMIT ── */
.submit-btn { width: 100%; padding: 20px; background: #fff; color: #0a0a0a; border: none; border-radius: 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; transition: opacity .15s, transform .1s; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.submit-btn:hover { opacity: 0.90; }
.submit-btn:active { transform: scale(0.99); }

/* ── FOOTER ── */
.org-footer { text-align: center; padding: 26px 16px 0; color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.6; }
.org-footer a { color: rgba(255,255,255,0.9); font-weight: 700; text-decoration: none; }
.org-footer a:hover { text-decoration: underline; }

/* single-column on all screen sizes */
.form-wrap { max-width: 720px; margin: 0 auto; padding: 40px 20px 100px; }
@media (min-width: 780px) { .form-wrap { padding: 52px 32px 100px; } }
.hero-accent-bar { height: 5px; background: linear-gradient(90deg, var(--walk) 0%, var(--run10) 50%, var(--semi) 100%); }
.hero-inner {
  position: relative; max-width: 860px; margin: 0 auto;
  padding: 56px 32px 52px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
}
.hero-flag { display: flex; gap: 7px; margin-bottom: 4px; }
.hero-flag span { width: 30px; height: 6px; border-radius: 3px; }
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.8rem, 7vw, 4.6rem); font-weight: 900; line-height: 0.93; letter-spacing: -1px; text-transform: uppercase; }
.hero-title em { font-style: italic; color: var(--semi); }
.hero-subtitle { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 10px; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.hero-meta-item strong { color: var(--white); font-weight: 600; }
@media (max-width: 480px) {
  .hero-inner { padding: 44px 20px 40px; }
  .hero-meta { gap: 14px; }
  .hero-meta-item { font-size: 0.8rem; }
}

/* ── PAGE BODY ── */
.page-body { background: transparent; }
.form-wrap { max-width: 720px; margin: 0 auto; padding: 40px 20px 100px; }
@media (min-width: 780px) { .form-wrap { padding: 52px 32px 100px; } }

/* ── ALERTS ── */
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 0.875rem; display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.alert-error   { background: rgba(185,28,28,0.25); color: #fca5a5; border-left: 4px solid #ef4444; }
.alert-warning { background: rgba(146,64,14,0.25); color: #fcd34d; border-left: 4px solid #f59e0b; }
.alert-info    { background: rgba(30,64,175,0.25); color: #93c5fd; border-left: 4px solid #3b82f6; }

/* ── SECTION CARD ── */
.section-card {
  background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: var(--shadow); margin-bottom: 20px; overflow: hidden;
}
.section-head { padding: 20px 28px 16px; border-bottom: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; gap: 14px; }
.section-num {
  width: 32px; height: 32px; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; flex-shrink: 0;
}
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
.section-body { padding: 26px 28px; }
@media (max-width: 480px) {
  .section-head { padding: 16px 20px 14px; }
  .section-body { padding: 20px; }
}

/* ── EVENT PILLS ── */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 560px) { .event-grid { grid-template-columns: 1fr; gap: 10px; } }
.event-pill {
  border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 20px 18px 18px;
  cursor: pointer; transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  position: relative; background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 560px) {
  .event-pill { flex-direction: row; align-items: center; padding: 16px 18px; gap: 14px; }
  .event-color-bar { width: 5px; height: 48px; border-radius: 3px; flex-shrink: 0; }
}
.event-pill input[type=radio] { display: none; }
.event-pill:hover { border-color: rgba(255,255,255,0.45); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.event-pill.selected { border: 2px solid #fff; background: rgba(255,255,255,0.18); box-shadow: 0 0 0 3px rgba(255,255,255,0.15), 0 8px 28px rgba(0,0,0,0.35); transform: translateY(-2px); }
.event-pill.full { opacity: 0.38; pointer-events: none; }
.event-color-bar { width: 40px; height: 5px; border-radius: 3px; }
.event-pill-distance { font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; font-weight: 900; line-height: 1; color: #fff; }
.event-pill-label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.event-pill-cap { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.event-pill-cap.warn { color: #fbbf24; font-weight: 700; }
.event-pill-cap.full-tag { background: rgba(185,28,28,0.4); color: #fca5a5; padding: 2px 8px; border-radius: 100px; font-weight: 700; font-size: 0.68rem; }
.check-mark { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; background: rgba(255,255,255,0.9); border-radius: 50%; display: none; align-items: center; justify-content: center; color: #0a0a0a; font-size: 0.65rem; }
.event-pill.selected .check-mark { display: flex; }

/* ── FIELDS ── */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-row:last-child { margin-bottom: 0; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field-group { margin-bottom: 16px; }
.field-group:last-child { margin-bottom: 0; }
.field-label { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.9px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.field-label .opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.45); font-size: 0.71rem; }
.field-input {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(255,255,255,0.25); border-radius: 10px;
  font-size: 1rem; font-family: 'Barlow', sans-serif; background: rgba(255,255,255,0.12); color: #fff;
  transition: border-color .18s, box-shadow .18s, background .18s; appearance: none; -webkit-appearance: none;
}
.field-input::placeholder { color: rgba(255,255,255,0.4); }
.field-input:focus { outline: none; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.18); box-shadow: 0 0 0 3px rgba(255,255,255,0.08); }
.field-input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.6); }
.field-error { color: #fca5a5; font-size: 0.75rem; margin-top: 5px; }
.field-hint  { color: rgba(255,255,255,0.45); font-size: 0.73rem; margin-top: 5px; }
.section-hint { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 22px; line-height: 1.55; }
.field-divider { height: 1px; background: rgba(255,255,255,0.10); margin: 20px 0; }

/* ── GENDER ── */
.gender-toggle { display: flex; gap: 10px; }
.gender-opt { flex: 1; border: 1px solid rgba(255,255,255,0.22); border-radius: 10px; padding: 13px 12px; text-align: center; cursor: pointer; transition: all .18s; font-weight: 600; font-size: 0.92rem; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.gender-opt input { display: none; }
.gender-opt:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.13); }
.gender-opt.selected { border: 2px solid #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.2); background: rgba(255,255,255,0.92); color: #0a0a0a; }

/* ── SHIRT SIZE ── */
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-opt { border: 1px solid rgba(255,255,255,0.22); border-radius: 9px; padding: 10px 18px; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; transition: all .18s; min-width: 54px; text-align: center; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.size-opt input { display: none; }
.size-opt:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.13); }
.size-opt.selected { border: 2px solid #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.2); background: rgba(255,255,255,0.92); color: #0a0a0a; }

/* ── PAYMENT ── */
.payment-toggle { display: flex; gap: 12px; margin-bottom: 20px; }
.pay-option { flex: 1; border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 20px 14px; text-align: center; cursor: pointer; transition: all .18s; background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.pay-option input { display: none; }
.pay-option .pay-icon { font-size: 1.9rem; display: block; margin-bottom: 7px; }
.pay-option .pay-label { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.pay-option .pay-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.pay-option:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }
.pay-option.selected { border: 2px solid #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.15), 0 4px 18px rgba(0,0,0,0.25); background: rgba(255,255,255,0.16); }

.upload-area { border: 2px dashed rgba(255,255,255,0.3); border-radius: 14px; padding: 38px 24px; text-align: center; cursor: pointer; transition: border-color .18s, background .18s; background: rgba(255,255,255,0.05); }
.upload-area:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.10); }
.upload-area input { display: none; }
.upload-icon { font-size: 2.2rem; margin-bottom: 10px; }
.upload-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; color: rgba(255,255,255,0.9); }
.upload-hint { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ── CONSENT ── */
.consent-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: 14px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.consent-row input[type=checkbox] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; accent-color: #fff; cursor: pointer; }
.consent-row label { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; cursor: pointer; }

/* ── SUBMIT ── */
.submit-btn { width: 100%; padding: 20px; background: #fff; color: #0a0a0a; border: none; border-radius: 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; transition: opacity .18s, transform .12s; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.submit-btn:hover { opacity: 0.90; }
.submit-btn:active { transform: scale(0.99); }

/* ── FOOTER ── */
.org-footer { text-align: center; padding: 26px 16px 0; color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.6; }
.org-footer a { color: rgba(255,255,255,0.9); font-weight: 700; text-decoration: none; }
.org-footer a:hover { text-decoration: underline; }


/* ── HERO CONTACT BAR ── */
.hero-contact-bar {
  width: 100%;
  text-align: center;
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

/* ── PAYMENT INSTRUCTIONS ── */
.pay-instructions {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.pay-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  gap: 6px;
}

.pay-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 16px 0;
}

.pay-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.pay-network {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.pay-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.2;
}

.pay-recipient {
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 600;
}
