/* ============================================================
   checkout-pages.css — The Zen Block Checkout Pages
   Covers: zenblocklite, zenblockpaymentplan, zenblockultraliteaccess,
           zenblockvipcoaching, anna-in-your-pocket-thankyou
   ============================================================ */

:root {
  --navy: #0f1b3d;
  --navy-mid: #0d1a36;
  --gold: #C4956A;
  --cream: #F5F0E8;
  --white: #ffffff;
  --text-dark: #0f1b3d;
  --text-mid: #555;
  --text-light: #888;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Georgia', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ─────────────────────────────────────────── */
.zb-nav {
  background: var(--navy);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.zb-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zb-nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.zb-nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}
.zb-nav-logo::after {
  content: "The Zen Block";
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ── Hero Section ────────────────────────────────────────── */
.zb-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zb-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.zb-hero .zb-container {
  position: relative;
  z-index: 1;
}
.zb-hero .zb-kicker {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.3);
  margin-bottom: 20px;
}
.zb-hero h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 16px 0;
}
.zb-hero h1 span {
  color: var(--gold);
}
.zb-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 10px;
  line-height: 1.65;
}

/* ── Container ───────────────────────────────────────────── */
.zb-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* ── Checkout Wrap ───────────────────────────────────────── */
.zb-checkout-wrap {
  padding: 56px 24px;
  background: var(--cream);
}
.zb-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .zb-checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Offer Card ──────────────────────────────────────────── */
.zb-offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.zb-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.zb-pill--green {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.3);
}
.zb-pill--gold {
  background: rgba(212,175,55,0.12);
  color: #b8960c;
  border: 1px solid rgba(212,175,55,0.3);
}
.zb-offer-card h2 {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px 0;
  line-height: 1.25;
}
.zb-offer-card h2 span {
  color: var(--gold);
}
.zb-price-single {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.zb-price-single strong {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.zb-price-single span {
  font-size: 15px;
  color: var(--text-light);
}
.zb-offer-intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 12px 0;
}
.zb-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 24px 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.zb-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}
.zb-check-list li {
  font-size: 14px;
  color: var(--text-dark);
  padding: 6px 0 6px 26px;
  position: relative;
  line-height: 1.5;
}
.zb-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.zb-no-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zb-no-list li {
  font-size: 14px;
  color: var(--text-light);
  padding: 5px 0 5px 26px;
  position: relative;
  line-height: 1.5;
}
.zb-no-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
}

/* ── Checkout Card ───────────────────────────────────────── */
.zb-checkout-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}
.zb-access-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.zb-access-box strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.zb-access-box span {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.zb-checkout-card h3 {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px 0;
}
.zb-checkout-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 12px 0;
}
.zb-checkout-box {
  margin: 20px 0;
}
.zb-checkout-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

/* ── Sign-up Strip ───────────────────────────────────────── */
.zb-signup-strip {
  background: var(--gold);
  padding: 24px;
  text-align: center;
}
.zb-signup-strip h2 {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: 1px;
}

/* ── Thank You Page ──────────────────────────────────────── */
.zb-thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.zb-thankyou-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--gold);
}
.zb-thankyou-icon {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
}
.zb-thankyou-card h1 {
  font-family: 'Georgia', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px 0;
}
.zb-thankyou-card .zb-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  margin: 0 0 32px 0;
  line-height: 1.6;
}
.zb-step {
  background: var(--cream);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.zb-step-num {
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zb-step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px 0;
}
.zb-step-content p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}
.zb-step-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}
.zb-download-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.zb-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.zb-btn:hover { opacity: 0.85; }
.zb-btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.zb-btn--navy {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.zb-btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .zb-hero { padding: 48px 20px 40px; }
  .zb-checkout-wrap { padding: 32px 16px; }
  .zb-offer-card, .zb-checkout-card { padding: 24px 20px; }
  .zb-thankyou-card { padding: 32px 20px; }
  .zb-checkout-grid { gap: 20px; }
  .zb-download-btns { flex-direction: column; }
}
