/* ════════════════════════════════════════════════════════
   BOTSPOT CTA PAGES — shared layout CSS
   (tokens, type scale, buttons, keyframes, nav, footer
    are already handled by child theme style.css)
════════════════════════════════════════════════════════ */

/* ── Page-gutter for CTA templates ── */
.page-hero { --cta-gutter: 6%; }

/* ── Page hero — full-width section base ── */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--bg-surface); min-height: 100vh;
  display: flex; align-items: center; padding-top: 64px;
}
.page-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 65% 50%, rgba(2,132,199,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 25%, rgba(79,70,229,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 75%, rgba(2,132,199,0.05) 0%, transparent 60%);
}
.page-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(15,30,80,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 55% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 85% at 55% 50%, black 20%, transparent 80%);
}
.page-inner {
  width: 100%; padding: 30px 6% 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}

/* ── Eyebrow ── */
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-raised); border: 1px solid var(--border-strong);
  border-radius: 100px; padding: 5px 14px 5px 8px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px rgba(5,150,105,0.5);
  animation: pulse-dot 2s ease infinite;
}

/* ── Content ── */
.page-headline { margin-bottom: 22px; }
.page-sub {
  font-size: 18px; color: var(--text-secondary);
  max-width: 460px; margin-bottom: 40px; line-height: 1.7;
}

/* ── Feature list ── */
.feat-list { list-style: none; padding: 0; margin: 0 0 36px; }
.feat-li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.feat-li:last-child { border-bottom: none; }
.feat-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon.blue   { background: var(--blue-dim);   border: 1px solid rgba(2,132,199,0.15);  color: var(--blue); }
.feat-icon.indigo { background: var(--indigo-dim);  border: 1px solid rgba(79,70,229,0.15);  color: var(--indigo); }
.feat-icon.green  { background: var(--green-dim);   border: 1px solid rgba(5,150,105,0.15);  color: var(--green); }
.feat-title { font-size: 20px; font-weight: 600; color: var(--text-primary); }
.feat-desc  { font-size: 16px; color: var(--text-muted); line-height: 1.45; margin: 0; }

/* ── Quote block ── */
.quote-block {
  background: var(--bg-raised); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 20px 24px;
}
.quote-text {
  font-size: 18px; color: var(--text-secondary);
  font-style: italic; line-height: 1.6; margin-bottom: 14px;
}
.quote-author { display: flex; align-items: center; gap: 12px; }
.q-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gradient-brand); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display);
  font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0;
}
.q-name { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.q-role { font-size: 14px; color: var(--text-muted); }

/* ── Visual side ── */
.page-visual {
  position: relative; display: flex;
  align-items: flex-start; justify-content: center;
}

/* ── Form card ── */
.form-card {
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl); padding: 30px;
  box-shadow: var(--shadow-lg); width: 100%;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-brand);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.form-card-title {
  font-family: var(--font-display); font-size: 34px; font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 6px;
}
.form-card-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }

/* ── Trust badges ── */
.trust-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-top: 18px; justify-content: center;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 50px; padding: 4px 10px;
}

/* ── GHL iframe wrapper ── */
.ghl-form-wrap { width: 100%; overflow: hidden; border-radius: var(--radius-md); }
.ghl-form-wrap iframe { display: block; width: 100%; border: none; }

/* ── Float badges ── */
.float-badge {
  position: absolute; padding: 8px 14px; border-radius: 100px;
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md); font-family: var(--font-mono);
  font-size: 12px; display: flex; align-items: center; gap: 6px;
  color: var(--text-secondary); white-space: nowrap;
  z-index: 20; animation: float-badge 4s ease-in-out infinite;
}
.fb-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
@keyframes float-badge { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-7px) } }

/* ════════════════════════════════════════════════════════
   REQUEST DEMO page
════════════════════════════════════════════════════════ */
.eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }

.section-label-demo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 14px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); white-space: nowrap;
}
.section-label-demo::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--blue); flex-shrink: 0; }

.page-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-raised); border: 1.5px solid var(--border-strong);
  border-radius: 100px; padding: 5px 16px 5px 10px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.eyebrow-dot-lg {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px rgba(5,150,105,0.55);
  animation: pulse-dot 2s ease infinite; flex-shrink: 0;
}

.rd-page-inner {
  width: 100%; padding: 30px 6% 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: stretch; position: relative; z-index: 2;
}
.rd-page-visual, .rd-page-content { display: flex; flex-direction: column; }
.rd-page-sub {
  font-size: 18px; color: var(--text-secondary);
  margin-bottom: 40px; line-height: 1.7; max-width: 460px;
}

