  /* ============== HERO ============== */
  .pg-hero {
    background: var(--navy);
    color: var(--warm-white);
    min-height: 100vh;
    padding: 140px var(--pad-x) 60px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    row-gap: 32px;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 720px) {
    .pg-hero { padding-top: 110px; }
  }

  /* DK ← → PL connection graphic in hero — own grid row, never overlaps H1 */
  .pg-hero .hero-link {
    width: 100%;
    max-width: 1100px;
    height: auto;
    max-height: 250px;
    margin: 0 auto 10px;
    pointer-events: none;
    opacity: 0.98;
    align-self: start;
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.18));
  }
  .pg-hero .route-line {
    fill: none;
    stroke-linecap: round;
  }
  .pg-hero .route-line {
    stroke: var(--red);
    stroke-width: 3;
    stroke-dasharray: 14 12;
  }
  .pg-hero .route-dot { fill: var(--red); }
  .pg-hero .route-dot-core { fill: var(--warm-white); }
  .pg-hero .route-label {
    fill: var(--warm-white);
    font-family: var(--display-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
  }
  .pg-hero .route-country {
    fill: var(--red);
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
  }
  @media (max-width: 900px) {
    .pg-hero .hero-link {
      max-width: 100%;
      max-height: 190px;
      opacity: 1;
    }
    .pg-hero .route-label { font-size: 13px; letter-spacing: 3px; }
    .pg-hero .route-country { font-size: 18px; }
  }
  @media (max-width: 560px) {
    .pg-hero .hero-link {
      width: 150%;
      max-width: none;
      margin-left: -25%;
    }
  }

  .pg-hero h1 {
    align-self: end;
    font-size: clamp(56px, 10vw, 200px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 500;
    max-width: 16ch;
  }
  .pg-hero h1 .it {
    font-family: var(--serif);
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }

  .pg-hero .foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    padding-top: 60px;
    border-top: 1px solid var(--rule-light);
    margin-top: 40px;
  }
  .pg-hero .foot .sub {
    max-width: 480px;
    font-size: 16px;
    line-height: 1.45;
    opacity: 0.85;
  }
  .pg-hero .foot .scroll-cue {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    opacity: 0.6;
    display: flex; align-items: center; gap: 10px;
  }
  .pg-hero .foot .scroll-cue::after {
    content: "";
    width: 1px; height: 32px; background: currentColor;
    animation: drop 1.6s ease-in-out infinite;
  }
  @keyframes drop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.001% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ============== ROADMAP ============== */
  .roadmap {
    position: relative;
    padding: 0;
  }

  /* SVG game-board path (serpentine) */
  .roadmap-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
  }
  .roadmap-svg .rail {
    fill: none;
    stroke: rgba(214, 40, 40, 0.22);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 28 18;
  }
  .roadmap-svg .fill-path {
    fill: none;
    stroke: var(--red);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 28 18;
    
  }
  /* Mobile-only: hide serpentine SVG (laggy/broken on phones), show
     a simple vertical progress bar fixed to the left edge of viewport. */
  .m-progress { display: none; }
  @media (max-width: 900px) {
    .roadmap-svg { display: none; }
    .m-progress {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 3px;
      height: 100vh;
      height: 100dvh;
      background: rgba(214, 40, 40, 0.18);
      z-index: 50;
      pointer-events: none;
    }
    .m-progress-fill {
      display: block;
      width: 100%;
      height: 0;
      background: var(--red);
      
    }
  }

  .step {
    position: relative;
    padding: clamp(32px, 4vh, 56px) var(--pad-x);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
    column-gap: clamp(20px, 3vw, 48px);
    align-items: center;
  }
  /* Backgrounds via pseudo so SVG path paints between bg and content */
  .step::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
  }
  .step.bg-cream { color: var(--ink); }
  .step.bg-cream::before { background: var(--cream); }
  .step.bg-navy { color: var(--warm-white); }
  .step.bg-navy::before { background: var(--navy); }
  /* Content rides above the SVG (.roadmap-svg z-index: 1) */
  .step .panel,
  .step .center-mark,
  .step .step-num {
    position: relative;
    z-index: 2;
  }
  @media (max-width: 900px) {
    .step { grid-template-columns: 40px 1fr; padding: 48px 16px 56px; min-height: auto; row-gap: 20px; }
  }

  .step .center-mark {
    grid-column: 2;
    display: grid; place-items: center;
    position: relative;
    z-index: 4;
    align-self: center;
  }
  @media (max-width: 900px) { .step .center-mark { grid-column: 1; align-self: start; } }

  .step .node {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--cream);
    border: 3px solid var(--red);
    color: var(--ink);
    font-family: var(--display-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 6px var(--cream), 0 8px 24px rgba(0,0,0,0.18);
    position: relative; z-index: 5;
    transition: transform .4s ease, background .4s ease, color .4s ease, box-shadow .4s ease;
  }
  .step.bg-navy .node {
    background: var(--navy);
    color: var(--warm-white);
    box-shadow: 0 0 0 6px var(--navy), 0 8px 24px rgba(0,0,0,0.4);
  }
  .step.is-active .node {
    background: var(--red);
    color: var(--warm-white);
    transform: scale(1.08);
  }
  .step.is-active.bg-navy .node {
    box-shadow: 0 0 0 6px var(--navy), 0 0 24px rgba(214,40,40,0.5);
  }
  .step.is-key .node {
    width: 72px; height: 72px;
    background: var(--red);
    color: var(--warm-white);
    border-color: var(--red);
    font-size: 15px;
    box-shadow: 0 0 0 8px var(--navy), 0 0 0 10px var(--red), 0 12px 30px rgba(214,40,40,0.4);
  }
  .step.is-key.bg-cream .node {
    box-shadow: 0 0 0 8px var(--cream), 0 0 0 10px var(--red), 0 12px 30px rgba(214,40,40,0.4);
  }
  @media (max-width: 900px) {
    .step .node { width: 44px; height: 44px; font-size: 12px; }
    .step.is-key .node { width: 52px; height: 52px; font-size: 13px; }
  }

  .step .panel {
    grid-column: 1;
    padding-right: clamp(20px, 3vw, 48px);
    text-align: right;
  }
  .step:nth-of-type(even) .panel { grid-column: 3; padding-right: 0; padding-left: clamp(20px, 3vw, 48px); text-align: left; }
  @media (max-width: 900px) {
    .step .panel, .step:nth-of-type(even) .panel {
      grid-column: 2; padding: 0 0 0 20px; text-align: left;
    }
  }

  /* Side column (across the line) for step-links */
  .step .step-side {
    grid-column: 3;
    padding-left: clamp(20px, 3vw, 48px);
    align-self: start;
    position: relative;
    z-index: 2;
  }
  .step:nth-of-type(even) .step-side {
    grid-column: 1;
    padding-left: 0;
    padding-right: clamp(20px, 3vw, 48px);
  }
  @media (max-width: 900px) {
    .step .step-side, .step:nth-of-type(even) .step-side {
      grid-column: 2; padding: 0 0 0 20px;
    }
  }

  .step .step-num { display: none; }

  .step .label {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .step.bg-cream .label { color: var(--ink-soft); }
  .step.bg-navy .label { opacity: 0.65; }
  .step.is-key .label { color: var(--red); opacity: 1; font-weight: 600; }

  .step h3 {
    font-size: clamp(24px, 2.6vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin: 0 0 14px;
  }
  .step h3 .star { color: var(--red); font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

  .step .body-text {
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.55;
    margin: 0;
    opacity: 0.92;
  }
  @media (max-width: 900px) { .step .body-text, .step:nth-of-type(even) .body-text { margin: 0; } }

  .step .body-text strong { font-weight: 600; }
  .step .body-text em { font-family: var(--serif); font-style: italic; }
  .step.bg-cream .body-text { color: var(--ink); }

  .step ul.bullets {
    list-style: none;
    padding: 0; margin: 14px 0 0;
    display: flex; flex-direction: column; gap: 6px;
    max-width: 100%;
  }

  .step ul.bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.88;
  }
  .step:nth-of-type(odd) ul.bullets li {
    padding-left: 0;
    padding-right: 18px;
    text-align: right;
  }
  @media (max-width: 900px) {
    .step:nth-of-type(odd) ul.bullets li {
      padding-left: 18px;
      padding-right: 0;
      text-align: left;
    }
  }

  .step ul.bullets li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--red);
  }
  .step:nth-of-type(odd) ul.bullets li::before {
    left: auto;
    right: 0;
  }
  @media (max-width: 900px) {
    .step:nth-of-type(odd) ul.bullets li::before {
      left: 0;
      right: auto;
    }
  }
  .step ul.bullets li strong { font-weight: 600; opacity: 1; }

  .step .meta-tags {
    margin-top: 16px;
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .step:nth-of-type(odd) .meta-tags { justify-content: flex-end; }
  @media (max-width: 900px) { .step:nth-of-type(odd) .meta-tags { justify-content: flex-start; } }
  .step .tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid currentColor;
    opacity: 0.75;
  }

  /* Warning callout inside a step */
  .step-warn {
    margin-top: 14px;
    padding: 12px 14px;
    border-left: 3px solid var(--red);
    background: rgba(214, 40, 40, 0.07);
    border-radius: 0 6px 6px 0;
    text-align: left;
  }
  .step-warn .warn-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
  }
  .step-warn p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.92;
  }
  .step-warn strong { font-weight: 600; }

  /* "Przydatne linki" block, now lives in opposite column via .step-side */
  .step-links {
    margin: 0;
    padding: clamp(22px, 2.4vw, 32px);
    border: 1px solid currentColor;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.025);
    position: relative;
  }
  .step.bg-navy .step-links {
    background: rgba(255, 247, 227, 0.035);
    border-color: rgba(255, 247, 227, 0.16);
  }
  .step.bg-cream .step-links {
    border-color: rgba(11, 37, 69, 0.12);
    background: rgba(255, 255, 255, 0.4);
  }
  @media (max-width: 900px) {
    .step-links { margin: 0; padding: 20px; }
  }
  .step-links .links-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .step-links .links-title::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--red);
  }
  /* Magazine-style numbered listing */
  .step-links .links {
    display: flex;
    flex-direction: column;
    counter-reset: link-counter;
  }
  .step-links a.link-item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 4px;
    border: none;
    border-top: 1px solid currentColor;
    border-radius: 0;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0;
    text-decoration: none;
    position: relative;
    color: inherit;
    background: transparent;
    counter-increment: link-counter;
    transition: opacity .25s ease, color .2s ease;
  }
  .step.bg-cream .step-links a.link-item { border-top-color: rgba(11, 37, 69, 0.1); }
  .step.bg-navy .step-links a.link-item { border-top-color: rgba(255, 247, 227, 0.14); }
  .step-links a.link-item:last-child {
    border-bottom: 1px solid currentColor;
  }
  .step.bg-cream .step-links a.link-item:last-child { border-bottom-color: rgba(11, 37, 69, 0.1); }
  .step.bg-navy .step-links a.link-item:last-child { border-bottom-color: rgba(255, 247, 227, 0.14); }

  /* Auto-numbered counter prefix */
  .step-links a.link-item::before {
    content: counter(link-counter, decimal-leading-zero);
    font-family: var(--display-font);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.42;
    transition: color .2s ease, opacity .2s ease;
  }

  .step-links a.link-item .name {
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: transform .3s ease;
  }
  .step-links a.link-item .arrow {
    font-size: 12px;
    opacity: 0.35;
    transition: opacity .25s ease, transform .3s ease, color .2s ease;
  }

  /* Hover state */
  .step-links a.link-item:hover { padding-left: 14px; }
  .step-links a.link-item:hover::before {
    color: var(--red);
    opacity: 1;
  }
  .step-links a.link-item:hover .name {
    color: var(--red);
    transform: translateX(2px);
  }
  .step-links a.link-item:hover .arrow {
    opacity: 1;
    color: var(--red);
    transform: translate(3px, -3px);
  }
  .step-links a.link-item:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: -2px;
    border-radius: 2px;
  }
  .step-links a.link-item .desc {
    opacity: 0.6;
    font-weight: 400;
    font-size: 11px;
    margin-top: 3px;
  }

  /* Big CTA on final step */
  .step.cta h3 {
    font-size: clamp(48px, 8vw, 140px);
    line-height: 0.92;
  }
  .step.cta .body-text { font-size: 18px; }

  /* ============== FAQ ============== */
  .faq {
    background: var(--cream);
    color: var(--ink);
    padding: 140px var(--pad-x);
  }
  .faq-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
  }
  @media (max-width: 800px) { .faq-head { grid-template-columns: 1fr; } }

  .faq-head .eyebrow { color: var(--ink-soft); margin-bottom: 16px; }

  .faq-list { max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--rule); }
  .faq-item { border-bottom: 1px solid var(--rule); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 32px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: baseline;
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .num {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    align-self: center;
  }
  .faq-item .plus {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    display: grid; place-items: center;

    transition: transform .35s ease, background .35s ease, color .35s ease;
    align-self: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .faq-item[open] .plus { transform: rotate(45deg); background: var(--ink); color: var(--cream); }
  .faq-item .answer {
    font-size: 16px;
    line-height: 1.55;
    max-width: 720px;
    padding: 0 0 32px 56px;
    color: var(--ink-soft);
  }
  @media (max-width: 600px) {
    .faq-item .answer { padding-left: 0; }
    .faq-item summary { gap: 16px; grid-template-columns: 1fr auto; }
    .faq-item .num { display: none; }
  }
