/* ============================================================
   Reserve / Checkout page styles
   ============================================================ */

body.page-reserve {
  background: linear-gradient(180deg, #fafaf7 0%, #fff 50%);
  padding-bottom: 100px; /* space for mobile sticky bar */
}

/* Minimal nav */
.rsv-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.rsv-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
}
.rsv-back {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
  transition: color .15s ease;
}
.rsv-back:hover { color: var(--primary); }

/* Layout */
.rsv-main { padding: 40px 0 60px; }
.rsv-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: flex-start;
}

/* LEFT — form / bonuses */
.rsv-left {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.rsv-eye {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.rsv-h1 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.rsv-now {
  color: var(--primary);
}
.rsv-strike {
  font-size: 0.7em;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 6px;
}
.rsv-sub {
  font-size: 15.5px;
  color: var(--text-2);
  margin: 0 0 22px;
  line-height: 1.55;
}
.rsv-sub strong { color: var(--text); }

/* Live FOMO */
.rsv-fomo {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.rf-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f7fdfb;
  border: 1px solid #c7f0d7;
  color: var(--text);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
}
.rf-row strong { color: var(--primary-dark); font-weight: 800; }
.rf-row-warn {
  background: #fff5f0;
  border-color: #ffd0bf;
}
.rsv-clock { font-size: 14px; }

/* Form fields */
.rsv-form { margin-bottom: 32px; }
.rsv-field {
  margin-bottom: 18px;
}
.rsv-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.rsvf-mini {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0;
  margin-left: 4px;
}
.rsv-field input[type="text"],
.rsv-field input[type="email"],
.rsv-field input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  font-size: 15.5px;
  font-family: inherit;
  color: var(--text);
  background: #fafaf7;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.rsv-field input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}
.rsv-field input:invalid:not(:placeholder-shown) {
  border-color: #fcd5d5;
}
.rsv-field small {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 6px;
}

.rsv-phone-row {
  display: flex;
  align-items: stretch;
}
.rsv-cc {
  display: inline-flex;
  align-items: center;
  background: #f0efe9;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.rsv-phone-row input { border-radius: 0 10px 10px 0; flex: 1; }

/* Radio group */
.rsv-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rsv-radio {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.rsv-radio input { position: absolute; opacity: 0; pointer-events: none; }
.rsv-radio span {
  display: inline-block;
  padding: 9px 14px;
  background: #fafaf7;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .15s ease;
}
.rsv-radio input:checked + span {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* UPSELL */
.rsv-upsell {
  margin-top: 28px;
  position: relative;
}
.rsv-upsell-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), #ff8a65);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  box-shadow: 0 8px 16px -8px rgba(255, 87, 34, 0.4);
}
.rsv-upsell-card {
  display: block;
  position: relative;
  background: linear-gradient(135deg, #fff5f0 0%, #fff 60%);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .15s ease;
}
.rsv-upsell-card:hover {
  box-shadow: 0 12px 30px -10px rgba(255, 87, 34, 0.25);
  transform: translateY(-1px);
}
.rsv-upsell-card input {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
  cursor: pointer;
}
.rsv-upsell-card .ru-body { padding-left: 34px; }
.ru-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.ru-head strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: block;
}
.ru-head strong em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
  font-size: 1.05em;
}
.ru-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.ru-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ru-strike {
  font-size: 12.5px;
  color: var(--text-3);
  text-decoration: line-through;
}
.ru-now {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.ru-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin: 8px 0;
  line-height: 1.55;
}
.ru-desc strong { color: var(--text); }
.ru-checks {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.ru-checks li {
  font-size: 12.5px;
  color: var(--text-2);
  padding: 3px 0;
}
.ru-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}
.ru-note strong { color: var(--primary-dark); }
.rsv-upsell-card:has(input:checked) {
  background: linear-gradient(135deg, #ffe9dc 0%, #fff5f0 70%);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}

/* Bonuses included */
.rsv-bonuses {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px dashed var(--border);
}
.rsv-bonuses h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.rsv-bonuses ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rsv-bonuses li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
}
.rb-tag {
  display: inline-block;
  background: var(--success);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.06em;
}
.rsv-bonuses li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.rsv-bonuses li small {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.rb-val {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-3);
  text-decoration: line-through;
}
.rsv-bonus-foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--primary-soft);
  border-radius: 10px;
  font-weight: 700;
}
.rbf-strike {
  font-size: 14px;
  color: var(--text-3);
  text-decoration: line-through;
}
.rbf-now {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* ============ RIGHT — Order Summary ============ */
.rsv-right { position: sticky; top: 84px; }
.rsv-summary {
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 20px 40px -16px rgba(255, 87, 34, 0.15);
}
.rs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.rs-eye {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
}
.rs-cohort {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.rs-cohort strong { color: var(--text); font-weight: 700; }

.rs-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  gap: 12px;
}
.rs-line strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.rs-line small {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 4px;
}
.rs-amt {
  text-align: right;
  white-space: nowrap;
}
.rs-amt .rs-strike {
  font-size: 11.5px;
  color: var(--text-3);
  text-decoration: line-through;
  display: block;
}
.rs-amt > span:last-child {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.rs-line-addon {
  background: var(--primary-soft);
  margin: 4px -8px;
  padding: 12px 12px;
  border-radius: 8px;
  border-bottom: none;
  animation: fadeSlide .25s ease-out;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.rs-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.rs-trow {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}
.rs-discount span:last-child { color: var(--success); font-weight: 700; }
.rs-grand {
  font-size: 17px;
  font-weight: 800;
  margin-top: 4px;
}
.rs-grand span:last-child {
  color: var(--primary);
  letter-spacing: -0.02em;
}

.rsv-pay { margin-top: 4px; }

.rsv-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 18px 0;
  padding: 14px;
  background: var(--bg-soft);
  border-radius: 10px;
}
.rt-row {
  font-size: 12.5px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rsv-countdown {
  text-align: center;
  padding: 14px;
  background: #0e0e10;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
}
.cd-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #ff7a4d;
  margin-bottom: 8px;
  font-weight: 700;
}
.cd-timer {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.cd-timer .cd-item {
  background: #2a2a2a;
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 46px;
}
.cd-timer .cd-item span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cd-timer .cd-item small {
  display: block;
  font-size: 9px;
  color: #a8a8a8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.rsv-social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--text-3);
  padding-top: 4px;
}
.rsv-social strong:first-child { color: #ffb547; font-size: 14px; }
.rsv-social strong:last-child { color: var(--text); }

/* Reassure / testimonials row */
.rsv-reassure {
  margin-top: 36px;
}
.rr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rr-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.rr-stars { color: #ffb547; font-size: 13px; margin-bottom: 8px; }
.rr-card p {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.5;
}
.rr-card small { font-size: 12.5px; color: var(--text-3); }
.rr-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}
.rr-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.rr-author small { font-size: 12.5px; color: var(--text-3); }
.rr-author strong { color: var(--text); font-weight: 700; }

/* Mobile sticky bar */
.rsv-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px -10px rgba(0,0,0,0.1);
  padding: 12px 0;
  z-index: 100;
  display: none;
}
.rss-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.rss-row { display: flex; align-items: baseline; gap: 8px; }
.rss-strike { color: var(--text-3); text-decoration: line-through; font-size: 13px; }
.rss-price { font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.rss-meta { font-size: 12px; color: var(--text-2); display: flex; align-items: center; gap: 6px; margin-top: 2px; }

/* ============================================================
   New: promise banner, cohort bar, 2-tier upgrades, live P&L,
   expanded bonuses, footer
   ============================================================ */

/* No-courses promise banner */
.rsv-promise-banner {
  background: linear-gradient(90deg, #0e0e10 0%, #2a1a14 100%);
  color: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
}
.rsv-pb-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 0 22px;
}
.rsv-pb-icon {
  font-size: 28px;
  background: rgba(255, 87, 34, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 87, 34, 0.3);
}
.rsv-pb-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #d9d9d9;
}
.rsv-pb-text strong:first-child {
  color: #ff7a4d;
  font-weight: 800;
  display: inline;
}
.rsv-pb-text strong { color: #fff; }

/* Cohort bar (3 columns: date / live PnL / founders) */
.rsv-cohort-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin: 18px 0 16px;
}
.rcb-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 4px 8px;
}
.rcb-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.rcb-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.rcb-item small {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 2px;
  line-height: 1.3;
}

/* Section headers within form */
.rsv-section-h {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 30px 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rsv-section-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--success);
  background: var(--success-soft);
  padding: 3px 9px;
  border-radius: 999px;
}
.rsv-section-sub {
  font-size: 13px;
  color: var(--text-3);
  margin: 0 0 14px;
}

/* Upgrade card (Plus / Quarter) — replaces .rsv-upsell-card pattern */
.rsv-upgrade {
  display: block;
  position: relative;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
  margin-bottom: 12px;
}
.rsv-upgrade:hover { border-color: var(--primary); transform: translateY(-1px); }
.rsv-upgrade input[type="checkbox"] {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
  cursor: pointer;
}
.rsv-upgrade .ru-body { padding-left: 34px; }
.rsv-upgrade.is-selected {
  background: linear-gradient(135deg, #fff5f0 0%, #fff 70%);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}
.rsv-upgrade[data-tier="plus"] { border-color: rgba(255, 87, 34, 0.4); }
.rsv-upgrade[data-tier="quarter"] { border-color: rgba(59, 130, 246, 0.3); }
.rsv-upgrade[data-tier="quarter"].is-selected {
  background: linear-gradient(135deg, #eff6ff 0%, #fff 70%);
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.ru-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.ru-pill-orange {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 12px -4px rgba(255, 87, 34, 0.4);
}
.ru-pill-blue {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 6px 12px -4px rgba(59, 130, 246, 0.4);
}
.ru-off {
  display: inline-block;
  background: var(--success-soft);
  color: var(--success);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Expanded bonuses list — same patterns, but more rows */
.rsv-bonuses h3 .rsb-strike {
  font-size: 0.85em;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 700;
}
.rsb-noteline {
  background: #fff8eb;
  border: 1px solid #fed7aa;
  color: #92400e;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  margin: 8px 0 12px;
}
.rsb-noteline strong { color: #b45309; font-weight: 800; }
.rsb-list { padding-top: 4px; }
.rb-tag-hot {
  background: var(--primary) !important;
  box-shadow: 0 4px 10px -2px rgba(255, 87, 34, 0.4);
}

/* Live P&L promise card */
.rsv-live-pnl { padding: 30px 0 8px; }
.rlp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  box-shadow: var(--shadow);
}
.rlp-left {
  padding: 32px;
}
.rlp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.rlp-left h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.rlp-left p {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.55;
}
.rlp-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-2);
}
.rlp-right {
  background: linear-gradient(135deg, #0e0e10 0%, #1a1612 100%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rlp-pnl {
  background: #1a1a1c;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  color: #fff;
}
.rlp-pnl-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12.5px;
  color: #a8a8a8;
  letter-spacing: 0.04em;
}
.rlp-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff7a4d;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
}
.rlp-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px dashed #2a2a2a;
  color: #d9d9d9;
}
.rlp-row .up { color: #34d399 !important; font-weight: 700; }
.rlp-flat { color: #a8a8a8; font-weight: 600; }
.rlp-foot {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px solid #2a2a2a;
  font-size: 14.5px;
  color: #fff;
}
.rlp-foot .up.big { color: #34d399 !important; font-size: 17px; letter-spacing: -0.02em; }

/* Footer (mini) */
.rsv-footer {
  background: var(--bg-soft);
  padding-top: 44px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
}
.rsv-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  padding-bottom: 36px;
}
.rsvf-brand p {
  color: var(--text-3);
  font-size: 13.5px;
  margin: 12px 0 0;
  max-width: 280px;
  line-height: 1.55;
}
.rsvf-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rsvf-h {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 10px;
}
.rsvf-cols a {
  display: block;
  font-size: 13.5px;
  color: var(--text-2);
  padding: 3px 0;
  transition: color .15s ease;
}
.rsvf-cols a:hover { color: var(--primary); }
.rsv-footer-disc {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: #fff;
}
.rsv-footer-disc p {
  font-size: 11.5px;
  color: var(--text-3);
  margin: 0 0 6px;
  line-height: 1.6;
}
.rsv-footer-disc strong { color: var(--text-2); }
.rsvf-sub {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 4px;
  line-height: 1.4;
}
.rsvf-entity {
  margin: 8px 0 6px !important;
  font-size: 12px !important;
  color: var(--text-2) !important;
}
.rsvf-entity strong { color: var(--text); font-weight: 700; }

/* ===== Mobile ===== */
@media (max-width: 960px) {
  .rsv-grid { grid-template-columns: 1fr; gap: 22px; }
  .rsv-right { position: static; }
  .rr-grid { grid-template-columns: 1fr; }
  .rsv-cohort-bar { grid-template-columns: 1fr; }
  .rlp-card { grid-template-columns: 1fr; }
  .rlp-left, .rlp-right { padding: 22px; }
  .rsv-footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .rsv-main { padding: 24px 0 40px; }
  .rsv-left { padding: 22px; border-radius: var(--radius); }
  .rsv-summary { padding: 22px; border-radius: var(--radius); }
  .rsv-sticky { display: block; }
  body.page-reserve { padding-bottom: 92px; }
  .rsv-h1 { font-size: 26px; }
  .ru-head { flex-direction: column; }
  .ru-price { align-items: flex-start; flex-direction: row; gap: 8px; flex-wrap: wrap; }
  .rsv-bonuses li { grid-template-columns: 56px 1fr; gap: 8px; }
  .rb-val { grid-column: 2 / 3; padding-top: 4px; }
  .rsv-back { display: none; }
  .rsv-promise-banner { padding: 14px 0; }
  .rsv-pb-text { font-size: 13px; }
  .rsv-pb-icon { width: 42px; height: 42px; font-size: 22px; }
  .rsv-upgrade { padding: 16px; }
  .rsv-upgrade .ru-body { padding-left: 30px; }
  .rsv-upgrade input[type="checkbox"] { top: 18px; left: 18px; width: 20px; height: 20px; }
  .rsvf-cols { grid-template-columns: 1fr 1fr; }
}
