/* =============================================================================
   redesign.css — new brand design system for the Polish site (/pl/)
   League Spartan + Lora · navy/burgundy · square buttons · alternating sections.
   Scoped to the redesigned pages only; the English root keeps styles.css.
   ============================================================================= */

:root {
  --navy: #1d3f90;
  --navy-dark: #152e6a;
  --burg: #8B3A52;
  --bg: #f5f7f8;
  --bg-light: #eaf1f8;
  --white: #fff;
  --text: #0f1f45;
  --mid: #3a4a6b;
  --muted: #6b7a9b;
  --border: rgba(29, 63, 144, .1);
  --border2: rgba(29, 63, 144, .2);
  --star: #f5a623;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'League Spartan', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* Eyebrow / section label ---------------------------------------------------- */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--burg);
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--burg); }
.eyebrow.center { justify-content: center; }

/* Buttons -------------------------------------------------------------------- */
.btn {
  display: inline-block; border-radius: 3px; font-weight: 700;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 24px; cursor: pointer; border: none;
  transition: background .18s, color .18s, transform .05s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); }
.btn-white { background: #fff; color: var(--navy-dark); }
.btn-white:hover { background: var(--bg-light); }
.btn-ghost { color: var(--navy); font-weight: 600; text-transform: none; letter-spacing: 0; padding: 13px 6px; }
.btn-ghost:hover { color: var(--navy-dark); }

/* Navigation ----------------------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.brand span { color: var(--burg); }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 12px; font-weight: 500; color: var(--mid);
  letter-spacing: .04em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--navy); }
/* Active section — set per page at build time (also carries aria-current="page"). */
.nav-links a.nav-active { color: var(--burg); }
.nav-links a.nav-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--burg); border-radius: 1px;
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.lang-switch .on { color: var(--navy); }
.nav-cta { padding: 9px 16px; font-size: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-dark); margin: 4px 0; transition: .2s; }
/* English labels are longer than the Polish ones and overflow the bar at the
   capped container width. Tighten the link spacing and stop the links wrapping so
   the EN nav stays on a single line like the PL nav. (Scoped to <html lang="en">.) */
html[lang="en"] .nav-links a { white-space: nowrap; letter-spacing: .02em; }
@media (min-width: 901px) { html[lang="en"] .nav-links { gap: 14px; } }

/* Hero ----------------------------------------------------------------------- */
.hero { display: grid; grid-template-columns: 1fr 340px; }
/* Left padding aligns the hero text with the site container (.wrap) edge, so it
   lines up with the nav logo and every section below — not pushed toward center. */
.hero-content {
  background: var(--bg);
  padding: 64px 48px 64px max(32px, calc((100vw - 1080px) / 2 + 32px));
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.hero-inner { max-width: 620px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px; background: var(--bg-light);
  border: 1px solid var(--border2); border-radius: 100px; padding: 6px 15px;
  font-size: 10px; font-weight: 700; color: var(--navy); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 22px;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--burg); }
.hero h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--navy-dark); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--burg); }
.lead { font-family: 'Lora', Georgia, serif; font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 26px; max-width: 460px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.creds { font-size: 11px; color: var(--muted); letter-spacing: .03em; padding-top: 18px; border-top: 1px solid var(--border); }
.hero-media { background: var(--navy-dark); padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; }
.hero-photo { border-radius: 8px; flex: 1; min-height: 260px; object-fit: cover; width: 100%; }
.quote-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: 6px; padding: 16px; }
.quote-mark { font-family: 'Lora', serif; font-size: 30px; color: var(--burg); line-height: .6; margin-bottom: 8px; }
.quote-text { font-family: 'Lora', serif; font-size: 12px; font-style: italic; color: rgba(255, 255, 255, .72); line-height: 1.7; margin-bottom: 8px; }
.quote-auth { font-size: 10px; color: rgba(255, 255, 255, .4); letter-spacing: .06em; text-transform: uppercase; }

/* Data strip ----------------------------------------------------------------- */
.data-strip { background: var(--navy-dark); padding: 26px 0; }
.data-strip .hd { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .45); text-align: center; margin-bottom: 18px; }
.stats { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.stat { text-align: center; padding: 0 20px; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .12); }
.stat-n { font-size: 34px; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255, 255, 255, .6); line-height: 1.45; margin-top: 6px; }
.stat-s { font-size: 9px; color: rgba(255, 255, 255, .32); letter-spacing: .04em; text-transform: uppercase; margin-top: 4px; }
.data-foot { text-align: center; font-family: 'Lora', serif; font-style: italic; font-size: 13px; color: rgba(255, 255, 255, .55); margin-top: 18px; }

