/*
 * onpack / packd — Mondelez pitchdeck
 * Reveal.js theme overrides. Matches marketing brand (blue refresh).
 * Palette: primary blue-700 + deep navy accent, to align with /for-brands and /how-it-works.
 */

:root {
  --op-ink: #0f172a;
  --op-ink-2: #1e293b;
  --op-muted: #475569;
  --op-muted-2: #64748b;
  --op-line: #e2e8f0;
  --op-bg: #ffffff;
  --op-bg-alt: #f8fafc;
  --op-primary: #1D4ED8;
  --op-primary-2: #2563EB;
  --op-primary-3: #3B82F6;
  --op-primary-soft: #dbeafe;
  --op-accent: #1E3A8A;
  --op-gold: #d7a93a;
  --op-silver: #b0b4bc;
  --op-bronze: #8e5f30;
  --op-ink-deep: #0b1020;
}

.pitchdeck-body {
  margin: 0;
  padding: 0;
  background: var(--op-bg);
  color: var(--op-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  transition: background 320ms ease;
}

/* Full-viewport gradients driven by body classes (syncTitleClass in layout).
   Sections themselves are transparent so the gradient bleeds to the window edge. */
.pitchdeck-body.pd-on-title {
  background:
    radial-gradient(1400px 900px at 90% -10%, rgba(37,99,235,0.18), transparent 60%),
    radial-gradient(900px 600px at -5% 110%, rgba(30,58,138,0.12), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 100%) !important;
  background-attachment: fixed !important;
}
.pitchdeck-body.pd-on-dark {
  background:
    radial-gradient(1000px 700px at 100% 0%, rgba(30,58,138,0.35), transparent 60%),
    radial-gradient(1200px 800px at 0% 100%, rgba(29,78,216,0.42), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #0f1530 100%) !important;
  background-attachment: fixed !important;
}

.pitchdeck-body .reveal {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--op-ink);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pitchdeck-body .reveal .slides {
  text-align: left;
}

/* Section = full slide. We paint the section so full-bleed gradients
   don't leave a hard-edged rectangle inside the slide area.
   NOTE: do NOT set `position` here — reveal.js already sets `position: absolute`
   on each section and relies on that for stacking. pseudo-elements inside
   still position against the section just fine. */
.pitchdeck-body .reveal .slides section {
  padding: 48px 72px;
  box-sizing: border-box;
  height: 100%;
  background: transparent;
  overflow: hidden;
}
/* Make reveal's inner stage transparent so the body gradient shows through.
   Do NOT target .reveal-viewport — that's the body, and body class rules
   below need to win there. */
.pitchdeck-body .reveal { background: transparent !important; }

.pitchdeck-body .reveal h1, .pitchdeck-body .reveal h2, .pitchdeck-body .reveal h3, .pitchdeck-body .reveal h4 {
  color: var(--op-ink);
  font-family: inherit;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

.pitchdeck-body .reveal h1 { font-size: 3.4em; }
.pitchdeck-body .reveal h2 { font-size: 1.85em; line-height: 1.08; }
.pitchdeck-body .reveal h3 { font-size: 1.2em; font-weight: 700; }

.pitchdeck-body .reveal p { line-height: 1.5; margin: 0 0 0.6em; }
.pitchdeck-body .reveal strong { color: var(--op-ink); font-weight: 700; }
.pitchdeck-body .reveal em { font-style: normal; color: var(--op-primary); font-weight: 600; }

.pitchdeck-body .reveal a { color: var(--op-primary); text-decoration: none; }
.pitchdeck-body .reveal a:hover { color: var(--op-primary-2); text-decoration: underline; }

.pitchdeck-body .reveal ul, .pitchdeck-body .reveal ol { margin: 0.6em 0 0.6em 1.1em; }
.pitchdeck-body .reveal li { margin: 0.3em 0; line-height: 1.45; }

/* Reveal.js controls */
.pitchdeck-body .reveal .progress { color: var(--op-primary); height: 3px; }
.pitchdeck-body .reveal .controls { color: var(--op-primary); }
.pitchdeck-body .reveal .slide-number { color: var(--op-muted); background: transparent; font-family: inherit; font-size: 14px; }

/* --- Slide kinds ------------------------------------------------------- */

.pd-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  position: relative;
  z-index: 1;
}

.pd-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--op-primary-soft);
  color: var(--op-primary);
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8em;
}
.pd-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--op-primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.18);
}

.pd-lede {
  font-size: 1em;
  color: var(--op-muted);
  max-width: 880px;
  line-height: 1.5;
}

/* ---- Title slides ------------------------------------------------------ */

/* Section backgrounds are now painted by body (full-viewport via pd-on-title body class).
   Decoration (dotted grid + orb) is on the body too so it bleeds past the slide area. */
