/*
 * lp-styles.css — Hanlon Creative Press
 * Landing page styles for HCP Last Class Pack product pages.
 * This file EXTENDS assets/css/styles.css — load both, this one second.
 * Base site variables and components come from styles.css.
 * Only landing-page-specific styles live here.
 */

/* ── URGENCY BANNER ─────────────────────────────────────────────── */
.lp-banner {
  background: var(--hcp-gold);
  color: var(--hcp-navy);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lp-banner__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hcp-navy);
  flex-shrink: 0;
  animation: lp-pulse 1.8s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ── HERO ───────────────────────────────────────────────────────── */
.lp-hero {
  background:
    radial-gradient(circle at 6% 20%, rgba(244,185,66,0.18), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(44,166,164,0.14), transparent 28%),
    linear-gradient(180deg, var(--hcp-cream), #ffffff 70%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--hcp-grey-100);
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}

.lp-hero__h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: 6px;
  line-height: 1.1;
}

.lp-hero__topic {
  display: block;
  font-style: italic;
  color: var(--hcp-teal);
  font-size: 0.82em;
  margin-top: 4px;
  font-weight: 700;
}

.lp-hero__sub {
  font-size: 1.05rem;
  color: var(--hcp-grey-700);
  margin: 16px 0 24px;
  max-width: 560px;
  line-height: 1.7;
}

.lp-hero__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.lp-hero__meta li {
  font-size: 13px;
  font-weight: 600;
  color: var(--hcp-grey-700);
  display: flex;
  align-items: center;
  gap: 7px;
}

.lp-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hcp-teal);
  flex-shrink: 0;
}

.lp-hero__mobile-cta {
  display: none;
}

/* ── PURCHASE CARD ──────────────────────────────────────────────── */
.lp-purchase-card {
  background: var(--hcp-white);
  border: 1px solid var(--hcp-grey-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px; /* clears sticky header */
}

.lp-purchase-card__kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hcp-grey-700);
  margin-bottom: 10px;
}

.lp-purchase-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.lp-purchase-card__price {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--hcp-navy);
  line-height: 1;
}

.lp-purchase-card__vat {
  font-size: 12px;
  color: var(--hcp-grey-700);
  font-weight: 500;
}

.lp-purchase-card__note {
  font-size: 12px;
  color: var(--hcp-grey-700);
  margin-bottom: 18px;
}

.lp-purchase-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.lp-purchase-card__secure {
  font-size: 12px;
  color: var(--hcp-grey-700);
  text-align: center;
  margin-bottom: 16px;
}

.lp-purchase-card--compact {
  position: static;
  box-shadow: var(--shadow-sm);
  max-width: 380px;
}

.lp-divider {
  border: none;
  border-top: 1px solid var(--hcp-grey-100);
  margin: 18px 0;
}

.lp-purchase-card__includes-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hcp-grey-700);
  margin-bottom: 10px;
}

/* ── CHECKLIST ──────────────────────────────────────────────────── */
.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.lp-checklist li {
  font-size: 13px;
  color: var(--hcp-navy);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.5;
}

.lp-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--hcp-teal);
  font-weight: 900;
  font-size: 12px;
}

/* ── LICENCE NOTE ───────────────────────────────────────────────── */
.lp-licence-note {
  background: var(--hcp-soft-gold);
  border-left: 3px solid var(--hcp-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 12px;
  font-size: 12px;
  color: #7a5607;
  font-weight: 500;
}

.lp-licence-note a { color: #7a5607; text-decoration: underline; }

/* ── BAND (quote strip) ─────────────────────────────────────────── */
.lp-band {
  background: var(--hcp-navy);
  padding: 48px 0;
}

.lp-band__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-band__quote {
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--hcp-gold);
  margin-bottom: 14px;
  line-height: 1.3;
}

.lp-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ── COMPONENTS LIST ────────────────────────────────────────────── */
.lp-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  border: 1px solid var(--hcp-grey-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--hcp-grey-100);
}

.lp-component {
  background: var(--hcp-white);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.15s;
}

.lp-component:hover {
  background: var(--hcp-soft-teal);
}

.lp-component__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-component__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--hcp-navy);
  margin-bottom: 4px;
}

.lp-component__desc {
  font-size: 13px;
  color: var(--hcp-grey-700);
  line-height: 1.6;
  margin: 0;
}

/* ── LESSON STEPS ───────────────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.lp-step {
  background: var(--hcp-white);
  border: 1px solid var(--hcp-grey-100);
  border-radius: var(--radius-md);
  padding: 20px 20px 20px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}

.lp-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lp-step__num {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--hcp-grey-300);
  line-height: 1;
  padding: 20px 4px 0 20px;
  flex-shrink: 0;
  min-width: 64px;
  text-align: right;
}

.lp-step__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--hcp-navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-step__time {
  font-size: 11px;
  font-weight: 700;
  background: var(--hcp-soft-teal);
  color: #0a5a58;
  border-radius: 999px;
  padding: 2px 9px;
  letter-spacing: 0.04em;
}

.lp-step__desc {
  font-size: 13px;
  color: var(--hcp-grey-700);
  line-height: 1.6;
  margin: 0;
}

/* ── ANSWER EXAMPLES ────────────────────────────────────────────── */
.lp-example {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 10px;
}

.lp-example__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.lp-example__text {
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.lp-example--basic {
  background: var(--hcp-grey-50);
  border-left: 3px solid var(--hcp-grey-300);
}
.lp-example--basic .lp-example__label { color: var(--hcp-grey-700); }
.lp-example--basic .lp-example__text  { color: var(--hcp-grey-700); }

.lp-example--hanlon {
  background: var(--hcp-soft-blue);
  border-left: 3px solid var(--hcp-blue);
}
.lp-example--hanlon .lp-example__label { color: var(--hcp-blue); }
.lp-example--hanlon .lp-example__text  { color: var(--hcp-navy); }

.lp-example--bradan {
  background: var(--hcp-soft-gold);
  border-left: 3px solid var(--hcp-gold);
}
.lp-example--bradan .lp-example__label { color: #7a5607; }
.lp-example--bradan .lp-example__text  { color: var(--hcp-navy); }

/* ── BOTTOM BUY SECTION ─────────────────────────────────────────── */
.lp-buy-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: var(--hcp-soft-blue);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hcp-grey-100);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__card-wrap {
    order: -1; /* card first on mobile */
  }

  .lp-purchase-card {
    position: static;
    max-width: 480px;
  }

  .lp-hero__mobile-cta {
    display: inline-flex;
    margin-bottom: 8px;
  }

  .lp-buy-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-purchase-card--compact {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .lp-banner {
    font-size: 12px;
    text-align: left;
    justify-content: flex-start;
  }

  .lp-hero {
    padding: 40px 0 36px;
  }

  .lp-components {
    grid-template-columns: 1fr;
  }

  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-buy-bottom {
    padding: 24px 20px;
  }
}
