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

    /* ── DESIGN TOKENS — z apps/web/app/globals.css ───────── */
    :root {
      --brand:         #2A6B4F;
      --brand-hover:   #1e4d37;
      --brand-soft:    #EAF4EE;
      --text:          #111111;
      --body-text:     var(--text);
      --text-muted:    #6b7280;
      --text-light:    #9ca3af;
      --bg:            #ffffff;
      --bg-subtle:     #f9fafb;
      --bg-hover:      #f3f4f6;
      --border:        #e5e5e5;
      --border-strong: #e5e7eb;
      --btn-radius:    4px;
      --card-radius:   4px;
      --shadow-float:  0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
      --max-w:         1400px;
      --feature-visual-width: 520px;
      --calendar-bg-day-width: calc(100vw / 7);
      --font-heading:  'Geist', system-ui, sans-serif;
      --font-body:     'Inter', system-ui, sans-serif;
    }

    html { font-family: var(--font-body); font-size: 16px; color: var(--body-text); }
    body { background: var(--bg); min-height: 100vh; overflow-x: hidden; position: relative; }
    h1, h2, h3 { font-family: var(--font-heading); }

    /* ── TŁO — siatka kalendarza ─────────────────────────── */
    /* Poziome linie co 56px (gc-hour-height) + pionowe co 1/7 */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        repeating-linear-gradient(
          to bottom,
          transparent 0px, transparent 55px,
          rgba(42,107,79,0.07) 55px, rgba(42,107,79,0.07) 56px
        ),
        repeating-linear-gradient(
          to right,
          transparent 0px, transparent calc(var(--calendar-bg-day-width) - 1px),
          rgba(42,107,79,0.045) calc(var(--calendar-bg-day-width) - 1px), rgba(42,107,79,0.045) var(--calendar-bg-day-width)
        );
    }
    /* Wyłączenie siatki kalendarza dla wybranych podstron (np. /pomysly/) */
    body.planerto-fb-page::before { display: none; }

    /* Wszystkie elementy ponad tłem */
    .site-nav, section, .week-divider, .features-scroll { position: relative; z-index: 1; }

    /* ── SEPARATOR — ghost week header ───────────────────── */
    .week-divider {
      position: relative; z-index: 1;
      width: 100vw;
      max-width: none;
      margin-left: calc(50% - 50vw);
      display: grid;
      grid-template-columns: repeat(7, var(--calendar-bg-day-width));
      overflow: hidden;
      height: 30px;
      border-top: 1px solid rgba(42,107,79,0.08);
      border-bottom: 1px solid rgba(42,107,79,0.08);
    }
    .week-divider-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 10px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: rgba(42,107,79,0.18);
    }

    /* ── NAV ─────────────────────────────────────────────── */
    .site-nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    body.admin-bar .site-nav { top: 32px; }
    @media (max-width: 782px) {
      body.admin-bar .site-nav { top: 46px; }
    }
    .nav-inner {
      position: relative;
      max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between;
      height: 60px;
    }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo img { width: 168px; height: auto; display: block; }
    .nav-links {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
    }
    .nav-links a {
      position: relative;
      color: var(--text);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      padding: 9px 13px;
      border-radius: var(--btn-radius);
      transition: background .18s ease, color .18s ease;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 5px;
      height: 2px;
      border-radius: var(--btn-radius);
      background: var(--brand);
      opacity: 0;
      transform: scaleX(.35);
      transition: opacity .18s ease, transform .18s ease;
    }
    .nav-links a:hover {
      color: var(--brand-hover);
      background: var(--brand-soft);
    }
    .nav-links a:hover::after {
      opacity: .55;
      transform: scaleX(1);
    }
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .btn-ghost { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; padding: 6px 14px; border-radius: var(--btn-radius); transition: background .15s; }
    .btn-ghost:hover { background: var(--bg-hover); }
    .btn-primary { background: var(--brand); color: #fff; padding: 7px 16px; border-radius: var(--btn-radius); font-size: 14px; font-weight: 500; text-decoration: none; transition: background .15s; }
    .btn-primary:hover { background: var(--brand-hover); }
    .temporarily-hidden-cta { display: none !important; }

    /* ── HERO GRID ───────────────────────────────────────── */
    .hero {
      /* Lewa strona wyrównana do siatki, prawa ucieka za ekran */
      max-width: none;
      padding: 72px 0 80px max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
      display: grid;
      grid-template-columns: minmax(0, 560px) 1fr;
      gap: 64px;
      align-items: center;
      overflow: hidden;
    }
    .hero-copy { display: flex; flex-direction: column; margin-left: 10px; }

    /* Badge */
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--brand-soft); color: var(--brand);
      border: 1px solid rgba(42,107,79,0.2);
      border-radius: 100px; padding: 4px 12px 4px 8px;
      font-size: 12.5px; font-weight: 600; margin-bottom: 24px;
      align-self: flex-start;
    }
    .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: blink 2.4s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

    /* Headline */
    h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.85rem, 3.75vw, 3.75rem);
      font-weight: 700; line-height: 1.05; letter-spacing: 0;
      color: var(--text); margin-bottom: 24px;
    }
    /* Hero ma dłuższy headline — mniejszy rozmiar, żeby zmieścił się w lewej kolumnie obok mockupu */
    .hero h1 {
      font-size: clamp(2.1rem, 2.7vw, 2.75rem);
      line-height: 1.12;
      letter-spacing: -0.01em;
      max-width: 18ch;
    }
    h1 .accent { color: var(--brand); }
    h1 .marker-accent {
      position: relative;
      display: inline-block;
      color: var(--text);
      white-space: nowrap;
      z-index: 0;
    }
    h1 .marker-accent::after {
      content: "";
      position: absolute;
      left: -0.04em;
      right: -0.04em;
      bottom: 0.02em;
      height: 0.18em;
      background: color-mix(in srgb, var(--brand) 80%, transparent);
      border-radius: var(--btn-radius);
      transform: rotate(-1.2deg);
      z-index: -1;
    }

    /* Bullets */
    .hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
    .hero-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--body-text); line-height: 1.55; }
    .bullet-check { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; }
    .bullet-check svg { width: 9px; height: 9px; color: var(--brand); }
    .hero-bullets strong { color: var(--text); font-weight: 600; }

    /* CTA */
    .hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
    .btn-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--brand); color: #fff; padding: 11px 22px; border-radius: var(--btn-radius); font-size: 14.5px; font-weight: 600; text-decoration: none; transition: background .15s; }
    .btn-cta:hover { background: var(--brand-hover); }
    .cta-note { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .cta-note span { display: flex; align-items: center; gap: 5px; }
    .cta-check { width: 14px; height: 14px; background: var(--brand-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .cta-check svg { width: 8px; height: 8px; color: var(--brand); }

    /* ── DASHBOARD MOCKUP ───────────────────────────────── */
    /* Tokeny z apps/web/app/dashboard + globals.css          */
    .hero-visual { min-width: 0; position: relative; display: flex; justify-content: flex-end; }
    .hero-visual::after {
      content: "";
      position: absolute;
      top: -24px;
      right: 0;
      bottom: -24px;
      width: clamp(40px, 6vw, 88px);
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 72%, #ffffff 100%);
      pointer-events: none;
      z-index: 3;
    }
    .dm-wrap { position: relative; width: 100%; }

    /* Outer card — shell appki, ucieka za prawy brzeg */
    .dm-shell {
      width: 100%;
      border: 1px solid var(--border-strong);
      border-radius: 8px 0 0 8px; /* tylko lewe zaokrąglenia */
      border-right: none;
      overflow: hidden;
      box-shadow: -4px 4px 32px rgba(0,0,0,0.08), -1px 1px 6px rgba(0,0,0,0.04);
      background: #f9fafb;
      font-size: 12px;
      user-select: none;
    }

    /* dash-page inner */
    .dm-inner { padding: 14px; display: flex; flex-direction: column; gap: 12px; }

    /* dash-stats — grid 3 cols, bez ikon */
    .dm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .dm-stat {
      background: white; border: 1px solid #e5e7eb; border-radius: 4px;
      padding: 13px 14px;
    }
    .dm-stat-label { font-size: 11px; color: #6b7280; margin-bottom: 4px; }
    .dm-stat-value { font-size: 22px; font-weight: 600; color: #111827; line-height: 1; margin-bottom: 2px; }
    .dm-stat-note  { font-size: 10px; color: #9ca3af; }

    /* dash-panels — 2 cols */
    .dm-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .dm-panel { background: white; border: 1px solid #e5e7eb; border-radius: 4px; overflow: hidden; }
    .dm-panel-head { padding: 11px 14px; border-bottom: 1px solid #e5e7eb; }
    .dm-panel-title { font-size: 13px; font-weight: 600; color: #111827; }
    .dm-panel-body { display: flex; flex-direction: column; }

    /* Activity rows */
    .dm-act-row {
      display: flex; align-items: flex-start; gap: 9px;
      padding: 10px 14px; border-bottom: 1px solid #f3f4f6;
      opacity: 0; transform: translateY(-4px);
      transition: opacity .3s ease, transform .3s ease;
    }
    .dm-act-row:last-child { border-bottom: none; }
    .dm-act-row.visible { opacity: 1; transform: translateY(0); }
    .dm-act-ic {
      width: 28px; height: 28px; border-radius: 4px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .dm-act-ic.signup   { background: #dcfce7; color: #16a34a; }
    .dm-act-ic.payment  { background: #EAF4EE; color: #2A6B4F; }
    .dm-act-ic.reminder { background: #EFF6FF; color: #3B82F6; }
    .dm-act-ic.waitlist { background: #EAF4EE; color: #2A6B4F; }
    .dm-act-ic.confirm  { background: #dcfce7; color: #16a34a; }
    .dm-act-title { font-size: 11.5px; font-weight: 500; color: #111827; margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .dm-act-detail { font-size: 10.5px; color: #6b7280; }
    .dm-act-time   { font-size: 10px; color: #9ca3af; margin-left: auto; flex-shrink: 0; padding-top: 2px; }

    /* Event rows — .dash-event-row */
    .dm-ev-row { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border-bottom: 1px solid #f3f4f6; }
    .dm-ev-row:last-child { border-bottom: none; }
    .dm-ev-bar { width: 3px; min-height: 48px; border-radius: 99px; flex-shrink: 0; }
    .dm-ev-content { flex: 1; min-width: 0; }
    .dm-ev-title { font-size: 12px; font-weight: 500; color: #111827; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .dm-ev-meta  { font-size: 10.5px; color: #6b7280; margin-bottom: 5px; }
    .dm-ev-badge { font-size: 10.5px; font-weight: 500; background: #EAF4EE; color: #2A6B4F; padding: 1px 7px; border-radius: 3px; display: inline-block; }

    /* ── FEATURES ALT ROWS ───────────────────────────────── */
    .usp-tag {
      display: inline-block;
      font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--brand); background: var(--brand-soft);
      border-radius: 3px; padding: 3px 9px; margin-bottom: 14px;
    }
    .alt-section { max-width: var(--max-w); margin: 0 auto; padding: 72px 32px 88px; }
    .alt-section-header { text-align: center; margin-bottom: 72px; }
    .alt-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
    .alt-section-header h2 {
      font-family: var(--font-heading);
      max-width: 980px;
      margin: 0 auto;
      font-size: clamp(1.9rem, 2.35vw, 2.55rem);
      font-weight: 500;
      line-height: 1.14;
      letter-spacing: -.04em;
      color: var(--text);
      text-wrap: balance;
    }

    .alt-row {
      display: flex; align-items: center; justify-content: center; gap: 36px;
      padding: 64px 0;
    }
    .alt-row:first-of-type { padding-top: 0; }
    .alt-row:last-of-type  { border-bottom: none; padding-bottom: 0; }
    .alt-row.flip { flex-direction: row-reverse; }

    .alt-copy { flex: 0 1 500px; max-width: 500px; }
    .alt-copy h3 {
      font-family: var(--font-heading);
      max-width: 20ch;
      font-size: clamp(1.56rem, 2.05vw, 2.02rem);
      font-weight: 500;
      line-height: 1.18;
      letter-spacing: -.03em;
      color: var(--text);
      margin-bottom: 14px;
    }
    .alt-row-primary .alt-copy h3 { max-width: 26ch; }
    .alt-row-primary .alt-copy p { max-width: 46ch; }
    .alt-copy p  { max-width: 42ch; font-size: 15.5px; color: var(--body-text); line-height: 1.78; }

    .alt-visual {
      flex: 0 1 var(--feature-visual-width);
      min-width: 0;
      max-width: var(--feature-visual-width);
      width: min(100%, var(--feature-visual-width));
      padding: 0;
      background: transparent;
      border: none;
      border-radius: 8px;
      overflow: hidden;
    }
    .alt-visual > * { width: 100%; }
    .alt-row.flip { gap: 36px; }

    /* Scroll-triggered fade-in from the appropriate side */
    .alt-copy  { opacity: 0; transform: translateX(-22px); transition: opacity .5s ease, transform .5s ease; }
    .alt-row.flip .alt-copy  { transform: translateX(22px); }
    .alt-visual { opacity: 0; transform: translateX(22px);  transition: opacity .5s ease .1s, transform .5s ease .1s; }
    .alt-row.flip .alt-visual { transform: translateX(-22px); }
    .alt-row.in-view .alt-copy,
    .alt-row.in-view .alt-visual { opacity: 1; transform: translateX(0); }

    /* ── USP 1: mini public booking widget ─── */
    .bk-url-bar {
      display: flex; align-items: center; gap: 7px;
      background: #fff; border: 1px solid var(--border-strong); border-radius: 4px;
      padding: 7px 11px;
      font-size: 11.5px; color: var(--text-muted); font-family: inherit;
    }
    .bk-url-bar svg { flex-shrink: 0; color: var(--brand); opacity: .7; }
    .bk-url-domain { color: var(--text); font-weight: 500; }

    .bk-workshop-title {
      font-size: 13.5px; font-weight: 600; color: var(--text);
      padding: 6px 0 2px;
    }
    .bk-workshop-sub {
      font-size: 11.5px; color: var(--text-muted); margin-bottom: 4px;
    }

    .bk-week-row {
      display: grid; grid-template-columns: repeat(7, 1fr);
      background: #fff; border: 1px solid var(--border-strong); border-radius: 4px; overflow: hidden;
    }
    .bk-week-cell {
      padding: 5px 0; text-align: center;
      font-size: 9.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: rgba(42,107,79,0.35);
      border-left: 1px solid rgba(42,107,79,0.06);
    }
    .bk-week-cell:first-child { border-left: none; }

    .bk-dates { display: flex; flex-direction: column; gap: 6px; }
    .bk-date-row {
      display: flex; align-items: center; justify-content: space-between;
      background: #fff; border: 1px solid var(--border-strong); border-radius: 4px;
      padding: 8px 12px;
    }
    .bk-date-row.selected {
      border-color: var(--brand); background: var(--brand-soft);
    }
    .bk-date-label { font-size: 12px; font-weight: 500; color: var(--text); }
    .bk-date-slots { font-size: 11px; color: var(--text-muted); }
    .bk-date-row.selected .bk-date-label,
    .bk-date-row.selected .bk-date-slots { color: var(--brand); }
    .bk-avail-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 5px; background: #22c55e; }
    .bk-avail-dot.low { background: #f59e0b; }

    .bk-cta {
      display: flex; align-items: center; justify-content: center;
      background: var(--brand); color: #fff;
      border-radius: 4px; padding: 9px;
      font-size: 12.5px; font-weight: 600;
      margin-top: 2px;
    }

    /* ── USP 1b: calendar preview ─── */
    .alt-visual--calendar {
      overflow: visible;
    }
    .alt-visual--floating {
      overflow: visible;
    }
    .cal-preview {
      width: 100%;
      overflow: hidden;
      border: 1px solid var(--border-strong);
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow-float);
    }
    .cal-head {
      display: grid; grid-template-columns: 40px 1fr 1fr 1fr;
      border-bottom: 1px solid var(--border-strong);
      background: #fff;
    }
    .cal-day-head {
      display: flex; flex-direction: column; align-items: center;
      padding: 5px 6px; gap: 2px;
      border-left: 1px solid var(--border-strong);
    }
    .cal-day-head > span {
      font-size: 10px; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; font-weight: 600;
    }
    .cal-day-head > strong {
      font-size: 13px; font-weight: 600; color: #111827;
      width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
      border-radius: 0;
    }
    .cal-day-head.cal-today > strong {
      background: var(--brand); color: #fff; border-radius: 999px;
    }
    .cal-body { display: grid; grid-template-columns: 40px 1fr 1fr 1fr; }
    .cal-time-slot {
      height: 42px; padding: 3px 5px 0 0;
      border-bottom: 1px solid var(--border-strong);
      font-size: 9.5px; color: var(--text-muted);
      text-align: right; display: flex; align-items: flex-start; justify-content: flex-end;
    }
    .cal-col {
      position: relative;
      height: calc(6 * 42px);
      border-left: 1px solid var(--border-strong);
      background-image: repeating-linear-gradient(
        to bottom, transparent 0px, transparent 41px,
        var(--border-strong) 41px, var(--border-strong) 42px
      );
    }
    .cal-col.cal-today { background-color: #f8fbfa; }
    .cal-event {
      position: absolute; left: 4%; width: 92%;
      border-radius: 4px; padding: 3px 5px;
      display: flex; flex-direction: column; gap: 1px;
      overflow: hidden; cursor: pointer;
      box-sizing: border-box;
    }
    .cal-event strong { font-size: 9.5px; font-weight: 500; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
    .cal-event-time, .cal-event-seats { font-size: 9px; line-height: 1.2; opacity: 0.85; }
    .cal-event-cta {
      display: inline-flex; align-items: center; gap: 3px;
      margin-top: 3px; align-self: flex-start;
      background: var(--brand); color: #fff;
      border-radius: 3px; padding: 2px 6px;
      font-size: 9px; font-weight: 400; white-space: nowrap;
    }
    .cal-event--green  { border: 1px solid #22c55e; background: #dcfce7; color: #16a34a; }
    .cal-event--purple { border: 1px solid #a855f7; background: #f3e8ff; color: #7c3aed; }
    .cal-event--orange { border: 1px solid #f97316; background: #ffedd5; color: #ea580c; }
    .cal-event--pink   { border: 1px solid #ec4899; background: #fce7f3; color: #db2777; }
    .cal-now-line {
      position: absolute; left: 0; right: 0; height: 2px; background: #d93025; z-index: 3; pointer-events: none;
    }
    .cal-now-dot {
      position: absolute; width: 9px; height: 9px; border-radius: 999px;
      background: #d93025; left: 0; top: 50%; transform: translate(-50%, -50%);
    }

    /* ── USP 2: notifications panel (dashboard style) ─── */
    .notif-panel {
      background: #fff; border: 1px solid var(--border-strong);
      border-radius: 8px; display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--shadow-float);
    }
    .notif-panel-head {
      display: flex; align-items: center; gap: 8px;
      padding: 16px 20px; border-bottom: 1px solid var(--border-strong);
    }
    .notif-panel-title { font-size: 14px; font-weight: 600; color: #111827; margin: 0; }
    .notif-row {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 20px; border-bottom: 1px solid var(--bg-hover);
    }
    .notif-row:last-child { border-bottom: none; }
    .notif-icon {
      width: 32px; height: 32px; border-radius: 4px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .notif-icon.green  { background: #dcfce7; color: #16a34a; }
    .notif-icon.blue   { background: #eff6ff; color: #3b82f6; }
    .notif-icon.yellow { background: #fefce8; color: #ca8a04; }
    .notif-content { flex: 1; min-width: 0; }
    .notif-title  { font-size: 13.5px; font-weight: 500; color: #111827; margin: 0 0 2px; }
    .notif-detail { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.45; }

    /* ── USP 3: waitlist flow ───────────────────────────── */
    .wl-panel {
      background: #fff; border: 1px solid var(--border-strong); border-radius: 8px;
      overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-float);
    }
    .wl-panel-head {
      display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
      padding: 16px 20px; border-bottom: 1px solid var(--border-strong);
    }
    .wl-panel-title { font-size: 14px; font-weight: 600; color: #111827; margin: 0 0 4px; }
    .wl-panel-sub { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.45; }
    .wl-status {
      font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap;
    }
    .wl-status.full { background: #fee2e2; color: #dc2626; }
    .wl-status.green { background: #dcfce7; color: #16a34a; }
    .wl-list { display: flex; flex-direction: column; }
    .wl-row {
      display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: start;
      padding: 16px 20px; border-bottom: 1px solid var(--bg-hover);
      background: #fff;
    }
    .wl-row:last-child { border-bottom: none; }
    .wl-row-icon {
      width: 32px; height: 32px; border-radius: 4px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .wl-row-icon.cancel { background: #fef3c7; color: #d97706; }
    .wl-row-icon.notify { background: var(--brand-soft); color: var(--brand); }
    .wl-row-icon.confirm { background: #dcfce7; color: #16a34a; }
    .wl-row-title { font-size: 13.5px; font-weight: 500; color: #111827; margin: 0 0 3px; }
    .wl-row-detail { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin: 0; }
    .wl-row-meta { font-size: 12px; color: var(--text-muted); white-space: nowrap; padding-top: 2px; }
    .wl-row-meta.badge {
      font-weight: 600; color: #16a34a; background: #dcfce7;
      padding: 3px 8px; border-radius: 999px;
    }
    /* ── USP 4: policy cards ─────────────────────────────── */
    .policy-shell {
      background: #fff;
      border: 1px solid var(--border-strong);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-float);
    }
    .policy-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .policy-card {
      background: #fff;
      min-width: 0;
    }
    .policy-card + .policy-card { border-left: 1px solid var(--border-strong); }
    .policy-card-top {
      padding: 16px 18px;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px;
      background: #fff;
    }
    .policy-card-top-icon {
      width: 32px; height: 32px; border-radius: 4px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: var(--brand-soft); color: var(--brand);
    }
    .policy-card-title { font-size: 14px; font-weight: 600; color: var(--text); }
    .policy-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
    .policy-rule { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-muted); line-height: 1.45; }
    .policy-rule-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; background: var(--brand); }
    .policy-divider { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin: 0 0 2px; }

    .policy-bottom {
      background: #fff;
      padding: 16px 18px;
      display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-float);
    }
    .policy-shell .policy-bottom { box-shadow: none; border-top: 1px solid var(--border-strong); }
    .policy-bottom-label { font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }
    .policy-bottom-val   { font-size: 14px; font-weight: 600; color: var(--text); }
    .policy-bottom-check {
      width: 20px; height: 20px; border-radius: 4px;
      background: var(--brand-soft); color: var(--brand);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    @media (max-width: 640px) {
      .policy-pair { grid-template-columns: 1fr; }
      .policy-card + .policy-card { border-left: none; border-top: 1px solid var(--border-strong); }
    }

    .planerto-page blockquote,
    .planerto-page .wp-block-quote,
    .planerto-page .wp-block-pullquote {
      margin: 0;
      padding: 0;
      border: 0;
      color: var(--text);
    }
    .planerto-page blockquote p,
    .planerto-page .wp-block-quote p,
    .planerto-page .wp-block-pullquote p {
      font-size: clamp(1.05rem, 1.25vw, 1.25rem) !important;
      line-height: 1.5 !important;
      letter-spacing: -0.02em;
    }
    /* ── USP 5: participant table ────────────────────────── */
    .ptable { display: flex; flex-direction: column; gap: 0; box-shadow: var(--shadow-float); border-radius: 8px; overflow: hidden; }
    .ptable-head {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      padding: 12px 18px; background: var(--bg-hover);
      border: 1px solid var(--border-strong); border-radius: 8px 8px 0 0;
      font-size: 13.5px; font-weight: 600; color: var(--text);
    }
    .ptable-row {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      padding: 16px 18px; border: 1px solid var(--border-strong); border-top: none;
      align-items: center; gap: 0;
      background: #fff;
    }
    .ptable-row:last-child { border-radius: 0 0 8px 8px; }
    .ptable-head > span,
    .ptable-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
      width: 100%;
      text-align: center;
    }
    .ptable-participant { display: flex; align-items: center; justify-content: center; min-width: 0; width: 100%; }
    .ptable-head > span:first-child,
    .ptable-row > .ptable-cell:first-child,
    .ptable-row > .ptable-cell:first-child .ptable-participant {
      justify-content: flex-start;
      text-align: left;
    }
    .ptable-head > span:last-child,
    .ptable-row > .ptable-cell:last-child {
      justify-content: flex-end;
      text-align: right;
    }
    .ptable-name  { font-size: 12px; font-weight: 500; color: var(--text); }
    .ptable-ws    { font-size: 12px; color: var(--text-muted); text-align: center; width: 100%; }
    .pt-status {
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 4px;
      white-space: nowrap;
    }
    .pt-status.paid     { background: #dcfce7; color: #16a34a; }
    .pt-status.partial  { background: #fef3c7; color: #b45309; }
    .pt-status.unpaid   { background: #fee2e2; color: #dc2626; }

    /* ── USP 6: info panel / FAQ ─────────────────────────── */
    .info-panel {
      background: #fff; border: 1px solid var(--border-strong); border-radius: 8px;
      overflow: hidden; box-shadow: var(--shadow-float);
    }
    .info-panel-head {
      padding: 16px 20px; border-bottom: 1px solid var(--border);
      font-size: 13.5px; font-weight: 600; color: var(--text);
      display: flex; align-items: center; gap: 8px;
    }
    .info-panel-head-label { font-size: 12px; font-weight: 600; background: var(--brand-soft); color: var(--brand); border-radius: 3px; padding: 5px 11px; margin-left: auto; }
    .info-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    }
    .info-cell {
      padding: 16px 20px; border-bottom: 1px solid var(--border);
    }
    .info-cell:nth-child(odd) { border-right: 1px solid var(--border); }
    .info-cell-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); margin-bottom: 6px; }
    .info-cell-val   { font-size: 13.5px; font-weight: 600; color: var(--text); }
    .info-cell-sub   { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
    .info-faq { display: flex; flex-direction: column; }
    .info-faq-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px; border-bottom: 1px solid var(--border); gap: 12px;
    }
    .info-faq-item:last-child { border-bottom: none; }
    .info-faq-q { font-size: 12px; color: var(--text-muted); flex: 1; line-height: 1.45; }
    .info-faq-check {
      width: 20px; height: 20px; border-radius: 50%; background: #dcfce7;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .info-faq-check svg { color: #16a34a; }

    /* ── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 1200px) and (min-width: 961px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
        align-items: center;
        padding: 56px 40px 72px;
        overflow: hidden;
      }
      .hero-copy {
        align-self: center;
        align-items: center;
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
      }
      .hero-bullets {
        width: 100%;
        max-width: 680px;
        align-self: center;
      }
      .hero-bullets li {
        max-width: 640px;
        margin: 0 auto;
        text-align: left;
        font-size: 15px;
      }
      .hero-visual { justify-content: center; }
      .hero-visual::after { display: none; }
      .dm-wrap { max-width: 760px; margin: 0 auto; }
      .dm-shell { border-radius: 8px; border-right: 1px solid var(--border-strong); box-shadow: var(--shadow-float); }
      .hero h1 {
        font-size: clamp(3rem, 6.4vw, 3.85rem);
        line-height: 1.02;
        letter-spacing: 0;
        margin-bottom: 32px;
      }
    }
    @media (max-width: 960px) {
      .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px 64px; overflow: hidden; }
      .hero-badge { align-self: flex-start; }
      .dm-shell { border-radius: 8px; border-right: 1px solid var(--border-strong); box-shadow: var(--shadow-float); }
      .alt-row { gap: 28px; }
      .alt-copy { flex: 0 1 380px; max-width: 380px; }
      .alt-visual { flex: 0 1 var(--feature-visual-width); max-width: var(--feature-visual-width); width: min(100%, var(--feature-visual-width)); }
      .alt-row.flip { gap: 28px; }
    }
    @media (max-width: 768px) {
      .alt-row, .alt-row.flip { flex-direction: column; gap: 24px; padding: 32px 0; }
      .alt-copy { flex: none; width: 100%; opacity: 1; transform: none !important; }
      .alt-visual { flex: none; opacity: 1; transform: none !important; }
      .alt-section { padding: 48px 20px 64px; }
      .alt-section-header h2 { font-size: clamp(1.45rem, 8vw, 2rem); line-height: 1.18; }
      .alt-copy h3 { max-width: none; font-size: clamp(1.3rem, 5.5vw, 1.75rem); line-height: 1.22; }
      .alt-row-primary .alt-copy h3 { font-size: clamp(1.4rem, 5.9vw, 1.85rem); }
      .alt-copy p { max-width: none; font-size: 15px; line-height: 1.75; }
      .alt-visual { width: 100%; max-width: none; }
    }
    @media (max-width: 640px) {
      :root { --calendar-bg-day-width: 104px; }
      /* Week-divider ma 7 kolumn po 104px (=728px) — szersze niż telefon, co rozpychało layout
         i obcinało hero. Na wąskich ekranach kolumny ułamkowe = zawsze równe szerokości viewportu.
         100vw (zamiast 100%) doliczało szerokość scrollbara → poziomy scroll; tu pełna szerokość = 100%. */
      .week-divider {
        grid-template-columns: repeat(7, 1fr);
        width: 100%;
        margin-left: 0;
      }
      .nav-links { display: none; }
      .hero { padding: 40px 20px 56px; }
      .hero h1 {
        font-size: clamp(1.75rem, 7.6vw, 2rem);
        line-height: 1.14;
        max-width: none;
        text-wrap: balance;
      }
      /* Pozwól frazie z markerem zawijać się na wąskich ekranach (zamiast wypychać linię poza viewport).
         Highlight rysowany jako background na samym spanie (box-decoration-break) — podąża za każdą zawiniętą linią. */
      .hero h1 .marker-accent {
        display: inline;
        white-space: normal;
        background-image: linear-gradient(
          color-mix(in srgb, var(--brand) 80%, transparent),
          color-mix(in srgb, var(--brand) 80%, transparent)
        );
        background-repeat: no-repeat;
        background-size: 100% 0.16em;
        background-position: 0 92%;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
      }
      .hero h1 .marker-accent::after { display: none; }
      .hero-visual::after { display: none; }
      .dm-panels { grid-template-columns: 1fr; }
      .dm-panels .dm-panel:nth-child(2) { display: none; }
      .toast { display: none; }
    }

    /* ── TRZY KROKI — FLOW VISUALIZATION ─────────────────── */
    .trepas         { max-width: var(--max-w); margin: 0 auto; padding: 80px 32px 88px; }
    .trepas-header  { text-align: center; margin-bottom: 1px; }
    .trepas-header h2 { font-family: var(--font-heading); font-size: clamp(1.9rem, 2.35vw, 2.55rem); font-weight: 500; line-height: 1.14; letter-spacing: -.04em; color: var(--text); margin-bottom: 14px; text-wrap: balance; }
    .trepas-header p  { font-size: 15px; color: var(--body-text); max-width: 500px; margin: 0 auto; line-height: 1.6; }

    .trepas-stage {
      position: relative;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
    }
    .trepas-svg-wrap {
      position: relative;
      -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black calc((100vw - var(--max-w)) / 2 + 32px + 80px),
        black calc(100vw - (100vw - var(--max-w)) / 2 - 32px - 160px),
        transparent 100%
      );
      mask-image: linear-gradient(to right,
        transparent 0%,
        black calc((100vw - var(--max-w)) / 2 + 32px + 80px),
        black calc(100vw - (100vw - var(--max-w)) / 2 - 32px - 160px),
        transparent 100%
      );
    }
    .trepas-svg { display: block; width: 100%; height: auto; }
    .trepas-flow-shadow,
    .trepas-flow-line {
      stroke-dasharray: 1;
      stroke-dashoffset: 1;
    }
    .trepas-mobile-flow-shadow,
    .trepas-mobile-flow-line {
      stroke-dasharray: 1;
      stroke-dashoffset: 1;
    }
    .trepas.in-view .trepas-flow-shadow {
      animation: trepas-line-draw 2.8s cubic-bezier(.55, 0, .2, 1) .2s forwards;
    }
    .trepas.in-view .trepas-flow-line {
      animation: trepas-line-draw 3s cubic-bezier(.55, 0, .2, 1) forwards;
    }
    .trepas.in-view .trepas-mobile-flow-shadow {
      animation: trepas-line-draw 2.8s cubic-bezier(.55, 0, .2, 1) .2s forwards;
    }
    .trepas.in-view .trepas-mobile-flow-line {
      animation: trepas-line-draw 3s cubic-bezier(.55, 0, .2, 1) forwards;
    }
    @keyframes trepas-line-draw {
      to { stroke-dashoffset: 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      .trepas-flow-shadow,
      .trepas-flow-line,
      .trepas-mobile-flow-shadow,
      .trepas-mobile-flow-line {
        animation: none !important;
        stroke-dashoffset: 0;
      }
    }

    /* Planerto logo overlay — nad linią po prawej */
    .trepas-results {
      position: absolute;
      right: 18%;
      top: 56%;
      transform: translateY(-100%);
      display: flex; justify-content: center;
      pointer-events: none;
    }
    .trepas-logo {
      width: clamp(168px, 10.5vw, 232px);
      height: auto;
    }
    .trepas-mobile-flow { display: none; }
    .trepas-mobile-svg {
      display: block;
      width: min(100%, 360px);
      height: auto;
      margin: 0 auto;
      overflow: visible;
    }
    .trepas-mobile-icon rect {
      filter: drop-shadow(0 1px 3px rgba(0,0,0,0.08));
    }
    .tr-eyebrow {
      font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--brand); background: var(--brand-soft); border-radius: 3px;
      padding: 2px 8px; display: inline-block; margin-bottom: 6px; align-self: flex-start;
    }
    .tr-row {
      display: flex; align-items: center; gap: 7px;
      background: white; border: 1px solid var(--border-strong);
      border-radius: 4px; padding: 6px 9px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .tr-ic {
      width: 22px; height: 22px; border-radius: 3px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .tr-title { font-size: 10.5px; font-weight: 500; color: var(--text); display: block; }
    .tr-sub   { font-size: 9.5px;  color: var(--text-muted);             display: block; }
    .tr-row.tr-full { background: var(--brand); border-color: var(--brand); }
    .tr-row.tr-full .tr-title,
    .tr-row.tr-full .tr-sub   { color: white; }

    /* Zone labels */
    .trepas-labels {
      display: grid; grid-template-columns: repeat(4, 1fr);
      background: white;
      border: 1px solid var(--border-strong);
      border-radius: 4px;
      overflow: hidden;
      max-width: 1200px;
      margin: 12px auto 0;
    }
    .tl-zone {
      padding: 14px 18px;
      border-right: 1px solid var(--border-strong);
    }
    .tl-zone:last-child { border-right: none; }
    .tl-zone strong { font-size: 14.5px; font-weight: 700; color: var(--text); display: block; margin-bottom: 4px; }
    .tl-zone p { font-size: 14px; color: var(--body-text); line-height: 1.55; margin: 0; }
    .tl-zone.tl-planerto strong { color: var(--brand); }
    .tl-zone.tl-planerto p     { color: var(--brand); opacity: .7; }

    @media (max-width: 768px) {
      .trepas { padding: 48px 20px 64px; }
      .trepas-stage { width: auto; margin-left: 0; }
      .trepas-svg-wrap { display: none; }
      .trepas-mobile-flow {
        display: block;
        width: min(100%, 360px);
        margin: 28px auto 18px;
      }
      .trepas-results { position: static; width: 100%; padding: 12px 16px; background: white; border-top: 1px solid var(--border); }
      .trepas-labels  { grid-template-columns: 1fr; }
      .tl-zone { border-right: none; border-bottom: 1px solid var(--border); }
      .tl-zone:last-child { border-bottom: none; }
    }

    /* ── OD ZAŁOŻYCIELA — cytat ──────────────────────────── */
    .founder {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 96px 32px 104px;
    }
    .founder-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
      gap: 72px;
      align-items: center;
      max-width: 1080px;
      margin: 0 auto;
    }
    .founder-portrait {
      position: relative;
      justify-self: center;
      width: min(100%, 260px);
      aspect-ratio: 4 / 5;
    }
    .founder-portrait-halo {
      position: absolute;
      inset: -10%;
      border-radius: var(--btn-radius);
      background: conic-gradient(
        from 0deg,
        rgba(42,107,79,0.16),
        rgba(42,107,79,0.03) 28%,
        rgba(42,107,79,0.14) 55%,
        rgba(42,107,79,0.03) 82%,
        rgba(42,107,79,0.16));
      filter: blur(28px);
      opacity: 0;
      transition: opacity 1.2s ease;
      animation: founder-halo-spin 28s linear infinite;
      pointer-events: none;
    }
    .founder.in-view .founder-portrait-halo { opacity: 1; }
    @keyframes founder-halo-spin {
      to { transform: rotate(360deg); }
    }
    .founder-portrait-card {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 14px;
      overflow: hidden;
      background: var(--bg-subtle);
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow-float);
      opacity: 0;
      transform: scale(.94) translateY(12px);
      transition: opacity .9s cubic-bezier(.2,.8,.2,1),
                  transform .9s cubic-bezier(.2,.8,.2,1);
    }
    .founder.in-view .founder-portrait-card {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
    .founder-portrait-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 22%;
      display: block;
      animation: founder-portrait-float 8s ease-in-out infinite;
    }
    @keyframes founder-portrait-float {
      0%, 100% { transform: scale(1.03) translateY(0); }
      50%      { transform: scale(1.03) translateY(-6px); }
    }
    .founder-portrait-card::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(160deg,
        rgba(255,255,255,0) 55%,
        rgba(255,255,255,0.10) 75%,
        rgba(255,255,255,0) 100%);
      pointer-events: none;
    }
    .founder-content { min-width: 0; }
    .founder-quote {
      font-family: var(--font-heading);
      font-size: clamp(1.55rem, 2.05vw, 1.93rem);
      line-height: 1.42;
      font-weight: 500;
      letter-spacing: -.026em;
      color: var(--text);
      text-wrap: balance;
      margin: 0 0 36px;
    }
    .founder-quote .fw {
      display: inline-block;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .55s cubic-bezier(.2,.8,.2,1),
                  transform .55s cubic-bezier(.2,.8,.2,1);
    }
    .founder.in-view .founder-quote .fw {
      opacity: 1;
      transform: translateY(0);
    }
    .founder-marker {
      position: relative;
      display: inline;
      color: var(--text);
      z-index: 0;
    }
    .founder-marker::before {
      content: "";
      position: absolute;
      left: -0.06em; right: -0.06em;
      bottom: 0.04em;
      height: 0.42em;
      background: color-mix(in srgb, var(--brand) 26%, transparent);
      border-radius: var(--btn-radius);
      transform: rotate(-.8deg) scaleX(0);
      transform-origin: left center;
      transition: transform 1s cubic-bezier(.65,.05,.35,1);
      z-index: -1;
    }
    .founder.in-view .founder-marker::before {
      transform: rotate(-.8deg) scaleX(1);
    }
    .founder-signature {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 22px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .founder.in-view .founder-signature {
      opacity: 1;
      transform: translateY(0);
    }
    .founder-sig-mark {
      width: 28px; height: 1px;
      background: var(--brand);
      opacity: .5;
    }
    .founder-signature-photo {
      display: none;
    }
    .founder-sig-text { display: flex; flex-direction: column; gap: 2px; }
    .founder-name {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }
    .founder-role {
      font-size: 13px;
      color: var(--text);
      line-height: 1.4;
    }
    @media (max-width: 860px) {
      .founder { padding: 64px 20px 72px; }
      .founder-grid { grid-template-columns: 1fr; gap: 40px; }
      .founder-portrait { display: none; }
      .founder-content { text-align: left; }
      .founder-quote { font-size: clamp(1.45rem, 5.6vw, 1.73rem); margin-bottom: 28px; }
      .founder-marker {
        background-image: linear-gradient(
          to right,
          color-mix(in srgb, var(--brand) 26%, transparent),
          color-mix(in srgb, var(--brand) 26%, transparent)
        );
        background-repeat: no-repeat;
        background-size: 0 .42em;
        background-position: 0 86%;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
        transition: background-size 1s cubic-bezier(.65,.05,.35,1);
      }
      .founder.in-view .founder-marker {
        background-size: 100% .42em;
      }
      .founder-marker::before {
        display: none;
      }
      .founder-signature {
        position: relative;
        min-height: 72px;
        gap: 12px;
        padding-left: 86px;
      }
      .founder-signature-photo {
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        width: 64px;
        height: 64px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border-strong);
        box-shadow: 0 10px 24px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
        transform: translateY(-50%) rotate(-3deg);
      }
      .founder-signature-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 22%;
        display: block;
      }
      .founder-sig-mark { width: 22px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .founder-portrait-halo,
      .founder-portrait-card img { animation: none; }
      .founder-portrait-card,
      .founder-quote .fw,
      .founder-signature {
        transition: none;
      }
      .founder-marker::before { transform: rotate(-.8deg) scaleX(1); transition: none; }
      .founder.in-view .founder-portrait-halo { opacity: .6; }
    }

    /* ── FOOTER ─────────────────────────────────────────── */
    .site-footer {
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,0.86);
      border-top: 1px solid var(--border-strong);
    }
    .site-footer-main {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 56px 32px 52px;
      display: grid;
      grid-template-columns: minmax(260px, 1.3fr) minmax(0, 2.7fr);
      gap: clamp(56px, 8vw, 132px);
    }
    .site-footer-brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .site-footer-logo {
      display: inline-flex;
      margin-bottom: 15px;
    }
    .site-footer-logo img {
      width: 148px;
      height: auto;
      display: block;
    }
    .site-footer-brand p {
      max-width: 320px;
      color: var(--body-text);
      font-size: 15px;
      line-height: 1.65;
      margin: 0 0 24px;
    }
    .site-footer-socials {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 30px;
    }
    .site-footer-socials a {
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: -0.02em;
      transition: color .15s, transform .15s;
    }
    .site-footer-socials a:hover {
      color: var(--brand);
      transform: translateY(-1px);
    }
    .site-footer-status {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 1px solid var(--border-strong);
      background: #fff;
      border-radius: 6px;
      padding: 9px 13px;
      color: var(--text);
      font-size: 14px;
      line-height: 1;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .site-footer-status span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #16a34a;
      box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
    }
    .site-footer-nav {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(28px, 4vw, 72px);
    }
    .site-footer-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
    .site-footer-group h2 {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 500;
      line-height: 1.2;
      color: var(--text);
      margin: 0 0 4px;
      letter-spacing: -0.01em;
    }
    .site-footer-group a {
      color: var(--body-text);
      opacity: .72;
      text-decoration: none;
      font-size: 14.5px;
      line-height: 1.35;
      transition: color .15s, opacity .15s;
    }
    .site-footer-group a:hover {
      color: var(--brand);
      opacity: 1;
    }
    .site-footer-bottom {
      border-top: 1px solid var(--border-strong);
      background: var(--bg-subtle);
    }
    .site-footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      max-width: none;
      padding: 22px max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
      color: var(--body-text);
      opacity: .74;
      font-size: 13.5px;
    }
    .site-footer-bottom nav {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .site-footer-bottom a {
      color: inherit;
      text-decoration: none;
      transition: color .15s, opacity .15s;
    }
    .site-footer-bottom a:hover {
      color: var(--brand);
      opacity: 1;
    }
    @media (max-width: 960px) {
      .site-footer-main {
        grid-template-columns: 1fr;
        gap: 44px;
      }
      .site-footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 640px) {
      .site-footer-main {
        padding: 44px 20px 40px;
      }
      .site-footer-logo img {
        width: 136px;
      }
      .site-footer-brand p {
        font-size: 14.5px;
        max-width: 300px;
      }
      .site-footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .site-footer-group {
        gap: 12px;
      }
      .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
      }
      .site-footer-bottom nav {
        gap: 16px 24px;
      }
    }

    /* ── LEGAL PAGES ────────────────────────────────────── */
    .page-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .page-shell .logo img {
      width: 168px;
      height: auto;
      display: block;
    }
    .legal-page {
      flex: 1;
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      padding: 72px 32px 96px;
    }
    .legal-hero {
      max-width: 780px;
      margin-bottom: 52px;
    }
    .legal-back {
      display: inline-flex;
      margin-bottom: 28px;
      color: var(--brand);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
    }
    .legal-back:hover {
      color: var(--brand-hover);
    }
    .legal-eyebrow {
      display: inline-flex;
      color: var(--brand);
      background: var(--brand-soft);
      border-radius: 3px;
      padding: 4px 9px;
      margin-bottom: 18px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .legal-hero h1 {
      font-family: var(--font-heading);
      margin: 0 0 18px;
      color: var(--text);
      font-size: clamp(2.4rem, 4vw, 4rem);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.045em;
    }
    .legal-hero p {
      max-width: 660px;
      color: var(--body-text);
      font-size: 17px;
      line-height: 1.7;
      margin: 0 0 18px;
    }
    .legal-updated {
      color: var(--text-muted);
      font-size: 13.5px;
    }
    .legal-content {
      display: grid;
      grid-template-columns: minmax(180px, 260px) minmax(0, 820px);
      align-items: start;
      gap: 56px;
    }
    .legal-content--single {
      display: block;
      max-width: 820px;
    }
    .legal-toc {
      position: sticky;
      top: 92px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      border: 1px solid var(--border-strong);
      border-radius: 8px;
      background: rgba(255,255,255,0.86);
      padding: 18px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    }
    .legal-toc strong {
      color: var(--text);
      font-size: 13.5px;
      font-weight: 600;
      margin-bottom: 2px;
    }
    .legal-toc a {
      color: var(--body-text);
      opacity: .72;
      text-decoration: none;
      font-size: 13.5px;
      line-height: 1.45;
    }
    .legal-toc a:hover {
      color: var(--brand);
      opacity: 1;
    }
    .legal-card {
      border: 1px solid var(--border-strong);
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow-float);
      overflow: hidden;
    }
    .legal-section {
      padding: 30px 34px;
      border-bottom: 1px solid var(--border-strong);
    }
    .legal-section:last-child {
      border-bottom: none;
    }
    .legal-section h2,
    .legal-wp-content h2 {
      font-family: var(--font-heading);
      color: var(--text);
      font-size: clamp(1.3rem, 2vw, 1.65rem);
      font-weight: 600;
      line-height: 1.22;
      letter-spacing: -0.025em;
      margin: 0 0 12px;
    }
    .legal-section h3,
    .legal-wp-content h3 {
      font-family: var(--font-heading);
      color: var(--text);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.35;
      margin: 18px 0 8px;
    }
    .legal-section p,
    .legal-wp-content p {
      color: var(--body-text);
      font-size: 15.5px;
      line-height: 1.78;
      margin: 0;
    }
    .legal-section p + p,
    .legal-section ul + p,
    .legal-section p + ul,
    .legal-section h3 + ul {
      margin-top: 12px;
    }
    .legal-section ul,
    .legal-section ol {
      padding-left: 1.25em;
      color: var(--body-text);
      font-size: 15.5px;
      line-height: 1.78;
      margin: 0;
    }
    .legal-section li + li {
      margin-top: 3px;
    }
    .legal-wp-content {
      padding: 34px;
    }
    .legal-wp-content > * + * {
      margin-top: 18px;
    }
    .legal-wp-content ul,
    .legal-wp-content ol {
      padding-left: 1.3em;
      color: var(--body-text);
      line-height: 1.75;
    }
    .legal-wp-content a {
      color: var(--brand);
    }
    .legal-section table,
    .legal-wp-content table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 16px;
      overflow: hidden;
      font-size: 14px;
      line-height: 1.55;
    }
    .legal-section th,
    .legal-section td,
    .legal-wp-content th,
    .legal-wp-content td {
      border: 1px solid var(--border-strong);
      padding: 10px 12px;
      text-align: left;
      vertical-align: top;
    }
    .legal-section th,
    .legal-wp-content th {
      background: var(--bg-subtle);
      color: var(--text);
      font-weight: 600;
    }
    .legal-section td,
    .legal-wp-content td {
      color: var(--body-text);
    }
    @media (max-width: 900px) {
      .legal-page {
        padding: 52px 24px 72px;
      }
      .legal-content {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .legal-toc {
        position: static;
      }
    }
    @media (max-width: 640px) {
      .page-shell .logo img {
        width: 148px;
      }
      .legal-page {
        padding: 40px 20px 64px;
      }
      .legal-hero {
        margin-bottom: 34px;
      }
      .legal-back {
        margin-bottom: 22px;
      }
      .legal-hero h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
      }
      .legal-hero p {
        font-size: 15.5px;
      }
      .legal-section,
      .legal-wp-content {
        padding: 24px 20px;
      }
    }

    /* ── AUDIENCE SECTION (Dla kogo) ─────────────────────── */
    .audience-section {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 80px 32px 24px;
    }
    .audience-header { text-align: center; margin-bottom: 48px; }
    .audience-eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 14px;
    }
    .audience-header h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 2.8vw, 2.25rem);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--text);
      max-width: 22ch;
      margin: 0 auto 14px;
      text-wrap: balance;
    }
    .audience-header p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-muted);
      max-width: 56ch;
      margin: 0 auto;
      text-wrap: balance;
    }
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 920px;
      margin: 0 auto;
    }
    .audience-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      background: #ffffff;
      border: 1px solid var(--border-strong);
      border-radius: var(--card-radius);
      transition: border-color .15s, transform .15s, box-shadow .15s;
    }
    .audience-card:hover {
      border-color: var(--brand);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(42, 107, 79, 0.08);
    }
    .audience-icon {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--brand-soft);
      color: var(--brand);
      display: flex; align-items: center; justify-content: center;
    }
    .audience-label {
      font-family: var(--font-heading);
      font-size: 15.5px;
      font-weight: 500;
      color: var(--text);
    }
    .audience-card-wide { grid-column: span 2; }

    @media (max-width: 900px) {
      .audience-grid { grid-template-columns: repeat(2, 1fr); }
      .audience-card-wide { grid-column: span 2; }
    }
    @media (max-width: 520px) {
      .audience-section { padding: 56px 20px 16px; }
      .audience-header { margin-bottom: 32px; }
      .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .audience-card-wide { grid-column: span 2; }
      .audience-card { padding: 16px 18px; }
    }

    /* ── ALT SECTION SUB (subhead pod H2 features) ─────────── */
    .alt-section-sub {
      max-width: 640px;
      margin: 18px auto 0;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-muted);
      text-wrap: balance;
    }
    @media (max-width: 720px) {
      .alt-section-sub { font-size: 15px; margin-top: 14px; }
    }

    /* ── SOCIAL PROOF BAR (między hero a trepas) ───────────── */
    .social-proof-bar {
      max-width: var(--max-w);
      margin: -40px auto 0;
      padding: 32px 32px 36px;
    }
    .social-proof-inner {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 28px;
      text-align: left;
    }
    .social-proof-dots {
      display: inline-flex;
      align-items: center;
    }
    .sp-dot {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--brand-soft);
      border: 2px solid #ffffff;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .sp-dot + .sp-dot { margin-left: -8px; }
    .sp-dot-1 { background: #EAF4EE; }
    .sp-dot-2 { background: #DDEEE2; }
    .sp-dot-3 { background: #C9E2D2; }
    .sp-dot-4 { background: #DDEEE2; }
    .sp-dot-5 { background: #EAF4EE; }
    .social-proof-text {
      font-family: var(--font-body);
      font-size: 14.5px;
      line-height: 1.55;
      color: var(--text);
      max-width: 100%;
      white-space: nowrap;
    }
    .social-proof-text strong {
      color: var(--text);
      font-weight: 600;
    }
    @media (max-width: 720px) {
      .social-proof-bar { margin-top: -20px; padding: 24px 20px 28px; }
      .social-proof-inner { gap: 16px; }
      .sp-dot { width: 28px; height: 28px; }
      .sp-dot + .sp-dot { margin-left: -9px; }
      .social-proof-text { font-size: 14px; white-space: normal; }
    }

    /* ── FAQ ─────────────────────────────────────────────── */
    .faq-section {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 72px 32px 56px;
    }
    .faq-header { text-align: center; margin-bottom: 56px; }
    .faq-eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--brand);
      background: var(--brand-soft);
      padding: 5px 12px;
      border-radius: 999px;
      margin-bottom: 18px;
    }
    .faq-header h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3.4vw, 2.25rem);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--text);
      max-width: 28ch;
      margin: 0 auto;
    }
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      border-top: 1px solid var(--border-strong);
    }
    .faq-item {
      border-bottom: 1px solid var(--border-strong);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 500;
      color: var(--text);
      transition: color .15s;
    }
    .faq-item summary:hover { color: var(--brand); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-icon {
      flex-shrink: 0;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--bg-subtle);
      display: flex; align-items: center; justify-content: center;
      transition: background .15s, transform .25s;
      color: var(--text-muted);
    }
    .faq-item[open] .faq-icon {
      background: var(--brand-soft);
      color: var(--brand);
      transform: rotate(45deg);
    }
    .faq-answer {
      padding: 0 4px 24px 4px;
      color: var(--text-muted);
      font-size: 15.5px;
      line-height: 1.65;
      max-width: 70ch;
    }
    .faq-answer strong { color: var(--text); font-weight: 600; }

    @media (max-width: 720px) {
      .faq-section { padding: 56px 20px 40px; }
      .faq-header { margin-bottom: 40px; }
      .faq-item summary { padding: 18px 0; font-size: 16px; }
      .faq-answer { font-size: 15px; }
    }

    /* ── FINAL CTA ───────────────────────────────────────── */
    .final-cta {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 24px 32px 96px;
    }
    .final-cta-inner {
      background: var(--brand);
      border-radius: 8px;
      padding: 64px 40px;
      text-align: center;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .final-cta-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 100%, rgba(255,255,255,0.06) 0%, transparent 45%);
      pointer-events: none;
    }
    .final-cta-inner > * { position: relative; }
    .final-cta h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.7rem, 3.6vw, 2.4rem);
      font-weight: 600;
      line-height: 1.18;
      letter-spacing: -0.01em;
      max-width: 22ch;
      margin: 0 auto 18px;
    }
    .final-cta p {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255,255,255,0.86);
      max-width: 52ch;
      margin: 0 auto 32px;
    }
    .final-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      color: var(--brand);
      padding: 14px 28px;
      border-radius: var(--btn-radius);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: transform .15s, box-shadow .15s;
    }
    .final-cta-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    }
    .final-cta-note {
      margin-top: 18px;
      font-size: 13px;
      color: rgba(255,255,255,0.7);
    }
    @media (max-width: 720px) {
      .final-cta { padding: 16px 20px 72px; }
      .final-cta-inner { padding: 48px 24px; border-radius: 6px; }
      .final-cta p { font-size: 15px; }
    }
