
.freebie-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  padding-top: 80px;
}
.fh-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5vw;
  background: var(--linen-pale);
  border-right: 1px solid var(--linen);
  position: relative;
  overflow: hidden;
}
.fh-left::before {
  content: 'FREE';
  position: absolute;
  bottom: -2rem; right: -1rem;
  font-family: var(--heading);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255,27,129,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.fh-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw 5rem 4rem;
  background: var(--white);
}

/* Book cover mockup */
.book-mockup {
  width: 200px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--pink) 0%, #cc1567 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 16px 16px 48px rgba(255,27,129,0.25), -4px -4px 16px rgba(255,255,255,0.7);
  margin: 0 auto 2.5rem;
}
.book-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 6px;
  background: rgba(0,0,0,0.15);
}
.book-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.book-mockup h3 {
  color: white;
  font-size: 1rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
}
.book-mockup p {
  color: rgba(255,255,255,0.82);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.book-author {
  position: absolute;
  bottom: 1.1rem;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  z-index: 1;
}

/* Bullet list */
.guide-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.8rem;
  position: relative;
  z-index: 1;
}
.guide-bullet {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.guide-bullet-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.guide-bullet span { font-size: 0.84rem; color: var(--grey); }

/* Quote block */
.kristy-quote {
  margin-top: 2.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--pink-dim);
  border-left: 3px solid var(--pink);
  position: relative;
  z-index: 1;
}
.kristy-quote p { font-size: 0.84rem; font-style: italic; color: var(--black); font-family: var(--heading); }
.kristy-quote cite { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); margin-top: 0.4rem; display: block; font-style: normal; }

/* GHL iframe form */
.form-wrap-freebie {
  background: var(--white);
  border: 1px solid var(--linen);
  position: relative;
}
.form-wrap-freebie::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
}
.form-wrap-freebie iframe {
  width: 100%;
  min-height: 432px;
  border: none;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ── FORM SKELETON — shown while the third-party form loads ── */
.form-skeleton { padding: 2rem; }
.fskel-row { margin-bottom: 1.1rem; }
.fskel-label {
  width: 90px; height: 10px; border-radius: 4px; margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #ececec 25%, #f6f6f6 37%, #ececec 63%);
  background-size: 400% 100%; animation: fskelShimmer 1.4s ease infinite;
}
.fskel-input {
  width: 100%; height: 44px; border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 37%, #f0f0f0 63%);
  background-size: 400% 100%; animation: fskelShimmer 1.4s ease infinite;
}
.fskel-btn {
  width: 140px; height: 46px; border-radius: 6px; margin-top: 0.5rem;
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 37%, #e8e8e8 63%);
  background-size: 400% 100%; animation: fskelShimmer 1.4s ease infinite;
}
.fskel-note {
  margin-top: 1.2rem; font-size: 0.72rem; color: var(--grey);
  text-align: center;
}
@keyframes fskelShimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .fskel-label, .fskel-input, .fskel-btn { animation: none; background: #eee; }
}

@media (max-width: 860px) {
  .freebie-hero { grid-template-columns: 1fr; min-height: auto; }
  .fh-left, .fh-right { padding: 4rem 1.5rem; }
}
