/* ════════════════════════════════════════════
   FAIR – Member Card System  |  style.css
   Brand palette:
     --blue-deep   #0663C9  (primary gradient from)
     --blue-mid    #0A48A5  (primary gradient to)
     --navy        #143B86  (dark sections)
     --navy-dark   #0D245C  (footer / deepest)
     --card-blue   #294A90  (card bg)
     --pink        #FF5FA0  (accent)
     --bg          #F3F5F9  (page bg)
   ════════════════════════════════════════════ */

:root {
  --blue-deep:   #0663C9;
  --blue-mid:    #0A48A5;
  --navy:        #143B86;
  --navy-dark:   #0D245C;
  --card-blue:   #294A90;
  --card-blue-2: #2D4F99;
  --pink:        #FF5FA0;
  --pink-light:  #FF6FA8;
  --bg:          #F3F5F9;
  --white:       #FFFFFF;
  --white-80:    rgba(255,255,255,0.80);
  --white-60:    rgba(255,255,255,0.60);
  --white-20:    rgba(255,255,255,0.20);
  --border-card: rgba(255,255,255,0.15);
  --shadow-card: 0 8px 32px rgba(6,99,201,0.18);
  --shadow-lg:   0 16px 48px rgba(13,36,92,0.22);
  --radius:      16px;
  --radius-sm:   10px;
  --font:        'Heebo', sans-serif;
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--navy-dark);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--white-20);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.1;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.12em;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* nav-link-admin hidden from public */
.nav-link-admin { display: none; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-mid) 50%, var(--navy) 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 80%, rgba(255,95,160,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 10%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}
.hero-deco-1 {
  width: 500px; height: 500px;
  background: var(--pink);
  top: -200px; left: -150px;
}
.hero-deco-2 {
  width: 350px; height: 350px;
  background: var(--white);
  bottom: -120px; right: -80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-badge {
  background: var(--white-20);
  color: var(--white);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.hero-accent {
  color: var(--pink);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 520px;
  font-weight: 400;
}

/* Search card */
.search-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  margin-top: 8px;
}

.lookup-form { display: flex; flex-direction: column; gap: 18px; }

.input-group { display: flex; flex-direction: column; gap: 8px; }

.input-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  right: 14px;
  color: var(--blue-mid);
  font-size: 1rem;
  pointer-events: none;
}

.phone-input {
  width: 100%;
  padding: 13px 44px 13px 16px;
  border: 2px solid #DDE3F0;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--navy-dark);
  transition: var(--transition);
  outline: none;
  background: #F8FAFF;
  direction: ltr;
  text-align: center;
}

.phone-input:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(6,99,201,0.12);
}

.phone-input::placeholder { color: #A0AEC0; }

.field-error {
  font-size: 0.8rem;
  color: #E53E3E;
  font-weight: 500;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6,99,201,0.35);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--blue-mid);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: #718096;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: #F7FAFC;
  border-color: #CBD5E0;
}

.btn-full { width: 100%; }

/* Status messages */
.status-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 12px;
}

.status-loading {
  background: rgba(6,99,201,0.08);
  color: var(--blue-mid);
  border: 1px solid rgba(6,99,201,0.2);
}

.status-error {
  background: rgba(229,62,62,0.08);
  color: #C53030;
  border: 1px solid rgba(229,62,62,0.2);
}

.status-preparing {
  background: rgba(72,187,120,0.08);
  color: #276749;
  border: 1px solid rgba(72,187,120,0.25);
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.status-preparing .spinner-green {
  border-color: rgba(72,187,120,0.3);
  border-top-color: #38A169;
  flex-shrink: 0;
  margin-top: 3px;
}

.status-preparing small {
  color: #4a7c5f;
  font-size: 0.82rem;
}

.status-success {
  background: rgba(72,187,120,0.1);
  color: #276749;
  border: 1px solid rgba(72,187,120,0.3);
}

.status-msg a {
  color: inherit;
  font-weight: 700;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--white-20);
  border-top-color: var(--blue-mid);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════
   RESULTS SECTION
══════════════════════════════ */
.results-section {
  padding: 56px 0 72px;
  background: var(--bg);
}

.results-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 520px;
  margin: 0 auto;
}

/* ── ברכה ── */
.welcome-name {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-align: center;
}

/* ── כרטיס תעודה ── */
.cert-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(6,99,201,0.08);
  overflow: hidden;
  width: 100%;
}

.cert-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--card-blue) 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.cert-badge {
  margin-right: auto;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
}

/* Canvas – portrait 9:16 */
.canvas-wrapper-portrait {
  width: 100%;
  background: #EEE8FF;
  display: flex;
  justify-content: center;
  padding: 12px;
}

