/* ════════════════════════════════════════════════════════════════════
   Book-a-call page only
════════════════════════════════════════════════════════════════════ */

body.page-book {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(30,20,80,0.45) 0%, transparent 70%);
  background-size: 22px 22px, 100% 100%;
  background-attachment: fixed;
}

/* Ambient orbit rings (decorative) */
.orbit-bg {
  position: fixed;
  top: 50%; left: -10%;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 0;
}
.orbit-bg .ring {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.05);
}
.orbit-bg .r1 { width: 40vmin; height: 40vmin; }
.orbit-bg .r2 { width: 70vmin; height: 70vmin; border-color: rgba(255,255,255,0.035); }
.orbit-bg .r3 { width: 100vmin; height: 100vmin; border-color: rgba(255,255,255,0.02); }

.book-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ── LEFT — Info column ────────────────────────────────────────── */
.info-col { padding-top: 20px; animation: bookSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes bookSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(251,187,33,0.3);
  border-radius: 100px;
  background: rgba(251,187,33,0.08);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: bookPulse 1.8s ease-in-out infinite;
}
@keyframes bookPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.subheadline {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 520px;
}

.benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.benefit { display: flex; align-items: flex-start; gap: 14px; }
.benefit-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(251,187,33,0.14);
  border: 1px solid rgba(251,187,33,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.benefit-check svg {
  width: 12px; height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-text { font-size: 0.94rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
.benefit-text strong { color: #fff; font-weight: 700; }

.call-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.pill svg {
  width: 13px; height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; opacity: 0.7; }
.trust-logos picture img,
.trust-logos img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.85;
  transition: opacity .2s, filter .2s;
}
.trust-logos picture img:hover,
.trust-logos img:hover { opacity: 1; filter: grayscale(0) brightness(1); }

/* ── RIGHT — Calendly column ───────────────────────────────────── */
.calendly-col {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 12px;
  overflow: hidden;
  animation: bookSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards;
}
.calendly-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.calendly-header-left { display: flex; align-items: center; gap: 10px; }
.calendly-dot-row { display: flex; gap: 5px; }
.calendly-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.calendly-dot:nth-child(1) { background: #ef4444; }
.calendly-dot:nth-child(2) { background: var(--gold); }
.calendly-dot:nth-child(3) { background: #22c55e; }
.calendly-header-title { font-size: 0.75rem; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.calendly-header-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: bookPulse 1.8s ease-in-out infinite;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: 12px;
  overflow: hidden;
}

/* ── Reassurance strip ─────────────────────────────────────────── */
.reassure {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.reassure-item { display: flex; gap: 14px; align-items: flex-start; }
.reassure-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reassure-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reassure-title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.reassure-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ════════════════════════════════════════════════════════════════════
   THANK-YOU PAGE  (Calendly success redirect)
════════════════════════════════════════════════════════════════════ */
.ty-page {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 24px 60px;
}

/* ── Hero block ───────────────────────────────────────────────── */
.ty-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  animation: bookSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ty-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: tyCheckPop 0.55s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s both;
}
@keyframes tyCheckPop {
  from { transform: scale(0.3); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.ty-check::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.25);
  animation: tyCheckRing 1.6s ease-out infinite;
  pointer-events: none;
}
@keyframes tyCheckRing {
  0%   { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.3);  opacity: 0;   }
}
.ty-check svg {
  width: 40px; height: 40px;
  stroke: #4ade80;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ty-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 100px;
  background: rgba(34,197,94,0.08);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 20px;
}
.ty-eyebrow-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: bookPulse 1.8s ease-in-out infinite;
}

.ty-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ty-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Section heading ──────────────────────────────────────────── */
.ty-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 8px;
}

/* ── What happens next (3 steps) ─────────────────────────────── */
.ty-next { margin-bottom: 80px; }
.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ty-step {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px 24px;
  transition: border-color .2s, transform .2s;
}
.ty-step:hover {
  border-color: rgba(251,187,33,0.3);
  transform: translateY(-2px);
}
.ty-step-num {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBBB21, #F8B022);
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(251,187,33,0.35);
}
.ty-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
}
.ty-step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.ty-step p strong { color: #fff; font-weight: 600; }

/* ── While you wait (3 link cards) ───────────────────────────── */
.ty-while { margin-bottom: 80px; text-align: center; }
.ty-while-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.ty-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.ty-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
}
.ty-card:hover {
  border-color: rgba(251,187,33,0.4);
  background: rgba(251,187,33,0.04);
  transform: translateY(-3px);
}
.ty-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(251,187,33,0.12);
  color: var(--gold);
  margin-bottom: 16px;
}
.ty-card-icon svg { width: 20px; height: 20px; }
.ty-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ty-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.ty-card p em { font-style: normal; color: var(--gold); }
.ty-card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ── Trust strip ──────────────────────────────────────────────── */
.ty-trust {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 60px;
}
.ty-trust-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.ty-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0.7;
}
.ty-trust-logos picture img,
.ty-trust-logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.85;
  transition: opacity .2s, filter .2s;
}
.ty-trust-logos picture img:hover,
.ty-trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* ── Back button row ─────────────────────────────────────────── */
.ty-back {
  text-align: center;
  padding-bottom: 20px;
}

/* ── Legacy .ty-wrap (kept for 404.php) ───────────────────────── */
.ty-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  text-align: center;
  animation: bookSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Policy / 404 variant ─────────────────────────────────────── */
.legal-wrap {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.legal-wrap h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-wrap .updated {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.legal-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
}
.legal-wrap p,
.legal-wrap li {
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-wrap ul { padding-left: 1.4rem; margin-bottom: 16px; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .book-wrap { grid-template-columns: 1fr; gap: 40px; padding: 100px 24px 40px; }
  .reassure { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
  .ty-steps { grid-template-columns: 1fr; gap: 16px; }
  .ty-cards { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 640px) {
  .headline { font-size: 2rem; }
  .calendly-inline-widget { height: 640px; }
  .orbit-bg { display: none; }
  .ty-page { padding: 120px 20px 40px; }
  .ty-hero { margin-bottom: 60px; }
  .ty-next, .ty-while { margin-bottom: 60px; }
  .ty-trust-logos { gap: 22px; }
  .ty-trust-logos picture img,
  .ty-trust-logos img { height: 20px; }
}