/* Generic section spacing ---------------------------------------------------- */
.section { padding: 64px 0; }
.section.light { background: var(--white); }
.section.neutral { background: var(--bg); }
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--navy-dark); line-height: 1.12; letter-spacing: -.015em; }
.section-head .sub { font-family: 'Lora', serif; font-size: 15px; color: var(--mid); line-height: 1.75; margin-top: 10px; max-width: 560px; }
/* "Dla kogo" intro: keep on one line on desktop (wraps on mobile). */
#dla-kogo .section-head .sub { max-width: none; }
@media (min-width: 769px) { #dla-kogo .section-head .sub { white-space: nowrap; } }

/* Pain cards ----------------------------------------------------------------- */
.cards-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border2); border: 1px solid var(--border2); border-radius: 8px; overflow: hidden; }
.pain-card { background: var(--white); padding: 22px 20px; }
.pain-ico { width: 38px; height: 38px; background: var(--bg-light); border-radius: 6px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; }
.pain-card h3 { font-size: 14px; font-weight: 700; color: var(--navy-dark); line-height: 1.3; margin-bottom: 8px; }
.pain-card .d { font-family: 'Lora', serif; font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 8px; }
.pain-card .m { font-family: 'Lora', serif; font-size: 11px; font-style: italic; color: var(--mid); line-height: 1.55; }

