/* ============================================================
   ENROLL PAGE: pricing table, Wise instructions, group CTA
   ============================================================ */

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: var(--space-sm);
  align-items: stretch;
  max-width: 640px;
  margin: var(--space-md) auto var(--space-sm);
}
.pricing-col-label { grid-column: 1; }
.pricing-header {
  text-align: center;
  font-weight: 800;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: var(--space-xs);
}
.pricing-header.individual { color: var(--brand-blue); }
.pricing-header.group { color: var(--brand-pink); }
.pricing-header .subtitle {
  display: block;
  text-transform: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: normal;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.pricing-row-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card .price-value {
  font-size: var(--text-2xl);
  font-weight: 800;
}
.price-card .price-currency { font-size: var(--text-sm); font-weight: 600; color: var(--color-text-muted); }
.price-card .price-unit { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }

.price-card.best-value {
  border: 2px solid var(--brand-pink);
  background: linear-gradient(160deg, var(--color-surface), var(--color-accent-soft));
  box-shadow: 0 10px 26px rgba(218, 76, 122, 0.22);
}
.price-card .badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-pink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.price-card .price-converted {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 4px;
  min-height: 1.2em;
}

.currency-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  max-width: 640px;
  margin: var(--space-md) auto 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.currency-picker select {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
}
.currency-picker select:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.currency-note {
  max-width: 640px;
  margin: var(--space-md) auto 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.currency-note:empty {
  display: none;
}

@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
  .pricing-col-label { display: none; }
  .pricing-row-label {
    grid-column: 1 / -1;
    margin-top: var(--space-sm);
    font-size: var(--text-base);
  }
}

/* ---- Wise payment instructions ---- */
.wise-instructions {
  max-width: 640px;
  margin: var(--space-xl) auto 0;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Smaller, more personal repeat of the top CTA ---- */
.cta-inline {
  max-width: 480px;
  margin: var(--space-2xl) auto var(--space-lg);
  text-align: center;
}
.cta-inline h2 { font-size: var(--text-xl); margin-bottom: var(--space-xs); }
.cta-inline p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