.result-canvas {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* ── כפתור הורדה ── */
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-download:hover {
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
}

/* ── קופסת שוברים ── */
.voucher-info-box {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(6,99,201,0.12);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.voucher-info-icon { font-size: 2.2rem; }

.voucher-info-text {
  font-size: 1rem;
  color: var(--navy-dark);
  line-height: 1.65;
}

.voucher-info-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

/* ── מגזרת שובר ── */
#voucher-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── כותרת שובר – סגולה ── */
.cert-card-header-voucher {
  background: linear-gradient(135deg, #3B1FA0 0%, #6B3DD4 100%);
}

.cert-badge-voucher {
  background: #FF5FA0;
}

/* Canvas – landscape 9:4 */
.canvas-wrapper-landscape {
  width: 100%;
  background: #2A1580;
  display: flex;
  justify-content: center;
  padding: 12px;
}

/* הורד שובר – סגול */
.btn-download-voucher {
  background: linear-gradient(135deg, #3B1FA0, #6B3DD4);
}
.btn-download-voucher:hover {
  background: linear-gradient(135deg, #2A1580, #5025C4);
}

/* ── קופסת מימוש שובר ── */
.voucher-redeem-box {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(107,61,212,0.18);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.voucher-redeem-icon { font-size: 2.2rem; }

.voucher-redeem-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #4B2DB8;
  line-height: 1.5;
}

.voucher-redeem-note {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.6;
  max-width: 520px;
}

/* ── כפתור ווצ'אפ ── */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.btn-whatsapp i { font-size: 1.5rem; flex-shrink: 0; }

/* ── legacy – kept so old refs don't break ── */
.voucher-coming-soon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 20px;
  padding: 12px 16px;
  background: rgba(255,95,160,0.08);
  border: 1px dashed var(--pink);
  border-radius: var(--radius-sm);
  color: var(--pink);
  font-size: 0.88rem;
  font-weight: 600;
}

.material-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(6,99,201,0.1);
  transition: box-shadow var(--transition);
}

.material-card:hover {
  box-shadow: var(--shadow-lg);
}

.card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--card-blue-2) 100%);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  color: var(--pink);
  font-size: 1.2rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}

.card-badge {
  background: var(--white-20);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  letter-spacing: 0.04em;
}

.card-badge-pink {
  background: var(--pink);
  border-color: var(--pink-light);
}

.canvas-wrapper {
  padding: 20px;
  background: #F8FAFF;
  border-bottom: 1px solid #EEF2FF;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.result-canvas {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.card-actions {
  padding: 18px 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-actions .btn-primary,
.card-actions .btn-secondary {
  flex: 1;
  font-size: 0.875rem;
  padding: 11px 14px;
}

/* Info strip */
.info-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-top: 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-80);
  font-size: 0.88rem;
}

.info-icon {
  color: var(--pink);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════
   HOW LABEL (subtitle under hero title)
══════════════════════════════ */
.how-label {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin: 0 0 0;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* hero-subtitle when it appears after how-inline (before the form) */
.how-inline + .hero-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}

/* ══════════════════════════════
   CONTACT SECTION (standalone, above footer)
══════════════════════════════ */
.contact-section {
  background: var(--navy-dark);
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-section-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-section-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink-light);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-section-email:hover {
  color: #fff;
}

/* ══════════════════════════════
   HOW IT WORKS – INLINE (inside hero)
══════════════════════════════ */
.how-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px auto 8px;
  max-width: 700px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}

.how-inline-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  flex: 1;
  min-width: 155px;
}

.how-inline-num {
  width: 28px;
  height: 28px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.how-inline-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.how-inline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.how-inline-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.how-inline-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.3;
}

.how-inline-arrow {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  flex-shrink: 0;
  padding: 0 4px;
}

@media (max-width: 620px) {
  .how-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .how-inline-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
  .how-inline-step {
    min-width: unset;
    width: 100%;
  }
}

/* ══════════════════════════════
   HOW IT WORKS – standalone section
══════════════════════════════ */
.how-section {
  padding: 60px 0 80px;
  background: var(--bg);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 40px;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(6,99,201,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.step-number {
  width: 36px; height: 36px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.step-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.step-desc {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
}

.step-arrow {
  color: #A0AEC0;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .step-arrow { transform: rotate(90deg); }
  .steps-row { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--white-20);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-tagline {
  font-size: 0.5rem;
  color: var(--white-60);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-links { display: flex; gap: 20px; }

.footer-link {
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--pink); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--white-60);
}

/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,36,92,0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px; height: 32px;
  background: #F3F5F9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  transition: var(--transition);
}

.modal-close:hover { background: #E2E8F0; color: var(--navy-dark); }

.modal-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 24px;
}

.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ══════════════════════════════
   UTILITIES
══════════════════════════════ */
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section { padding: 50px 0 70px; }
  .search-card { padding: 24px 20px; }
  .welcome-banner { flex-direction: column; text-align: center; }
  .supporter-tier { align-self: center; }
  .info-strip { flex-direction: column; gap: 14px; }
  .card-actions { flex-direction: column; }
}