/* Dark feature section ------------------------------------------------------- */
.dark-section { background: var(--navy); padding: 64px 0; color: #fff; }
.dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.dark-section .eyebrow { color: rgba(255, 255, 255, .78); } /* C1 contrast fix */
.dark-section .eyebrow::before { background: rgba(139, 58, 82, .65); }
.dark-section h2 { font-size: clamp(22px, 3vw, 26px); font-weight: 800; line-height: 1.12; letter-spacing: -.015em; margin-bottom: 14px; }
.dark-section p { font-family: 'Lora', serif; font-size: 14px; color: rgba(255, 255, 255, .68); line-height: 1.85; }
.checklist { display: flex; flex-direction: column; gap: 1px; background: rgba(255, 255, 255, .08); border-radius: 8px; overflow: hidden; }
.check { background: rgba(255, 255, 255, .04); padding: 12px 16px; display: flex; align-items: flex-start; gap: 11px; font-size: 13px; color: rgba(255, 255, 255, .85); line-height: 1.5; }
.check-dot { width: 18px; height: 18px; background: var(--burg); border-radius: 50%; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: #fff; font-weight: 700; }

/* Process steps -------------------------------------------------------------- */
.proc-head { text-align: center; margin-bottom: 40px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.steps::before { content: ''; position: absolute; top: 22px; left: 12.5%; right: 12.5%; height: 1px; background: var(--border2); z-index: 0; }
.step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.step-n { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--navy); margin: 0 auto 14px; }
.step:first-child .step-n { background: var(--navy); color: #fff; }
.step .sub { font-size: 10px; color: var(--burg); font-weight: 700; letter-spacing: .04em; margin-bottom: 5px; text-transform: uppercase; }
.step h3 { font-size: 13px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; line-height: 1.3; }
.step .d { font-family: 'Lora', serif; font-size: 11px; color: var(--muted); line-height: 1.6; }
.center-cta { text-align: center; margin-top: 36px; }

/* About teaser --------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; }
.about-photo { border-radius: 8px; aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.about-tag { background: var(--navy); color: #fff; border-radius: 6px; padding: 12px 14px; font-size: 10px; font-weight: 700; text-align: center; line-height: 1.4; margin-top: 12px; }
.about-tag span { display: block; font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.about-grid h2 { font-size: 22px; font-weight: 800; color: var(--navy-dark); letter-spacing: -.015em; margin-bottom: 14px; }
.about-grid p { font-family: 'Lora', serif; font-size: 14px; color: var(--mid); line-height: 1.85; margin-bottom: 12px; }

/* Testimonials --------------------------------------------------------------- */
.testi-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 26px; flex-wrap: wrap; }
.testi-note { font-family: 'Lora', serif; font-size: 11px; color: var(--muted); max-width: 240px; text-align: right; line-height: 1.55; }
.t-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.t-card { background: #fff; border-radius: 8px; padding: 22px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.t-card.featured { background: var(--navy); border-color: var(--navy); }
.stars { color: var(--star); font-size: 13px; margin-bottom: 10px; }
.t-text { font-family: 'Lora', serif; font-size: 12px; font-style: italic; color: var(--mid); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.t-card.featured .t-text { color: rgba(255, 255, 255, .85); }
.t-auth { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.t-card.featured .t-auth { border-top-color: rgba(255, 255, 255, .15); }
.av { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.t-card.featured .av { background: rgba(255, 255, 255, .15); color: #fff; }
.t-name { font-size: 12px; font-weight: 700; color: var(--navy-dark); display: block; }
.t-card.featured .t-name { color: #fff; }
.t-role { font-size: 11px; color: var(--muted); }
.t-card.featured .t-role { color: rgba(255, 255, 255, .5); }

/* Closing CTA ---------------------------------------------------------------- */
.closing { background: var(--navy-dark); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.closing::before { content: ''; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(255, 255, 255, .04); border-radius: 50%; top: -200px; left: 50%; transform: translateX(-50%); }
.closing > * { position: relative; z-index: 1; }
.closing .eyebrow { color: rgba(255, 255, 255, .78); justify-content: center; } /* C1 contrast fix */
.closing .eyebrow::before { background: rgba(139, 58, 82, .65); }
.closing h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -.015em; margin-bottom: 14px; }
.closing p { font-family: 'Lora', serif; font-size: 15px; color: rgba(255, 255, 255, .62); max-width: 440px; margin: 0 auto 26px; line-height: 1.75; }
.closing .note { font-size: 11px; color: rgba(255, 255, 255, .35); margin-top: 14px; letter-spacing: .04em; }

/* Footer --------------------------------------------------------------------- */
.site-footer { background: #152e6a; padding: 22px 0; }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.site-footer .brand { color: rgba(255, 255, 255, .75); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; color: rgba(255, 255, 255, .4); }
.footer-links a:hover { color: rgba(255, 255, 255, .7); }
.footer-social { display: flex; align-items: center; gap: 14px; }

/* LinkedIn link (B7) — #1d3f90 default, #0077B5 on hover */
.linkedin-link { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: 13px; font-weight: 600; transition: color .18s; }
.linkedin-link:hover { color: #0077B5; }
.linkedin-link svg { display: block; }
.site-footer .linkedin-link { color: rgba(255, 255, 255, .55); }
.site-footer .linkedin-link:hover { color: #0077B5; }
.footer-copy { font-size: 11px; color: rgba(255, 255, 255, .3); }

/* Responsive ----------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Collapse nav to the hamburger early so the 7 links never crowd the bar */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 8px 32px 16px;
  }
  .nav-links.open li { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 32px; }
  .hero-media { flex-direction: row; }
  .hero-photo { min-height: 0; height: 200px; }
  .dark-grid, .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { max-width: 220px; }
}
@media (max-width: 768px) {
  .cards-grid, .stats, .steps, .t-cards { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 18px; margin-top: 18px; }
  .hero-media { flex-direction: column; }
  .testi-note { text-align: left; }
}

/* =============================================================================
   SUBPAGE COMPONENTS (Phase 2) — used by the /pl/ subpages.
   Reuse the tokens above; aliases let subpage markup map onto the same system.
   ============================================================================= */

/* Aliases for the subpage markup vocabulary */
.sec-lbl { /* == .eyebrow */
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--burg); display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.sec-lbl::before { content: ''; width: 20px; height: 2px; background: var(--burg); }
.sec-lbl.center { justify-content: center; }
.sec-lbl.center::before { display: none; }
.btn-p { /* == .btn .btn-primary */
  display: inline-block; background: var(--navy); color: #fff; border-radius: 3px;
  font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 22px; cursor: pointer; transition: background .18s;
}
.btn-p:hover { background: var(--navy-dark); }
.btn-w {
  display: inline-block; background: #fff; color: var(--navy-dark); border-radius: 3px;
  font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 24px; cursor: pointer; transition: background .18s;
}
.btn-w:hover { background: var(--bg-light); }
.btn-g { color: var(--navy); font-size: 13px; font-weight: 600; }
.btn-g:hover { color: var(--navy-dark); }

/* Section wrappers */
.sec-light, .sec-bg, .sec-dark, .sec-darker { padding: 56px 0; }
.sec-light { background: var(--white); }
.sec-bg { background: var(--bg); }
.sec-dark { background: var(--navy); color: #fff; }
.sec-darker { background: var(--navy-dark); color: #fff; text-align: center; }
.sec-dark .h2, .sec-darker .h2 { color: #fff; }
.cta-note { font-size: 11px; color: rgba(255, 255, 255, .4); margin-top: 12px; letter-spacing: .04em; }

/* C1 — section-label contrast fix on dark backgrounds (WCAG: burgundy on navy
   is only 1.8:1). Dark sections use white text + a burgundy decorative bar.
   Light backgrounds keep the original burgundy (#8B3A52 = 5.4:1, compliant). */
.sec-dark .sec-lbl, .sec-darker .sec-lbl { color: rgba(255, 255, 255, .78); }
.sec-dark .sec-lbl::before, .sec-darker .sec-lbl::before { background: rgba(139, 58, 82, .65); }

/* Centered hero (subpages) */
.hero-full { background: var(--bg); padding: 64px 0; text-align: center; }
.h1-center { font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--navy-dark);
  line-height: 1.12; letter-spacing: -.02em; margin-bottom: 14px; text-align: center; }
.h2-seo { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: -.01em;
  margin-bottom: 14px; font-style: italic; }
.creds { font-size: 11px; color: var(--muted); letter-spacing: .03em; padding-top: 14px;
  border-top: 1px solid var(--border); margin-top: 18px; }

/* Two-column subpage hero (e.g. /o-mnie) */
.hero-2col { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; padding: 56px 0; }
.hero-2col .h1 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; color: var(--navy-dark);
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.hero-2col .h1 em { font-style: normal; color: var(--burg); }
.side-photo { width: 100%; border-radius: 8px; aspect-ratio: 3/4; object-fit: cover; }
.side-tag { background: var(--navy); color: #fff; border-radius: 8px; padding: 12px 16px;
  text-align: center; margin-top: 12px; }
.side-tag .n { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.side-tag .l { font-size: 11px; color: rgba(255, 255, 255, .6); }

/* Typographic utilities */
.h2 { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: var(--navy-dark);
  letter-spacing: -.015em; line-height: 1.12; }
.h3 { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: .5rem; }
.p { font-family: 'Lora', Georgia, serif; font-size: 15px; color: var(--mid); line-height: 1.85; margin-bottom: .85rem; }
.p-sm { font-family: 'Lora', Georgia, serif; font-size: 13px; color: var(--mid); line-height: 1.7; }
.measure { max-width: 680px; margin: 0 auto; }
.lead-center { font-family: 'Lora', Georgia, serif; font-size: 16px; color: var(--mid);
  line-height: 1.75; max-width: 580px; margin: 0 auto; }

/* Grids & cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.card { background: var(--white); border-radius: 8px; border: 1px solid var(--border); padding: 1.5rem; }

/* Numbered outcome list */
.outcome { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.outcome:last-child { border-bottom: none; }
.outcome-n { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
  color: var(--navy); flex-shrink: 0; margin-top: 2px; }

/* Bulleted list with burgundy dots */
.dot-list { display: flex; flex-direction: column; gap: .75rem; }
.dot-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; }
.dot-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--burg); flex-shrink: 0; margin-top: 9px; }

/* Situation rows (/dla-kogo) */
.situation { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; }
.situation .ico { width: 48px; height: 48px; background: var(--bg-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; }
.situation.highlight { background: var(--bg-light); padding: 1rem; border-radius: 8px; border-left: 3px solid var(--burg); }

/* Callout box */
.callout-box { background: var(--bg-light); border-left: 3px solid var(--burg);
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.callout-box .t { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: .4rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: .5rem; }
.faq-a { font-family: 'Lora', Georgia, serif; font-size: 14px; color: var(--mid); line-height: 1.75; }

/* Pricing block */
.price-box { background: var(--navy); border-radius: 8px; padding: 1.25rem 1.5rem; color: #fff; }
.price-box .amt { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.price-box .sub { font-family: 'Lora', serif; font-size: 12px; color: rgba(255, 255, 255, .6); margin-top: 4px; font-style: italic; }

/* Dark checklist panel reuse on subpages */
.panel-list { display: flex; flex-direction: column; gap: 1px; background: rgba(255, 255, 255, .1); border-radius: 8px; overflow: hidden; }
.panel-list .row { background: rgba(255, 255, 255, .05); padding: 1rem 1.25rem; }
.panel-list .row .t { font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, .9); margin-bottom: 4px; }
.panel-list .row .d { font-family: 'Lora', serif; font-size: 12px; color: rgba(255, 255, 255, .55); }

@media (max-width: 768px) {
  .hero-2col, .grid-2, .grid-3, .cards-2 { grid-template-columns: 1fr; }
  .hero-2col { gap: 24px; }
  .side-photo { max-width: 260px; }
}

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-intro .contact-note { font-family: 'Lora', Georgia, serif; font-size: 13px; color: var(--muted); margin-top: .85rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label { display: block; font-size: 12px; font-weight: 600; color: var(--mid); letter-spacing: .02em; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: 'League Spartan', sans-serif; font-size: 14px; color: var(--text);
  background: #fff; border: 1px solid var(--border2); border-radius: 6px; padding: 11px 13px;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--navy); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { margin-top: .25rem; border: none; cursor: pointer; }
.form-status { margin-top: .85rem; font-size: 13px; font-family: 'Lora', Georgia, serif; min-height: 1.2em; }
.form-status.loading { color: var(--muted); }
.form-status.success { color: #1a6b3a; font-weight: 600; }
.form-status.error { color: #c0392b; font-weight: 600; }
/* GDPR consent checkbox (A7) */
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: .25rem 0 1rem; }
.form-consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.form-consent label { font-size: 12px; line-height: 1.55; color: var(--mid); font-family: 'Lora', Georgia, serif; }
.form-consent a { color: var(--navy); font-weight: 600; }

/* Cookie consent banner (B12) — GA loads only after consent */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  max-width: 880px; margin: 0 auto; background: var(--navy-dark); color: #fff;
  border-radius: 6px; padding: 18px 20px; box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-banner p { font-family: 'Lora', Georgia, serif; font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, .82); margin: 0; flex: 1 1 320px; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner button {
  border: none; cursor: pointer; border-radius: 3px; font-weight: 700; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase; padding: 11px 18px; transition: background .18s;
}
.cookie-banner .c-accept { background: #fff; color: var(--navy-dark); }
.cookie-banner .c-accept:hover { background: var(--bg-light); }
.cookie-banner .c-reject { background: transparent; color: rgba(255, 255, 255, .85); border: 1px solid rgba(255, 255, 255, .3); }
.cookie-banner .c-reject:hover { background: rgba(255, 255, 255, .1); }
@media (max-width: 600px) { .cookie-banner .cookie-actions { width: 100%; } .cookie-banner button { flex: 1; } }
@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* =============================================================================
   POST-LAUNCH ADDITIONS — developer_20062026 brief (B3/B4/B5/B6/B10/B11)
   ============================================================================= */

/* B3 — micro-copy under CTA buttons */
.cta-micro { font-family: 'Lora', serif; font-size: 11px; color: var(--muted); margin-top: 8px; letter-spacing: .01em; }
.cta-micro.on-dark, .closing .cta-micro,
.sec-dark .cta-micro, .sec-darker .cta-micro { color: rgba(255, 255, 255, .55); }

/* B4 — company logo bar (homepage About teaser) */
.logo-bar { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); text-align: center; }
.logo-bar-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 18px; }
.logo-bar-logos { display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center; justify-content: center; }
.logo-bar-logos img { height: 30px; width: auto; filter: grayscale(100%); opacity: .45; transition: opacity .2s ease, filter .2s ease; }
.logo-bar-logos img:hover { filter: grayscale(0); opacity: .85; }

/* B6 — ICF / Bennewicz badges (on /o-mnie, light background) */
.badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 1.25rem; }
/* These wrap the ICF/Bennewicz logos but reuse the .badge class name of the hero
   eyebrow pill — reset the pill styling (bullet dot, background, border, padding). */
.badges .badge { display: inline-flex; background: none; border: 0; border-radius: 0; padding: 0; margin: 0; }
.badges .badge::before { content: none; }
.badges .badge img { height: 64px; width: auto; display: block; }
/* The Bennewicz logo is a wide 3.5:1 wordmark; at the shared 64px height it dwarfs
   the square ICF badge. Cap it by width so it reads at the same visual size. */
.badges .badge img[src*="bennewicz"] { height: auto; width: 150px; }
.badges .badge[href]:hover img { opacity: .85; }

/* B5 — footer redesign (3 columns) */
.site-footer { padding: 48px 0 0; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-col-h { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .5); margin-bottom: 14px; }
.footer-tagline { font-family: 'Lora', serif; font-size: 12px; color: rgba(255, 255, 255, .45); margin: 10px 0 16px; line-height: 1.6; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-badge { display: inline-flex; align-items: center; }
.footer-badge img { height: 44px; width: auto; display: block; }
.site-footer .footer-col .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; }
.footer-email { display: block; font-size: 13px; color: rgba(255, 255, 255, .65); margin-bottom: 14px; word-break: break-word; }
.footer-email:hover { color: #fff; }
.site-footer .footer-col .linkedin-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .65); font-size: 13px; margin-bottom: 18px; }
.site-footer .footer-col .linkedin-link:hover { color: #0077B5; }
.footer-cta { font-size: 12px !important; padding: 11px 18px !important; }
.footer-bottom { margin-top: 40px; border-top: 1px solid rgba(255, 255, 255, .08); padding: 16px 0; }
.footer-bottom .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom span, .footer-legal a { font-size: 11px; color: rgba(255, 255, 255, .35); }
.footer-legal a:hover { color: rgba(255, 255, 255, .65); }

/* B10 — /kontakt page */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.kontakt-embed { min-width: 0; }
.kontakt-aside .h3 { margin-bottom: .5rem; }
.kontakt-facts { list-style: none; padding: 0; margin: 1.25rem 0; display: flex; flex-direction: column; gap: .75rem; }
.kontakt-facts li { font-family: 'Lora', serif; font-size: 13px; color: var(--mid); line-height: 1.6; padding-left: 1.25rem; position: relative; }
.kontakt-facts li::before { content: '✓'; position: absolute; left: 0; color: var(--burg); font-weight: 700; }
.kontakt-privacy { font-size: 11px; color: var(--muted); line-height: 1.6; margin-top: 1rem; }
.kontakt-privacy a { color: var(--burg); text-decoration: underline; }

/* B11 — custom 404 */
.err-404 { padding: 100px 0; text-align: center; }
.err-404-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

@media (max-width: 768px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 28px; }
  .logo-bar-logos { gap: 1.75rem; }
}

/* =============================================================================
   BLOG (blog_developer_brief) — listing + article pages
   ============================================================================= */

/* Shared tag chip */
.blog-tag { display: inline-block; background: var(--burg); color: #fff; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 2px; }
.blog-eyebrow { display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(139, 58, 82, .85); }
.blog-eyebrow::before { content: ''; width: 24px; height: 1px; background: rgba(139, 58, 82, .65); margin-right: 10px; }

/* Hero (featured + sidebar) */
.blog-hero { background: var(--navy-dark); padding: 64px 0; }
.blog-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.blog-hero-title { font-size: clamp(26px, 4vw, 36px); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -.015em; margin: 12px 0 14px; }
.blog-hero-title a { color: inherit; }
.blog-hero-title a:hover { text-decoration: underline; }
.blog-hero-excerpt { font-family: 'Lora', serif; font-style: italic; font-size: 15px; color: rgba(255, 255, 255, .58); line-height: 1.7; margin-bottom: 18px; }
.blog-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.blog-meta-light { font-size: 11px; color: rgba(255, 255, 255, .4); }
.blog-hero-read { font-size: 13px; font-weight: 700; color: #fff; margin-left: auto; }
.blog-hero-read:hover { color: #e7c2cf; }
.blog-hero-list { background: rgba(255, 255, 255, .04); border-left: 1px solid rgba(255, 255, 255, .08); padding: 4px 28px 8px; }
.blog-hero-list-h { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255, 255, 255, .3); padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.blog-hero-item { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.blog-hero-item:hover { background: rgba(255, 255, 255, .03); }
.blog-hero-item-num { font-size: 11px; font-weight: 800; color: rgba(139, 58, 82, .75); margin-right: 8px; }
.blog-hero-item-tag { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255, 255, 255, .32); }
.blog-hero-item-title { display: block; font-size: 12.5px; font-weight: 700; color: rgba(255, 255, 255, .82); line-height: 1.4; margin: 4px 0; }
.blog-hero-item-meta { font-size: 10px; color: rgba(255, 255, 255, .3); }

/* Filter strip */
.filter-strip { background: var(--burg); }
.filter-strip .wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 11px; padding-bottom: 11px; }
.filter-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255, 255, 255, .6); }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill { background: rgba(255, 255, 255, .15); color: rgba(255, 255, 255, .85); font-family: 'League Spartan', sans-serif; font-weight: 600; font-size: 11px; border: 0; padding: 6px 14px; border-radius: 100px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.filter-pill:hover { background: rgba(255, 255, 255, .25); }
.filter-pill.active { background: #fff; color: var(--burg); }

/* Card grid */
.blog-grid-sec { background: var(--bg); padding: 48px 0; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden; }
.blog-card { background: #fff; }
.blog-card.wide { grid-column: 1 / -1; }
.blog-card[hidden] { display: none; }
.blog-card-link { display: flex; flex-direction: column; height: 100%; padding: 28px; border-left: 3px solid transparent; transition: border-color .15s ease, background .15s ease; }
.blog-card-link:hover { border-left-color: var(--burg); background: var(--bg); }
.blog-card-num { font-size: 11px; font-weight: 800; color: rgba(139, 58, 82, .5); margin-bottom: 10px; }
.blog-card .blog-tag, .article-hero-sec .blog-tag { background: rgba(139, 58, 82, .08); color: var(--burg); font-size: 9px; padding: 3px 8px; align-self: flex-start; }
.blog-card-title { font-size: 16px; font-weight: 800; color: var(--navy-dark); line-height: 1.2; letter-spacing: -.01em; margin: 10px 0; }
.blog-card-excerpt { font-family: 'Lora', serif; font-size: 13px; color: var(--mid); line-height: 1.75; flex: 1; margin-bottom: 14px; }
.blog-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; border-top: 1px solid var(--border); padding-top: 12px; }
.blog-meta { font-size: 11px; color: var(--muted); }
.blog-read { font-size: 12px; font-weight: 700; color: var(--navy); }
.blog-empty { text-align: center; color: var(--muted); padding: 32px; font-family: 'Lora', serif; }

/* Article page */
.article-hero-sec { background: var(--bg); padding: 56px 0 36px; }
.article-hero-sec .wrap, .article-wrap { max-width: 760px; }
.breadcrumb { font-size: 11px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { text-decoration: underline; }
.article-h1 { font-size: clamp(28px, 4.5vw, 36px); font-weight: 800; color: var(--navy-dark); line-height: 1.1; letter-spacing: -.02em; margin: 16px 0 16px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--muted); padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.article-meta-item svg { opacity: .5; }
.article-share { margin-left: auto; display: flex; gap: 8px; }
.share-btn { background: var(--bg-light); border: 1px solid var(--border); border-radius: 3px; padding: 5px 10px; font-family: 'League Spartan', sans-serif; font-size: 11px; font-weight: 600; color: var(--navy); cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.share-btn:hover { background: #dde7f3; }
.article-body > p:first-child { font-size: 17px; font-weight: 500; }
.article-body-sec { background: #fff; padding: 44px 0; }
.article-body { max-width: 720px; }
.article-body p { font-family: 'Lora', serif; font-size: 16px; color: var(--mid); line-height: 1.85; margin-bottom: 1.25rem; }
.article-body h2 { font-size: 18px; font-weight: 700; color: var(--navy-dark); line-height: 1.3; margin: 2.5rem 0 .75rem; }
.article-body .art-li { padding-left: 1rem; border-left: 2px solid var(--border2); }
.article-body .art-li strong, .article-body strong { color: var(--navy-dark); font-weight: 700; }
.article-cta-box { background: var(--navy-dark); border-radius: 10px; padding: 36px 32px; text-align: center; margin: 44px 0; }
.article-cta-box .cta-ey { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(139, 58, 82, .85); margin-bottom: 10px; }
.article-cta-box h2 { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.article-cta-box p:not(.cta-micro) { font-family: 'Lora', serif; font-size: 14px; color: rgba(255, 255, 255, .55); line-height: 1.7; max-width: 400px; margin: 0 auto 20px; }
.more-articles { margin-top: 8px; }
.more-label { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--burg); margin-bottom: 8px; }
.more-label::before { content: ''; width: 20px; height: 2px; background: var(--burg); }
.more-articles h2 { font-size: 20px; font-weight: 800; color: var(--navy-dark); letter-spacing: -.01em; margin: 0 0 20px; }

@media (max-width: 768px) {
  .blog-hero-grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-hero-list { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .08); padding: 0 0 8px; }
  .blog-hero-read { margin-left: 0; }
  .filter-strip .wrap { flex-wrap: nowrap; overflow-x: auto; }
  .filter-pills { flex-wrap: nowrap; }
}

/* =============================================================================
   PRIVACY POLICY (polityka_prywatnosci_developer_brief) — pp- namespace
   ============================================================================= */
html { scroll-behavior: smooth; }
.footer-legal-hl { color: rgba(255, 255, 255, .6); }

.pp-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.pp-hero { background: var(--navy-dark); padding: 52px 0 48px; }
.pp-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255, 255, 255, .4); margin-bottom: 14px; }
.pp-eyebrow::before { content: ''; width: 20px; height: 2px; background: rgba(139, 58, 82, .6); }
.pp-h1 { font-size: clamp(26px, 4vw, 32px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 12px; }
.pp-date { font-size: 12px; color: rgba(255, 255, 255, .4); letter-spacing: .04em; }

.pp-toc-wrap { background: var(--bg-light); border-bottom: 1px solid var(--border); }
.pp-toc { padding-top: 28px; padding-bottom: 28px; }
.pp-toc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--burg); margin-bottom: 14px; }
.pp-toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.pp-toc-item { display: flex; gap: 10px; align-items: baseline; padding: 3px 0; }
.pp-toc-num { font-size: 11px; font-weight: 700; color: var(--burg); min-width: 18px; }
.pp-toc-link { font-size: 12px; color: var(--navy); font-weight: 500; line-height: 1.4; }
.pp-toc-link:hover { text-decoration: underline; }

.pp-body-wrap { background: #fff; }
.pp-body-wrap .pp-inner { padding-top: 56px; padding-bottom: 72px; }
.pp-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.pp-sec-header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.pp-sec-num { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-light); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.pp-sec-h2 { font-size: 20px; font-weight: 800; color: var(--navy-dark); letter-spacing: -.01em; line-height: 1.2; }
.pp-sec-body { padding-left: 52px; }
.pp-p { font-family: 'Lora', serif; font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }
.pp-p:last-child { margin-bottom: 0; }
.pp-p a, .pp-list a { color: var(--burg); text-decoration: underline; }
.pp-h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin: 18px 0 8px; }
.pp-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.pp-list li { font-family: 'Lora', serif; font-size: 15px; color: var(--mid); line-height: 1.7; display: flex; align-items: flex-start; gap: 10px; }
.pp-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--burg); flex-shrink: 0; margin-top: 8px; }
.pp-list strong { font-weight: 600; color: var(--navy-dark); }
.pp-highlight { background: var(--bg-light); border-left: 3px solid var(--burg); border-radius: 0 6px 6px 0; padding: 16px 20px; margin-bottom: 14px; }
.pp-highlight p { font-family: 'Lora', serif; font-size: 14px; color: var(--mid); line-height: 1.75; }
.pp-highlight strong { font-weight: 600; color: var(--navy-dark); }
.pp-rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pp-right-card { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; }
.pp-right-icon { width: 28px; height: 28px; border-radius: 4px; background: var(--bg-light); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pp-right-title { font-size: 12px; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; }
.pp-right-desc { font-family: 'Lora', serif; font-size: 11px; color: var(--muted); line-height: 1.5; }
.pp-right-contact { background: var(--bg-light); border-color: rgba(29, 63, 144, .2); align-items: center; font-family: 'Lora', serif; font-size: 12px; color: var(--mid); line-height: 1.6; }
.pp-right-contact a { color: var(--burg); font-weight: 600; }
.pp-contact-box { background: var(--navy); border-radius: 8px; padding: 24px 28px; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.pp-cb-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(139, 58, 82, .85); margin-bottom: 6px; }
.pp-cb-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.pp-cb-sub { font-family: 'Lora', serif; font-size: 13px; color: rgba(255, 255, 255, .55); }
.pp-cb-email { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15); border-radius: 4px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; }
.pp-cb-email:hover { background: rgba(255, 255, 255, .18); }

@media (max-width: 768px) {
  .pp-toc-grid, .pp-rights-grid { grid-template-columns: 1fr; }
  .pp-contact-box { flex-direction: column; align-items: flex-start; }
}
@media print {
  .site-nav, .site-footer, .cookie-banner { display: none !important; }
  .pp-hero, .pp-contact-box { background: #fff !important; }
  .pp-h1, .pp-cb-title, .pp-cb-label, .pp-cb-sub, .pp-cb-email, .pp-date { color: #000 !important; }
}
