/* ============================================================
   PRICING CARD DESIGNS — 10 distinct treatments, all on S1 white.
   Same data: Exterior $55 / Full Detail $185 (featured) / Interior $120.
   ============================================================ */

* { box-sizing: border-box; }
.pcd-body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff; color: #0F172A;
}

/* ===== Sticky picker ===== */
.pcd-picker {
  position: sticky; top: 16px; z-index: 100;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  padding: 10px 16px; margin: 16px auto;
  width: fit-content; max-width: calc(100% - 32px);
  background: rgba(15, 18, 28, 0.92); color: #fff;
  border-radius: 999px; backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}
.pcd-picker-label {
  font-size: 11px; letter-spacing: 0.16em; font-weight: 700;
  padding: 0 12px 0 4px; color: rgba(255,255,255,0.55);
}
.pcd-pick-btn {
  appearance: none; border: 0; cursor: pointer;
  font: inherit; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 999px;
  background: transparent; color: rgba(255,255,255,0.78);
  transition: all .25s ease;
}
.pcd-pick-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
.pcd-pick-btn.active { background: #2C86E5; color: #fff; }

/* ===== Section + head (shared across all designs) ===== */
.pcd-section {
  position: relative;
  padding: 80px 0 60px;
  background:
    radial-gradient(60% 55% at 50% 30%, rgba(30, 109, 208, 0.10), transparent 65%),
    linear-gradient(180deg, #EEF3FB 0%, #DCE5F2 100%);
  overflow: hidden;
}
/* Subtle dot grid texture for depth — sits behind everything */
.pcd-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(30, 109, 208, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
/* Soft white wash that fades top→bottom so the section meets adjacent panels gently */
.pcd-section::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 0;
}
.pcd-section > .pcd-container { position: relative; z-index: 1; }
.pcd-container { width: min(1200px, 92%); margin: 0 auto; }
.pcd-head { text-align: center; margin-bottom: 64px; }

/* Premium kicker — small caps + brand-blue divider rules either side */
.pcd-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: #1E6DD0;
  margin: 0 0 18px;
}
.pcd-kicker::before, .pcd-kicker::after {
  content: ''; display: inline-block; height: 1.5px; width: 28px;
  background: #1E6DD0; opacity: .5;
}
/* If using "— text —" style, the dashes already serve as rules — hide pseudo rules */
.pcd-kicker:not(:empty)::before, .pcd-kicker:not(:empty)::after { display: none; }

.pcd-h2 {
  font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; margin: 0 0 16px;
  letter-spacing: -0.02em; line-height: 1.05;
  color: #0F172A;
}
.pcd-h2-accent { color: #1E6DD0; white-space: nowrap; }
.pcd-lede {
  font-size: clamp(15px, 1.4vw, 17px); margin: 0;
  color: #475569; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* Vehicle-size upcharge note below the pricing cards */
.pcd-size-note {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748B;
  letter-spacing: 0.01em;
}
.pcd-size-note strong {
  color: #1E6DD0;
  font-weight: 700;
}

/* "View all packages & add-ons" CTA below pricing cards */
.pcd-more {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pcd-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1E6DD0;
  background: #fff;
  border: 1.5px solid #1E6DD0;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px -8px rgba(30, 109, 208, 0.35);
}
.pcd-more-btn:hover {
  background: #1E6DD0;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(30, 109, 208, 0.5);
}
.pcd-more-btn svg { transition: transform 0.2s ease; }
.pcd-more-btn:hover svg { transform: translateX(3px); }
.pcd-more-sub {
  margin: 0;
  font-size: 13px;
  color: #64748B;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Old script kept as alias for backward compat with showcase pages */
.pcd-script {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 28px); font-weight: 500;
  margin: 0 0 4px; color: #1E6DD0;
}

/* ============================================================
   D1 — PREMIUM TIER (already locked aesthetic, baseline)
   ============================================================ */
.pcd--d1 .pcd-grid { display: grid; grid-template-columns: 1fr 1.06fr 1fr; gap: 22px; align-items: center; }
.pcd--d1 .card {
  position: relative; padding: 38px 32px 32px; border-radius: 18px;
  display: flex; flex-direction: column; gap: 18px; min-height: 460px;
  background: linear-gradient(180deg, #F4F8FE 0%, #E8EFFB 100%);
  border: 1px solid rgba(30, 109, 208, 0.10);
  box-shadow: 0 18px 40px -18px rgba(15, 40, 90, 0.18);
}
.pcd--d1 .card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #2C86E5, #1E6DD0);
  border-radius: 18px 18px 0 0;
}
.pcd--d1 .card.feat::before { background: linear-gradient(90deg, #FFD75A, #FFB833); }
.pcd--d1 .tag {
  display: inline-block; align-self: flex-start;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  padding: 6px 10px; border-radius: 999px;
  background: #1E6DD0; color: #fff;
}
.pcd--d1 .card h3 { font-size: 22px; margin: 4px 0 0; font-weight: 800; }
.pcd--d1 .price { font-size: 56px; line-height: 1; font-weight: 900; color: #1E6DD0; }
.pcd--d1 .price small { font-size: 22px; font-weight: 700; vertical-align: top; }
.pcd--d1 ul { list-style: none; padding: 0; margin: 12px 0 auto; display: flex; flex-direction: column; gap: 14px; }
.pcd--d1 li { font-size: 14px; padding-left: 22px; position: relative; color: #334155; line-height: 1.5; }
.pcd--d1 li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 999px; background: #1E6DD0; }
.pcd--d1 .cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; background: #1E6DD0; color: #fff;
  box-shadow: 0 8px 18px -6px rgba(30,109,208,0.4);
}
.pcd--d1 .card.feat {
  background: linear-gradient(165deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  color: #fff; transform: scale(1.06);
  box-shadow: 0 36px 70px -22px rgba(30, 109, 208, 0.55);
}
.pcd--d1 .card.feat .tag { background: rgba(255,255,255,0.18); }
.pcd--d1 .card.feat .price, .pcd--d1 .card.feat h3 { color: #fff; }
.pcd--d1 .card.feat li { color: rgba(255,255,255,0.92); }
.pcd--d1 .card.feat li::before { background: #fff; }
.pcd--d1 .card.feat .cta { background: #fff; color: #1E6DD0; }

/* ============================================================
   Shared bullet list style for the new D2-D10 designs
   ============================================================ */
.pcd-bullets { list-style: none; padding: 0; margin: 12px 0 auto; display: flex; flex-direction: column; gap: 13px; }
.pcd-bullets li { font-size: 14.5px; line-height: 1.55; padding-left: 22px; position: relative; color: #1E293B; font-weight: 500; }
.pcd-bullets li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 999px; background: #1E6DD0; }

/* ============================================================
   D2 — TIMELINE (vertical process with connecting line)
   3 cards stacked vertically, big step numbers in circles, blue line connecting
   ============================================================ */
.pcd--d2 { max-width: 720px; margin: 0 auto; position: relative; }
.pcd--d2::before {
  content: ''; position: absolute; left: 51px; top: 60px; bottom: 60px; width: 2px;
  background: linear-gradient(180deg, transparent, #1E6DD0 12%, #1E6DD0 88%, transparent);
}
.pcd--d2 .pcd-grid { display: flex; flex-direction: column; gap: 32px; position: relative; }
.pcd--d2 .card {
  display: grid; grid-template-columns: 100px 1fr; gap: 28px;
  position: relative; align-items: flex-start;
}
.pcd--d2 .step {
  width: 100px; height: 100px; border-radius: 999px;
  background: #fff; border: 3px solid #1E6DD0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 700; color: #1E6DD0;
  position: relative; z-index: 1;
  box-shadow: 0 8px 18px -6px rgba(30,109,208,0.25);
}
.pcd--d2 .body {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px;
  padding: 26px 28px; flex: 1;
  box-shadow: 0 14px 30px -16px rgba(15,40,90,0.12);
  display: flex; flex-direction: column; gap: 14px;
}
.pcd--d2 .meta { font-size: 11px; letter-spacing: 0.18em; font-weight: 700; color: #1E6DD0; text-transform: uppercase; }
.pcd--d2 h3 { font-size: 22px; margin: 0; font-weight: 800; }
.pcd--d2 .price-row { display: flex; align-items: baseline; gap: 12px; }
.pcd--d2 .price { font-size: 44px; line-height: 1; font-weight: 900; color: #1E6DD0; }
.pcd--d2 .price small { font-size: 20px; font-weight: 700; vertical-align: top; opacity: .6; }
.pcd--d2 .cta {
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 13px;
  text-decoration: none; background: #1E6DD0; color: #fff;
  align-self: flex-start; margin-top: 6px;
}
.pcd--d2 .card.feat .step { background: #1E6DD0; color: #fff; transform: scale(1.08); }
.pcd--d2 .card.feat .body { background: linear-gradient(165deg, #2C86E5 0%, #155AB0 100%); color: #fff; border: 0; }
.pcd--d2 .card.feat .meta { color: #FFD75A; }
.pcd--d2 .card.feat .price { color: #fff; }
.pcd--d2 .card.feat .cta { background: #fff; color: #1E6DD0; }
.pcd--d2 .card.feat .pcd-bullets li { color: rgba(255,255,255,0.92); }
.pcd--d2 .card.feat .pcd-bullets li::before { background: #FFD75A; }

/* ============================================================
   D3 — PILL (extreme rounded, soft luxury)
   ============================================================ */
.pcd--d3 .pcd-grid { display: grid; grid-template-columns: 1fr 1.06fr 1fr; gap: 22px; align-items: center; }
.pcd--d3 .card {
  position: relative; padding: 44px 36px; border-radius: 64px;
  background: linear-gradient(170deg, #FFFFFF 0%, #F0F5FB 100%);
  border: 1px solid rgba(30,109,208,0.08);
  box-shadow:
    0 30px 60px -28px rgba(15,40,90,0.18),
    0 4px 14px -4px rgba(15,40,90,0.06);
  display: flex; flex-direction: column; gap: 18px; min-height: 480px;
}
.pcd--d3 .meta {
  display: inline-block; align-self: flex-start;
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
  background: #E0EAFB; color: #1E6DD0;
}
.pcd--d3 h3 { font-size: 24px; margin: 4px 0 0; font-weight: 800; letter-spacing: -0.01em; }
.pcd--d3 .price { font-size: 60px; line-height: 1; font-weight: 900; color: #1E6DD0; }
.pcd--d3 .price small { font-size: 24px; font-weight: 700; vertical-align: top; opacity: .65; }
.pcd--d3 .cta {
  padding: 16px 26px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; background: #1E6DD0; color: #fff; text-align: center;
}
.pcd--d3 .card.feat {
  background: linear-gradient(165deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  color: #fff; transform: scale(1.04);
  box-shadow: 0 40px 80px -28px rgba(30,109,208,0.55);
}
.pcd--d3 .card.feat .meta { background: rgba(255,255,255,0.18); color: #fff; }
.pcd--d3 .card.feat .price { color: #fff; }
.pcd--d3 .card.feat .pcd-bullets li { color: rgba(255,255,255,0.92); }
.pcd--d3 .card.feat .pcd-bullets li::before { background: #fff; }
.pcd--d3 .card.feat .cta { background: #fff; color: #1E6DD0; }

/* ============================================================
   D4 — DIAGONAL CLIP (one corner clipped, dynamic motion)
   ============================================================ */
.pcd--d4 .pcd-grid { display: grid; grid-template-columns: 1fr 1.06fr 1fr; gap: 22px; align-items: center; }
.pcd--d4 .card {
  position: relative; padding: 38px 32px 32px;
  background: #fff; border: 1px solid #E2E8F0;
  display: flex; flex-direction: column; gap: 18px; min-height: 480px;
  /* Top-right corner clipped diagonally for motion */
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
  box-shadow: 0 16px 36px -16px rgba(15,40,90,0.16);
}
.pcd--d4 .card::after {
  /* Decorative blue triangle at the clipped corner */
  content: ''; position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid; border-width: 0 36px 36px 0;
  border-color: transparent #1E6DD0 transparent transparent;
}
.pcd--d4 .meta { font-size: 11px; letter-spacing: 0.18em; font-weight: 700; color: #1E6DD0; text-transform: uppercase; }
.pcd--d4 h3 { font-size: 24px; margin: 0; font-weight: 800; letter-spacing: -0.01em; }
.pcd--d4 .price { font-size: 56px; line-height: 1; font-weight: 900; color: #0F172A; }
.pcd--d4 .price small { font-size: 22px; font-weight: 700; vertical-align: top; color: #1E6DD0; }
.pcd--d4 .cta {
  padding: 14px 24px; font-weight: 700; font-size: 14px; text-decoration: none;
  background: #1E6DD0; color: #fff; text-align: center;
  /* CTA bottom-left clip, mirroring the card's top-right */
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}
.pcd--d4 .card.feat {
  background: linear-gradient(165deg, #2C86E5 0%, #155AB0 100%);
  color: #fff; transform: scale(1.04);
  box-shadow: 0 30px 60px -22px rgba(30,109,208,0.55);
}
.pcd--d4 .card.feat::after { border-right-color: #FFD75A; }
.pcd--d4 .card.feat .meta { color: #FFD75A; }
.pcd--d4 .card.feat .price { color: #fff; }
.pcd--d4 .card.feat .pcd-bullets li { color: rgba(255,255,255,0.92); }
.pcd--d4 .card.feat .pcd-bullets li::before { background: #FFD75A; }
.pcd--d4 .card.feat .cta { background: #fff; color: #1E6DD0; }

/* ============================================================
   D5 — EMBOSSED (neumorphic soft depth)
   ============================================================ */
.pcd--d5 { background: #ECF1F8; padding: 48px 36px; border-radius: 28px; }
.pcd--d5 .pcd-grid { display: grid; grid-template-columns: 1fr 1.06fr 1fr; gap: 28px; align-items: center; }
.pcd--d5 .card {
  position: relative; padding: 38px 32px 32px; border-radius: 24px;
  background: #ECF1F8;
  box-shadow:
    14px 14px 30px rgba(168, 184, 207, 0.45),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
  display: flex; flex-direction: column; gap: 18px; min-height: 480px;
}
.pcd--d5 .meta {
  display: inline-block; align-self: flex-start;
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700;
  padding: 8px 14px; border-radius: 999px; color: #1E6DD0;
  background: #ECF1F8;
  box-shadow:
    inset 4px 4px 8px rgba(168, 184, 207, 0.35),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}
.pcd--d5 h3 { font-size: 24px; margin: 4px 0 0; font-weight: 800; color: #1E2A44; }
.pcd--d5 .price { font-size: 56px; line-height: 1; font-weight: 900; color: #1E6DD0; }
.pcd--d5 .price small { font-size: 22px; font-weight: 700; vertical-align: top; opacity: .65; }
.pcd--d5 .pcd-bullets li { color: #4A5570; }
.pcd--d5 .cta {
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; background: linear-gradient(135deg, #2C86E5, #1E6DD0);
  color: #fff; text-align: center;
  box-shadow:
    8px 8px 16px rgba(168, 184, 207, 0.45),
    -4px -4px 12px rgba(255, 255, 255, 0.6),
    inset 1px 1px 1px rgba(255, 255, 255, 0.25);
}
.pcd--d5 .card.feat {
  background: linear-gradient(165deg, #2C86E5 0%, #155AB0 100%);
  color: #fff; transform: scale(1.04);
  box-shadow:
    20px 20px 40px rgba(15, 40, 90, 0.3),
    -8px -8px 20px rgba(255, 255, 255, 0.4);
}
.pcd--d5 .card.feat .meta { background: rgba(255,255,255,0.18); color: #fff; box-shadow: none; }
.pcd--d5 .card.feat h3 { color: #fff; }
.pcd--d5 .card.feat .price { color: #fff; }
.pcd--d5 .card.feat .pcd-bullets li { color: rgba(255,255,255,0.92); }
.pcd--d5 .card.feat .pcd-bullets li::before { background: #FFD75A; }
.pcd--d5 .card.feat .cta { background: #fff; color: #1E6DD0; box-shadow: none; }

/* ============================================================
   D6 — OUTLINE MINIMAL (clean borders, minimalist)
   ============================================================ */
.pcd--d6 .pcd-grid { display: grid; grid-template-columns: 1fr 1.06fr 1fr; gap: 0; align-items: stretch; }
.pcd--d6 .card {
  position: relative; padding: 40px 32px;
  background: transparent;
  border: 1.5px solid #0F172A; border-right: 0;
  display: flex; flex-direction: column; gap: 18px; min-height: 480px;
}
.pcd--d6 .card:last-child { border-right: 1.5px solid #0F172A; }
.pcd--d6 .meta { font-size: 11px; letter-spacing: 0.22em; font-weight: 700; color: #0F172A; text-transform: uppercase; }
.pcd--d6 h3 { font-size: 26px; margin: 0; font-weight: 800; letter-spacing: -0.02em; }
.pcd--d6 .price-row { display: flex; align-items: baseline; gap: 10px; padding: 14px 0; border-top: 1.5px solid #0F172A; border-bottom: 1.5px solid #0F172A; }
.pcd--d6 .price { font-size: 48px; line-height: 1; font-weight: 900; color: #0F172A; }
.pcd--d6 .price small { font-size: 22px; font-weight: 700; vertical-align: top; opacity: .6; }
.pcd--d6 .price-unit { margin-left: auto; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: .6; }
.pcd--d6 .pcd-bullets li::before { background: transparent; border: 1.5px solid #0F172A; box-sizing: border-box; }
.pcd--d6 .cta {
  align-self: flex-start; padding: 14px 28px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  background: transparent; color: #0F172A;
  border: 1.5px solid #0F172A;
}
.pcd--d6 .cta:hover { background: #0F172A; color: #fff; }
.pcd--d6 .card.feat {
  background: #0F172A; color: #fff;
  margin: -8px 0; padding: 48px 32px;
  border-color: #0F172A;
}
.pcd--d6 .card.feat .meta { color: #FFD75A; }
.pcd--d6 .card.feat .price-row { border-color: #FFD75A; }
.pcd--d6 .card.feat .price { color: #fff; }
.pcd--d6 .card.feat .pcd-bullets li { color: rgba(255,255,255,0.85); }
.pcd--d6 .card.feat .pcd-bullets li::before { border-color: #FFD75A; }
.pcd--d6 .card.feat .cta { background: #FFD75A; color: #0F172A; border-color: #FFD75A; }

/* ============================================================
   D7 — STACKED OVERLAPPING (cards overlap, featured pops out)
   ============================================================ */
.pcd--d7 { padding: 50px 0; max-width: 1100px; margin: 0 auto; }
.pcd--d7 .pcd-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 0;
  align-items: center; position: relative;
}
.pcd--d7 .card {
  position: relative; padding: 40px 32px 32px; border-radius: 22px;
  /* Tinted cool gradient + brand accent — never ghosts against white */
  background: linear-gradient(180deg, #F4F8FE 0%, #E8EFFB 100%);
  border: 1px solid rgba(30, 109, 208, 0.10);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 44px -22px rgba(15, 40, 90, 0.22),
    0 6px 14px -6px rgba(15, 40, 90, 0.10);
  display: flex; flex-direction: column; gap: 18px; min-height: 460px;
}
.pcd--d7 .card .cta { margin-top: auto; }
.pcd--d7 .card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #2C86E5, #1E6DD0);
}
.pcd--d7 .card:nth-child(1) { z-index: 1; }
.pcd--d7 .card:nth-child(3) { z-index: 1; }
.pcd--d7 .card .meta { color: #1E6DD0; font-weight: 800; }
.pcd--d7 .card .price { color: #1E6DD0; }
.pcd--d7 .card h3 { color: #0F172A; }
.pcd--d7 .card .pcd-bullets li { color: #1E293B; font-weight: 500; }
.pcd--d7 .card .pcd-bullets li::before { background: #1E6DD0; }
.pcd--d7 .card .cta {
  background: #1E6DD0; color: #fff; font-weight: 700;
  box-shadow: 0 8px 18px -6px rgba(30, 109, 208, 0.4);
}
.pcd--d7 .meta { font-size: 11px; letter-spacing: 0.18em; font-weight: 700; color: #1E6DD0; text-transform: uppercase; }
.pcd--d7 h3 { font-size: 24px; margin: 0; font-weight: 800; }
.pcd--d7 .price { font-size: 52px; line-height: 1; font-weight: 900; color: #1E6DD0; }
.pcd--d7 .price small { font-size: 22px; font-weight: 700; vertical-align: top; opacity: .65; }
.pcd--d7 .cta {
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; background: #1E6DD0; color: #fff; text-align: center;
}
.pcd--d7 .card.feat {
  background: linear-gradient(165deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  color: #fff; border: 0; z-index: 5;
  box-shadow:
    0 40px 80px -22px rgba(30, 109, 208, 0.55),
    0 14px 28px -10px rgba(30, 109, 208, 0.4);
}
.pcd--d7 .card.feat::before { background: linear-gradient(90deg, #FFD75A, #FFB833); }
.pcd--d7 .card.feat .meta { color: #FFD75A; font-weight: 800; }
.pcd--d7 .card.feat h3 { color: #fff; }
.pcd--d7 .card.feat .price { color: #fff; }
.pcd--d7 .card.feat .pcd-bullets li { color: #fff; font-weight: 500; }
.pcd--d7 .card.feat .pcd-bullets li::before { background: #FFD75A; }
.pcd--d7 .card.feat .cta {
  background: #fff;
  color: #0F4787 !important;       /* deeper blue text on white = strong contrast (override .cta global !important) */
  font-weight: 800;
  box-shadow:
    0 10px 22px -8px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(15, 71, 135, 0.06) inset;
}

/* ============================================================
   D8 — POLAROID (white frame, slight tilt, like instant photos)
   ============================================================ */
.pcd--d8 { padding: 30px 0; }
.pcd--d8 .pcd-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: flex-start; }
.pcd--d8 .card {
  position: relative; padding: 18px 18px 28px;
  background: #fff;
  box-shadow: 0 22px 50px -20px rgba(15, 30, 60, 0.35);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s ease;
}
.pcd--d8 .card:nth-child(1) { transform: rotate(-2.5deg); }
.pcd--d8 .card:nth-child(3) { transform: rotate(2.5deg); }
.pcd--d8 .card:hover { transform: rotate(0) scale(1.02); }
.pcd--d8 .photo {
  height: 140px; border-radius: 2px; position: relative;
  overflow: hidden;
}
.pcd--d8 .photo.ext {
  background:
    radial-gradient(ellipse at 35% 35%, rgba(255,255,255,0.3) 0%, transparent 60%),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,0.6) 0px, transparent 2px),
    radial-gradient(circle at 30% 60%, rgba(255,255,255,0.5) 0px, transparent 2px),
    linear-gradient(155deg, #0E2F5C 0%, #1E6DD0 100%);
  background-size: auto, 50px 50px, 60px 60px, auto;
}
.pcd--d8 .photo.full {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,215,90,0.3) 0%, transparent 50%),
    linear-gradient(155deg, #2C86E5 0%, #155AB0 100%);
}
.pcd--d8 .photo.int {
  background: linear-gradient(155deg, #2A2A2E 0%, #4A5168 50%, #2A2A2E 100%);
}
.pcd--d8 .tape {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 70px; height: 18px;
  background: rgba(255, 215, 90, 0.7);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.pcd--d8 .body { padding: 0 8px; }
.pcd--d8 h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; margin: 4px 0 8px; color: #0F172A;
}
.pcd--d8 .meta { font-size: 10px; letter-spacing: 0.22em; font-weight: 700; color: #94A3B8; text-transform: uppercase; }
.pcd--d8 .price-row { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 0; border-top: 1px dashed #CBD5E1; border-bottom: 1px dashed #CBD5E1; }
.pcd--d8 .price { font-size: 36px; line-height: 1; font-weight: 800; color: #1E6DD0; }
.pcd--d8 .price small { font-size: 18px; font-weight: 700; vertical-align: top; opacity: .65; }
.pcd--d8 .cta {
  margin-top: 8px; padding: 12px 22px; border-radius: 4px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  background: #1E6DD0; color: #fff; text-align: center;
  letter-spacing: 0.04em;
}
.pcd--d8 .card.feat .tape { background: #1E6DD0; }
.pcd--d8 .card.feat .photo { box-shadow: inset 0 0 0 2px #FFD75A; }

/* ============================================================
   D9 — SERVICE TICKET (boarding-pass perforated edge)
   3 horizontal cards stacked vertically
   ============================================================ */
.pcd--d9 { max-width: 880px; margin: 0 auto; }
.pcd--d9 .pcd-grid { display: flex; flex-direction: column; gap: 18px; }
.pcd--d9 .card {
  position: relative;
  background: #fff; border: 1px solid #E2E8F0;
  border-radius: 14px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  box-shadow: 0 14px 30px -16px rgba(15,40,90,0.14);
}
.pcd--d9 .left { padding: 30px 32px; display: flex; flex-direction: column; gap: 14px; }
.pcd--d9 .right {
  padding: 30px 32px;
  background: #F8FAFC;
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: flex-start;
  border-left: 2px dashed #CBD5E1;
  position: relative;
}
.pcd--d9 .right::before, .pcd--d9 .right::after {
  content: ''; position: absolute; left: -10px;
  width: 18px; height: 18px; border-radius: 999px; background: #fff;
  border: 1px solid #E2E8F0;
}
.pcd--d9 .right::before { top: -10px; }
.pcd--d9 .right::after { bottom: -10px; }
.pcd--d9 .meta { font-size: 11px; letter-spacing: 0.22em; font-weight: 700; color: #1E6DD0; text-transform: uppercase; }
.pcd--d9 h3 { font-size: 26px; margin: 4px 0 0; font-weight: 800; letter-spacing: -0.01em; }
.pcd--d9 .pcd-bullets { margin: 6px 0 0; flex-direction: row; flex-wrap: wrap; column-gap: 26px; gap: 10px; }
.pcd--d9 .pcd-bullets li { font-size: 13px; padding-left: 18px; }
.pcd--d9 .price-block { width: 100%; }
.pcd--d9 .price-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .55; font-weight: 700; }
.pcd--d9 .price { font-size: 56px; line-height: 1; font-weight: 900; color: #1E6DD0; }
.pcd--d9 .price small { font-size: 24px; font-weight: 700; vertical-align: top; opacity: .65; }
.pcd--d9 .cta {
  width: 100%; padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; background: #1E6DD0; color: #fff; text-align: center;
  margin-top: 12px;
}
.pcd--d9 .card.feat {
  border: 0;
  box-shadow: 0 24px 50px -22px rgba(30,109,208,0.45);
  transform: scale(1.02);
}
.pcd--d9 .card.feat .left { background: linear-gradient(165deg, #2C86E5 0%, #155AB0 100%); color: #fff; }
.pcd--d9 .card.feat .right { background: #0F172A; color: #fff; border-left-color: #FFD75A; }
.pcd--d9 .card.feat .right::before, .pcd--d9 .card.feat .right::after { background: linear-gradient(165deg, #2C86E5 0%, #155AB0 100%); border: 0; }
.pcd--d9 .card.feat .meta { color: #FFD75A; }
.pcd--d9 .card.feat .price { color: #FFD75A; }
.pcd--d9 .card.feat .pcd-bullets li { color: rgba(255,255,255,0.92); }
.pcd--d9 .card.feat .pcd-bullets li::before { background: #FFD75A; }
.pcd--d9 .card.feat .cta { background: #FFD75A; color: #0F172A; }

/* ============================================================
   D10 — MENU (fine-dining typography, dotted leaders)
   Single elegant menu card with 3 tiers as menu items
   ============================================================ */
.pcd--d10 { max-width: 760px; margin: 0 auto; padding: 56px 60px;
  background: #FBF8F1;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.18);
  position: relative;
}
.pcd--d10::before, .pcd--d10::after {
  content: ''; position: absolute; left: 60px; right: 60px; height: 3px;
  background:
    linear-gradient(to right, #B58900 0, #B58900 40%, transparent 40%, transparent 60%, #B58900 60%, #B58900 100%);
}
.pcd--d10::before { top: 24px; }
.pcd--d10::after { bottom: 24px; }
.pcd--d10 .pcd-grid { display: flex; flex-direction: column; gap: 36px; }
.pcd--d10 .card {
  position: relative; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pcd--d10 .card:not(:last-child) { padding-bottom: 28px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.pcd--d10 .head-row {
  display: flex; align-items: baseline;
  font-family: 'Playfair Display', serif;
  gap: 12px;
}
.pcd--d10 h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; margin: 0; letter-spacing: -0.01em; color: #1A1410; white-space: nowrap; }
.pcd--d10 .leader { flex: 1; border-bottom: 2px dotted rgba(0,0,0,0.3); margin-bottom: 8px; }
.pcd--d10 .price { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: #B58900; line-height: 1; white-space: nowrap; }
.pcd--d10 .price small { font-size: 18px; font-weight: 700; vertical-align: top; }
.pcd--d10 .meta {
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; font-weight: 700;
  color: #B58900; text-transform: uppercase;
  margin-bottom: -4px;
}
.pcd--d10 .desc {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 17px; line-height: 1.55; color: #4A3F33; margin: 0;
}
.pcd--d10 .pcd-bullets {
  flex-direction: row; flex-wrap: wrap; gap: 6px 22px; margin: 4px 0 0;
}
.pcd--d10 .pcd-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #6A5A48; padding-left: 14px;
}
.pcd--d10 .pcd-bullets li::before { background: #B58900; width: 4px; height: 4px; top: 9px; }
.pcd--d10 .cta {
  align-self: flex-start; margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; color: #1A1410;
  padding-bottom: 4px; border-bottom: 1.5px solid #1A1410;
}
.pcd--d10 .card.feat h3 { color: #B58900; }
.pcd--d10 .card.feat .desc { color: #1A1410; font-weight: 500; }
.pcd--d10 .badge {
  position: absolute; top: -2px; right: -8px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 14px; color: #B58900; font-weight: 600;
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 880px) {
  .pcd--d1 .pcd-grid, .pcd--d3 .pcd-grid, .pcd--d4 .pcd-grid, .pcd--d5 .pcd-grid,
  .pcd--d6 .pcd-grid, .pcd--d7 .pcd-grid, .pcd--d8 .pcd-grid {
    grid-template-columns: 1fr;
  }
  .pcd--d2 { max-width: 100%; }
  .pcd--d2::before { left: 26px; }
  .pcd--d2 .card { grid-template-columns: 60px 1fr; gap: 16px; }
  .pcd--d2 .step { width: 56px; height: 56px; font-size: 26px; }
  .pcd--d6 .card { border: 1.5px solid #0F172A; margin: 0 0 -1.5px 0; }
  .pcd--d6 .card.feat { margin: 0 0 -1.5px 0; }
  .pcd--d7 .card:nth-child(1), .pcd--d7 .card:nth-child(3) { transform: none; }
  .pcd--d7 .card.feat { transform: scale(1.02); }
  .pcd--d8 .card:nth-child(1), .pcd--d8 .card:nth-child(3) { transform: none; }
  .pcd--d9 .card { grid-template-columns: 1fr; }
  .pcd--d9 .right { border-left: 0; border-top: 2px dashed #CBD5E1; }
  .pcd--d10 { padding: 40px 24px; }
}
