/* ============================================================
   ICTW OFFER LAYER — 2026-07-05
   The site stays about the series; the buyer is never more than
   one click from the funnel. Package cards + sticky offer bar.
   Used on: homepage, /for-parents/, /for-pastors/. NEVER /for-kids/.
   ============================================================ */

/* ── Package section ───────────────────────────────────────── */
.pkg-strip {
  position: relative;
  padding: 90px 24px 100px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(186,145,40,0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--brand-blue-deep, #173a4a) 0%, var(--brand-deep-blue, #254c5f) 100%);
  overflow: hidden;
}
.pkg-head { text-align: center; max-width: 700px; margin: 0 auto 46px; position: relative; z-index: 2; }
.pkg-head .label { color: var(--brand-gold, #f7c86a); }
.pkg-head h2 { color: var(--brand-offwhite, #e0deda); font-size: clamp(30px, 4.6vw, 52px); margin: 12px 0 12px; }
.pkg-head p { color: rgba(224,222,218,0.82); font-size: 17px; line-height: 1.6; font-family: 'PT Serif', serif; }

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1080px; margin: 0 auto; position: relative; z-index: 2;
  align-items: stretch;
}
.pkg-card {
  position: relative; display: flex; flex-direction: column;
  background: rgba(224,222,218,0.045);
  border: 1px solid rgba(224,222,218,0.16);
  border-radius: 18px; padding: 30px 28px 26px; text-align: center;
  transition: transform .35s cubic-bezier(.22,.75,.25,1), box-shadow .35s ease, border-color .35s ease;
}
.pkg-card:hover { transform: translateY(-6px); border-color: rgba(247,200,106,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.pkg-card--hero {
  background: linear-gradient(180deg, rgba(247,200,106,0.10) 0%, rgba(186,145,40,0.06) 100%);
  border: 1.5px solid rgba(247,200,106,0.55);
  box-shadow: 0 18px 60px rgba(247,200,106,0.12);
  transform: scale(1.03);
}
.pkg-card--hero:hover { transform: scale(1.03) translateY(-6px); }
.pkg-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-gold, #f7c86a), var(--brand-mustard, #ba9128));
  color: #1c1a13; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(247,200,106,0.35);
}
.pkg-name {
  font-family: 'Cinzel', serif; font-weight: 800;
  font-size: clamp(19px, 2.2vw, 24px); color: var(--brand-offwhite, #e0deda);
  line-height: 1.2;
}
.pkg-for {
  font-family: 'PT Serif', serif; font-style: italic; font-size: 13.5px;
  color: rgba(224,222,218,0.65); margin-top: 6px;
}
.pkg-items { list-style: none; margin: 20px 0 6px; padding: 0; text-align: left; flex: 1; }
.pkg-items li {
  font-family: 'PT Serif', serif; font-size: 14.5px; line-height: 1.5;
  color: rgba(224,222,218,0.92); padding: 7px 0 7px 26px; position: relative;
  border-bottom: 1px solid rgba(224,222,218,0.07);
}
.pkg-items li:last-child { border-bottom: 0; }
.pkg-items li::before {
  content: "✦"; position: absolute; left: 4px; top: 9px;
  color: var(--brand-gold, #f7c86a); font-size: 11px;
}
.pkg-items li strong { color: var(--brand-gold, #f7c86a); font-weight: 700; }
.pkg-cta {
  display: block; margin-top: 18px;
  background: linear-gradient(135deg, var(--brand-gold, #f7c86a), var(--brand-mustard, #ba9128));
  color: #1c1a13 !important; text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 18px; border-radius: 999px;
  box-shadow: 0 8px 26px rgba(247,200,106,0.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkg-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(247,200,106,0.45); }
.pkg-cta--ghost {
  background: transparent; border: 1.5px solid rgba(224,222,218,0.35);
  color: var(--brand-offwhite, #e0deda) !important; box-shadow: none;
}
.pkg-cta--ghost:hover { border-color: var(--brand-gold, #f7c86a); color: var(--brand-gold, #f7c86a) !important; }
.pkg-note {
  text-align: center; margin-top: 26px; position: relative; z-index: 2;
  font-family: 'PT Serif', serif; font-style: italic; font-size: 14px;
  color: rgba(224,222,218,0.6);
}
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; gap: 26px; }
  .pkg-card--hero { transform: none; order: -1; }
  .pkg-card--hero:hover { transform: translateY(-6px); }
}

/* ── Sticky offer bar (appears after scrolling past the hero) ── */
.offerbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 12px 52px 12px 20px;
  background: linear-gradient(180deg, rgba(23,58,74,0.96), rgba(15,42,55,0.98));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(247,200,106,0.35);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
  transform: translateY(110%);
  transition: transform .5s cubic-bezier(.22,.75,.25,1);
}
.offerbar.on { transform: translateY(0); }
.offerbar-text {
  font-family: 'PT Serif', serif; font-size: 15px; color: var(--brand-offwhite, #e0deda);
  line-height: 1.3;
}
.offerbar-text strong { color: var(--brand-gold, #f7c86a); font-weight: 700; }
.offerbar-cta {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-gold, #f7c86a), var(--brand-mustard, #ba9128));
  color: #1c1a13 !important; text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(247,200,106,0.3);
  transition: transform .25s ease;
  white-space: nowrap;
}
.offerbar-cta:hover { transform: translateY(-2px); }
.offerbar-x {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(224,222,218,0.5);
  font-size: 20px; cursor: pointer; padding: 6px 10px; line-height: 1;
}
.offerbar-x:hover { color: var(--brand-offwhite, #e0deda); }
@media (max-width: 640px) {
  .offerbar { gap: 10px; padding: 10px 44px 10px 14px; }
  .offerbar-text { font-size: 12.5px; }
  .offerbar-text .ob-sub { display: none; }
  .offerbar-cta { font-size: 11px; padding: 10px 16px; }
}

/* ── PAY WHAT YOU WANT — the sliding tool ─────────────────── */
.pwyw {
  position: relative;
  background: linear-gradient(180deg, rgba(247,200,106,0.12) 0%, rgba(186,145,40,0.05) 100%);
  border: 1.5px solid rgba(247,200,106,0.55);
  border-radius: 18px; padding: 30px 28px 26px; text-align: center;
  display: flex; flex-direction: column;
}
.pwyw-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: .26em; text-transform: uppercase; color: var(--brand-gold, #f7c86a);
}
.pwyw-name { font-family: 'Cinzel', serif; font-weight: 800; font-size: clamp(19px,2.2vw,24px); color: var(--brand-offwhite,#e0deda); margin-top: 6px; }
.pwyw-sub { font-family: 'PT Serif', serif; font-style: italic; font-size: 13.5px; color: rgba(224,222,218,0.7); margin-top: 5px; }
.pwyw-price {
  font-family: 'Cinzel', serif; font-weight: 800;
  font-size: clamp(44px, 5.5vw, 64px); color: var(--brand-gold, #f7c86a);
  line-height: 1; margin: 18px 0 4px;
  text-shadow: 0 0 30px rgba(247,200,106,0.35);
  font-variant-numeric: tabular-nums;
}
.pwyw-ship { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: .08em; color: rgba(224,222,218,0.55); }
.pwyw-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; margin: 22px 0 8px;
  background: linear-gradient(90deg, var(--brand-gold,#f7c86a) var(--fill,30%), rgba(224,222,218,0.18) var(--fill,30%));
  outline: none; cursor: pointer; }
.pwyw-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff3d6, var(--brand-gold,#f7c86a) 60%, var(--brand-mustard,#ba9128));
  border: 2px solid rgba(255,246,220,0.9); box-shadow: 0 4px 16px rgba(247,200,106,0.5); cursor: grab; }
.pwyw-slider::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff3d6, #f7c86a 60%, #ba9128);
  border: 2px solid rgba(255,246,220,0.9); box-shadow: 0 4px 16px rgba(247,200,106,0.5); cursor: grab; }
.pwyw-scale { display: flex; justify-content: space-between; font-family: 'Inter',sans-serif; font-size: 10px; letter-spacing: .1em; color: rgba(224,222,218,0.4); }
.pwyw-word {
  min-height: 42px; display: flex; align-items: center; justify-content: center;
  font-family: 'PT Serif', serif; font-style: italic; font-size: 14px; line-height: 1.45;
  color: rgba(224,222,218,0.85); margin: 10px 0 4px; transition: opacity .3s ease;
}
.pwyw .pkg-cta { margin-top: 10px; }

/* trust row at the decision point */
.pkg-trust{max-width:820px;margin:34px auto 0;text-align:center;position:relative;z-index:2;
  font-family:'PT Serif',serif;font-size:14px;line-height:1.7;color:rgba(224,222,218,0.8)}
.pkg-trust em{color:rgba(224,222,218,0.95)}
.pkg-trust strong{color:var(--brand-gold,#f7c86a)}
.pkg-stars{color:var(--brand-gold,#f7c86a);letter-spacing:2px}

/* ── EMAIL UNLOCK GATES ── */
.fp-tab.is-locked{opacity:.45;position:relative;pointer-events:none}
.fp-tab.is-locked::after{content:"🔒";margin-left:7px;font-size:11px}
.gate{max-width:620px;margin:26px auto 0;position:relative;z-index:3;text-align:center;
  background:linear-gradient(180deg,rgba(247,200,106,0.10),rgba(186,145,40,0.05));
  border:1.5px solid rgba(247,200,106,0.45);border-radius:16px;padding:24px 26px;
  transition:opacity .6s ease, transform .6s ease}
.gate--done{opacity:0;transform:translateY(-8px);pointer-events:none;position:absolute;visibility:hidden}
.gate-title{font-family:'Cinzel',serif;font-weight:700;font-size:clamp(17px,2.2vw,22px);color:var(--brand-gold,#f7c86a)}
.gate-sub{font-family:'PT Serif',serif;font-style:italic;font-size:14px;color:rgba(224,222,218,0.8);margin-top:6px;line-height:1.5}
.gate form{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap;justify-content:center}
.gate input[type=email],.gate input[type=text],.gate input[type=tel]{flex:1;min-width:220px;background:rgba(5,7,12,0.4);border:1px solid rgba(224,222,218,0.3);
  border-radius:999px;padding:13px 20px;color:var(--brand-offwhite,#e0deda);font-family:'Inter',sans-serif;font-size:14px;outline:none}
.gate input[type=email]:focus,.gate input[type=text]:focus,.gate input[type=tel]:focus{border-color:var(--brand-gold,#f7c86a)}
.gate button{background:linear-gradient(135deg,var(--brand-gold,#f7c86a),var(--brand-mustard,#ba9128));
  border:none;color:#1c1a13;border-radius:999px;padding:13px 24px;cursor:pointer;
  font-family:'Inter',sans-serif;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  box-shadow:0 6px 20px rgba(247,200,106,0.3);transition:transform .25s ease}
.gate button:hover{transform:translateY(-2px)}
.gate-privacy{font-family:'Inter',sans-serif;font-size:10px;letter-spacing:.06em;color:rgba(224,222,218,0.45);margin-top:10px}