.pitchdeck-body .reveal .slides section.pd-section-title { background: transparent; }

/* Full-viewport dotted grid decoration — only visible on title slides */
.pitchdeck-body.pd-on-title::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(29,78,216,0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(1400px 800px at 100% 0%, rgba(0,0,0,0.55), transparent 65%);
          mask-image: radial-gradient(1400px 800px at 100% 0%, rgba(0,0,0,0.55), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* Full-viewport blurred orb in the top-right corner */
.pitchdeck-body.pd-on-title::after {
  content: "";
  position: fixed;
  right: -180px; top: -140px;
  width: 640px; height: 640px;
  background:
    conic-gradient(from 180deg at 50% 50%, var(--op-primary) 0%, var(--op-accent) 55%, var(--op-primary) 100%);
  filter: blur(80px);
  opacity: 0.22;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pd-title-slide {
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.pd-title-slide__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--op-primary);
  font-size: 1em;
  letter-spacing: -0.02em;
}
.pd-title-slide__brand::before {
  content: "";
  width: 26px; height: 26px;
  background: var(--op-primary);
  border-radius: 7px;
  mask: conic-gradient(from 0deg at 50% 50%, #000 25%, transparent 25% 50%, #000 50% 75%, transparent 75%) 0 0 / 50% 50% no-repeat,
        linear-gradient(#000,#000) 50% 50% / 40% 40% no-repeat;
  -webkit-mask: conic-gradient(from 0deg at 50% 50%, #000 25%, transparent 25% 50%, #000 50% 75%, transparent 75%) 0 0 / 50% 50% no-repeat,
                linear-gradient(#000,#000) 50% 50% / 40% 40% no-repeat;
}

.pd-title-slide__title {
  font-size: 4.6em;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.pd-title-slide__title .accent {
  font-style: normal;
  background: linear-gradient(90deg, var(--op-primary), var(--op-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pd-title-slide__sub {
  font-size: 1em;
  color: var(--op-muted);
  max-width: 760px;
  margin-top: 1em;
}

.pd-title-slide__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.5em;
  color: var(--op-muted-2);
  letter-spacing: 0.02em;
}

/* ---- Dark slides (for rhythm) ----------------------------------------- */

.pitchdeck-body .reveal .slides section.pd-section-dark {
  background: transparent;
  color: #eef2ff;
}
.pitchdeck-body .reveal .slides section.pd-section-dark h1,
.pitchdeck-body .reveal .slides section.pd-section-dark h2,
.pitchdeck-body .reveal .slides section.pd-section-dark h3 { color: #ffffff; }
.pitchdeck-body .reveal .slides section.pd-section-dark p,
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-lede { color: rgba(238,242,255,0.82); }
.pitchdeck-body .reveal .slides section.pd-section-dark strong { color: #ffffff; }
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-kvs {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-kv {
  border-bottom-color: rgba(255,255,255,0.14);
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-kv strong { color: rgba(238,242,255,0.82); font-weight: 600; }
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-kv span { color: #ffffff; font-weight: 700; }
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-tag { background: rgba(255,255,255,0.12); color: #e0e7ff; }
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  color: #e0e7ff;
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-card h3 { color: #fff; }
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-card p { color: rgba(238,242,255,0.75); }
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-stat {
  background: linear-gradient(90deg, #ffffff, #c7d2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pitchdeck-body .reveal .slides section.pd-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(199,210,254,0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(900px 500px at 0% 100%, rgba(0,0,0,0.45), transparent 65%);
          mask-image: radial-gradient(900px 500px at 0% 100%, rgba(0,0,0,0.45), transparent 65%);
  pointer-events: none;
}

.pitchdeck-body .reveal .slides section.pd-section-dark .pd-title-slide__brand {
  color: #ffffff;
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-title-slide__brand::before {
  background: #ffffff;
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-title-slide__title {
  color: #ffffff;
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-title-slide__title .accent {
  background: linear-gradient(90deg, #c7d2fe, #f5d0fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-title-slide__sub {
  color: rgba(238,242,255,0.82);
}
.pitchdeck-body .reveal .slides section.pd-section-dark .pd-title-slide__foot {
  color: rgba(238,242,255,0.5);
}

/* ---- Grids ------------------------------------------------------------ */

.pd-grid {
  display: grid;
  gap: 22px;
  margin-top: 0.8em;
}
/* Dense 3-col grids (6+ cards) — tighter gap/padding to fit two rows. */
.pd-slide--dense .pd-grid { gap: 18px; }
.pd-slide--dense .pd-card { padding: 20px; }
.pd-slide--dense .pd-card h3 { font-size: 0.95em; }

.pd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pd-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pd-grid-2 { grid-template-columns: repeat(2, 1fr); }

.pd-card {
  border: 1px solid var(--op-line);
  border-radius: 16px;
  padding: 24px;
  background: var(--op-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.pd-card--soft {
  background: var(--op-bg-alt);
  border-color: transparent;
}

.pd-card--accent {
  background:
    radial-gradient(400px 300px at 100% 0%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, var(--op-primary) 0%, var(--op-accent) 100%);
  color: #fff;
  border-color: transparent;
}

.pd-card h3 { font-size: 1em; margin: 0; color: var(--op-ink); }
.pd-card p { font-size: 0.7em; color: var(--op-muted); margin: 0; line-height: 1.5; }

/* Accent-card overrides — MUST come after the generic .pd-card p to win source order */
.pd-card--accent h3, .pd-card--accent .pd-stat { color: #fff; }
.pd-card--accent p { color: rgba(255,255,255,0.94); }

.pd-stat {
  font-size: 2.2em;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  padding-bottom: 0.1em;
  background: linear-gradient(120deg, var(--op-primary) 0%, var(--op-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow-wrap: break-word;
}

.pd-card__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--op-primary-soft);
  color: var(--op-primary);
  margin-bottom: 4px;
}
.pd-card__icon svg { width: 22px; height: 22px; }
.pd-card--accent .pd-card__icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Decorative corner accent on problem/stat cards */
.pd-card--stat::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(29,78,216,0.08), transparent 80%);
  pointer-events: none;
}

/* ---- Metrics bar ------------------------------------------------------ */

.pd-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--op-line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfbff);
}
.pd-metrics > div {
  padding: 22px;
  border-right: 1px solid var(--op-line);
}
.pd-metrics > div:last-child { border-right: none; }
.pd-metrics__value {
  font-size: 1.7em;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(120deg, var(--op-primary) 0%, var(--op-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pd-metrics__label {
  font-size: 0.55em;
  color: var(--op-muted);
  margin-top: 0.5em;
  line-height: 1.4;
}

/* ---- Steps ------------------------------------------------------------ */

.pd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 0.8em;
}
.pd-step { padding: 0 22px; position: relative; }
.pd-step__n {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--op-primary);
  color: #fff;
  font-weight: 800;
  border-radius: 12px;
  font-size: 1.05em;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 16px -4px rgba(29,78,216,0.4);
}
.pd-step h3 { margin-top: 0.8em; font-size: 0.95em; }
.pd-step p { font-size: 0.7em; color: var(--op-muted); line-height: 1.5; }

/* ---- Tiers (pricing — commented out in v1 view but styles kept) ------- */

.pd-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 0.8em;
}
.pd-tier {
  border: 1px solid var(--op-line);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-tier--featured {
  border-color: var(--op-primary);
  background: var(--op-primary-soft);
  position: relative;
}
.pd-tier--featured::before {
  content: "Most popular";
  position: absolute;
  top: -11px; left: 22px;
  background: var(--op-primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pd-tier__name { font-weight: 700; font-size: 0.9em; color: var(--op-ink); }
.pd-tier__price { font-size: 1.8em; font-weight: 800; letter-spacing: -0.03em; color: var(--op-ink); }
.pd-tier__price small { font-size: 0.45em; font-weight: 500; color: var(--op-muted); margin-left: 4px; }
.pd-tier__line { font-size: 0.65em; color: var(--op-muted); line-height: 1.45; }

/* ---- Reveal tier chips ------------------------------------------------ */

.pd-reveal-chips { display: flex; gap: 16px; margin-top: 0.4em; }
.pd-reveal-chip {
  flex: 1;
  border-radius: 14px;
  padding: 22px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.3);
}
.pd-reveal-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%);
  pointer-events: none;
}
.pd-reveal-chip__tier {
  font-size: 0.5em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  position: relative;
}
.pd-reveal-chip__label {
  font-weight: 800;
  font-size: 1.5em;
  line-height: 1;
  margin-top: 0.3em;
  letter-spacing: -0.03em;
  position: relative;
}
.pd-reveal-chip__foot {
  font-size: 0.55em;
  opacity: 0.85;
  margin-top: 1em;
  position: relative;
}
.pd-chip--base    { background: linear-gradient(135deg, #94a3b8, #475569); }
.pd-chip--bronze  { background: linear-gradient(135deg, #c08257, #8e5f30); }
.pd-chip--silver  { background: linear-gradient(135deg, #d8dbe2, #8a8f99); color: #1a1a2e; }
.pd-chip--gold    { background: linear-gradient(135deg, #f2d27a, #d7a93a); color: #2a1c00; }

.pd-reveal-customize {
  margin-top: 22px;
  padding: 18px 24px;
  border-radius: 14px;
  background: var(--op-primary-soft);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72em;
  color: var(--op-ink);
  line-height: 1.5;
  border: 1px dashed rgba(29,78,216,0.25);
}
.pd-reveal-customize strong { color: var(--op-primary); }
.pd-reveal-customize__icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--op-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* Phone mock for reveal slide (optional decoration) */
.pd-reveal-visual {
  position: absolute;
  right: 64px; top: 56px;
  width: 140px; height: 280px;
  border: 10px solid #0f172a;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--op-primary), var(--op-accent));
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15,23,42,0.3);
  z-index: 0;
  opacity: 0.95;
}
.pd-reveal-visual::before {
  content: "SCAN ME";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
}
.pd-reveal-visual::after {
  content: "";
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 6px; border-radius: 3px;
  background: #0f172a;
}

/* ---- Headline + footer + download ------------------------------------- */

.pd-headline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.2em;
  gap: 24px;
}

.pd-footer {
  position: fixed;
  bottom: 14px; left: 24px;
  font-size: 11px;
  color: var(--op-muted-2);
  letter-spacing: 0.02em;
  z-index: 30;
  opacity: 0.7;
  transition: opacity 120ms ease;
}
body.pd-on-title .pd-footer { display: none; }
body.pd-on-dark  .pd-footer { color: rgba(255,255,255,0.55); }

.pd-download {
  position: fixed;
  top: 18px; right: 18px;
  z-index: 40;
  background: var(--op-ink);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px -2px rgba(15,23,42,0.2);
}
.pd-download:hover { background: var(--op-primary); color: #fff; }

/* ---- Split + quote + kvs ---------------------------------------------- */

.pd-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.pd-quote {
  font-size: 1.5em;
  line-height: 1.25;
  color: var(--op-ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 900px;
  border-left: 4px solid var(--op-primary);
  padding-left: 22px;
}
.pd-quote__attr {
  font-size: 0.55em;
  color: var(--op-muted);
  margin-top: 0.8em;
  font-weight: 500;
}

.pd-kvs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 22px;
  margin-top: 0.6em;
  padding: 22px;
  background: rgba(29,78,216,0.04);
  border-radius: 14px;
  border: 1px solid var(--op-line);
}
.pd-kv {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--op-line);
  padding: 8px 0;
  font-size: 0.68em;
}
.pd-kv:last-child, .pd-kv:nth-last-child(2) { border-bottom: none; }
.pd-kv--wide { grid-column: 1 / -1; }
.pd-kv strong { color: var(--op-ink); font-weight: 700; }
.pd-kv span { color: var(--op-muted); font-weight: 600; text-align: right; }

/* ---- Comparison (Milka vs onpack) -------------------------------------- */

.pd-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0.8em;
}
.pd-compare__col {
  border: 1px solid var(--op-line);
  border-radius: 16px;
  padding: 28px;
  background: var(--op-bg-alt);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pd-compare__col--ours {
  background:
    radial-gradient(400px 300px at 100% 0%, rgba(255,255,255,0.4), transparent 60%),
    linear-gradient(135deg, var(--op-primary-soft) 0%, #ffffff 100%);
  border-color: var(--op-primary);
  box-shadow: 0 10px 30px -18px rgba(29,78,216,0.3);
}
.pd-compare__head { position: relative; }
.pd-compare__brand {
  font-size: 0.5em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--op-muted);
  font-weight: 700;
}
.pd-compare__title {
  font-size: 1em;
  font-weight: 800;
  color: var(--op-ink);
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.pd-compare__count {
  position: absolute;
  top: -4px; right: 0;
  font-size: 2.6em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--op-muted-2);
  opacity: 0.6;
}
.pd-compare__col--ours .pd-compare__count {
  background: linear-gradient(120deg, var(--op-primary) 0%, var(--op-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}
.pd-compare__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: pdstep;
}
.pd-compare__steps li {
  counter-increment: pdstep;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72em;
  color: var(--op-ink-2);
  line-height: 1.4;
}
.pd-compare__steps li::before {
  content: counter(pdstep);
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--op-line);
  color: var(--op-muted);
  font-weight: 700;
  font-size: 0.9em;
}
.pd-compare__col--ours .pd-compare__steps li::before {
  background: var(--op-primary);
  color: #fff;
  border-color: var(--op-primary);
  box-shadow: 0 4px 10px -3px rgba(29,78,216,0.4);
}
.pd-compare__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--op-line);
  font-size: 0.6em;
  color: var(--op-muted);
  line-height: 1.5;
}
.pd-compare__col--ours .pd-compare__foot { border-top-color: rgba(29,78,216,0.25); }

/* Print-specific tweaks for PDF export */
@media print {
  .pd-download, .pd-footer { display: none !important; }
}