.agenda-list { list-style: none; padding: 0; margin: 0 0 28px; }
.agenda-li {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.agenda-li:last-child { border-bottom: none; }
.agenda-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gradient-brand); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-mono);
  font-size: 16px; font-weight: 600; color: #fff; flex-shrink: 0; margin-top: 2px;
}
.agenda-time {
  font-family: var(--font-mono); font-size: 14px; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px;
}
.agenda-txt { font-size: 18px; font-weight: 600; color: var(--text-primary); }

.rd-form-card {
  background: #fff; border: 1px solid rgba(15,30,80,0.10);
  border-radius: 20px; padding: 32px 32px 24px;
  box-shadow: 0 8px 40px rgba(15,30,80,0.10), 0 1px 6px rgba(15,30,80,0.06);
  width: 100%; position: relative; overflow: hidden; flex: 1;
}
.rd-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0284C7 0%, #4F46E5 100%);
  border-radius: 20px 20px 0 0;
}
.rd-form-card-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: #0F1E3C; letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.2;
}
.rd-form-card-sub { font-size: 16px; color: #8A97B0; margin-bottom: 20px; line-height: 1.5; }
.rd-ghl-wrap { border-radius: 12px; overflow: hidden; padding: 8px; }
.rd-ghl-wrap iframe { display: block; width: 100%; border: none; border-radius: 8px; background: #fff; }
.rd-trust-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.rd-trust-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: #8A97B0;
  background: #F0F5FF; border: 1px solid rgba(15,30,80,0.09);
  border-radius: 50px; padding: 5px 14px;
}

/* ════════════════════════════════════════════════════════
   JOIN WAITLIST page
════════════════════════════════════════════════════════ */
.wl-vis { position: relative; width: 100%; display: flex; flex-direction: column; gap: 16px; }

.position-hero {
  text-align: center; padding: 40px 30px 36px;
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.position-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(135deg, #0284C7, #4F46E5);
}
.position-hero::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-55%); width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.pos-eyebrow {
  font-family: var(--font-mono); font-size: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px;
}
.pos-number {
  font-family: var(--font-display); font-size: 96px; font-weight: 800;
  line-height: 1; letter-spacing: -0.05em;
  background: var(--gradient-brand); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.pos-label { font-size: 16px; color: var(--text-secondary); font-weight: 500; }
.pos-sublabel { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.countdown-strip {
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-around;
  box-shadow: var(--shadow-md);
}
.cnt-unit { text-align: center; }
.cnt-num {
  font-family: var(--font-mono); font-size: 34px; font-weight: 700;
  background: var(--gradient-brand); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.cnt-lbl {
  font-size: 12px; color: var(--text-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-top: 4px;
}
.cnt-sep { font-family: var(--font-mono); font-size: 24px; color: var(--border-strong); font-weight: 500; padding-bottom: 8px; }

.spot-bar-section {
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 18px 22px; box-shadow: var(--shadow-sm);
}
.sbs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sbs-label { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); }
.sbs-count { font-family: var(--font-mono); font-size: 14px; color: var(--blue); font-weight: 600; }
.spot-bar { height: 8px; background: var(--bg-raised); border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.spot-bar-fill {
  height: 100%; border-radius: 4px; background: var(--gradient-brand);
  transition: width 1.4s cubic-bezier(0.34,1.56,0.64,1); width: 0%;
}
.sbs-footer {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
}

.perks-row { display: flex; flex-wrap: wrap; gap: 8px; }
.perk {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-raised); border: 1px solid var(--border-strong);
  border-radius: 50px; padding: 5px 12px; font-size: 12px; font-weight: 500; color: var(--text-secondary);
}

.crumb-badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.crumb-bar {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-raised); border: 1px solid var(--border-strong);
  border-radius: 50px; padding: 6px 14px 6px 12px;
  font-size: 14px; color: var(--text-secondary); font-weight: 500; white-space: nowrap;
}
.crumb-bar strong { color: var(--text-primary); }
.wl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(2,132,199,0.08), rgba(79,70,229,0.08));
  border: 1px solid rgba(79,70,229,0.2); border-radius: 50px;
  padding: 6px 16px; font-size: 14px; font-weight: 600; color: var(--indigo); white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .page-inner,
  .rd-page-inner { grid-template-columns: 1fr; gap: 60px; padding: 80px 5%; }
  .page-sub, .rd-page-sub { max-width: 100%; }
}
@media (max-width: 768px) {
  .eyebrow-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .form-card   { padding: 32px 24px; }
  .rd-form-card { padding: 24px 20px; }
  .countdown-strip { flex-wrap: wrap; gap: 12px; }
  .page-inner,
  .rd-page-inner { padding: 70px 5%; }
}
