/* ============================================
   LaunchReady.ai - Book a Call Page Styles
   Only styles unique to the book-a-call page.
   Shared styles live in tokens/base/components.
   ============================================ */

/* ---- Full-page background layers ---- */
.bg-layer {
  position: fixed;
  inset: 0;
  background: url("../assets/embedded/book-a-call-1.jpg") center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.bg-over {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 12, 28, 0.98) 0%,
    rgba(4, 12, 28, 0.9) 100%
  );
  pointer-events: none;
  z-index: 0;
}


/* ---- Page Layout (2-column split) ---- */
.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}


/* ---- Left Column ---- */
.left {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.93;
  letter-spacing: -0.01em;
}

.left h1 em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.left-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.expect-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.expect-title::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: var(--space-xl);
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.expect-list li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.not-right {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem var(--space-md);
}

.not-right-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.not-right-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.not-right-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: 0.875rem;
  flex-wrap: wrap;
}

.nr-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.nr-link:hover {
  opacity: 0.7;
}


/* ---- Right Column ---- */
.right {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Override shared booking-card for this page's glass effect */
.right .booking-card {
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 106, 33, 0.15);
  border-radius: var(--radius-lg);
}

.right .booking-photo {
  width: 52px;
  height: 52px;
  background: var(--surface-deepest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.right .booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.right .booking-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.right .booking-duration::before {
  content: '\23F1';
  font-size: 0.9rem;
}

.embed-note {
  margin-top: var(--space-md);
  padding: 1.25rem var(--space-md);
  background: var(--accent-glow);
  border: 1px solid rgba(242, 106, 33, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.embed-note strong {
  color: var(--accent);
  font-weight: 600;
}

.booking-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ---- Footer override (relative z-index needed) ---- */
.book-page footer {
  position: relative;
  z-index: 1;
}


/* ---- Desktop: 2-column split ---- */
@media (min-width: 768px) {
  .page {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .left {
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-2xl);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }

  .right {
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-xl) var(--space-2xl);
  }
}
