/* ===============================================
   WYNAJEM PRZESZKÓD — style.css
   Jeden plik. Bez zewnętrznych bibliotek.
   Kolory marki: #FF4D00 (pomarańcz) + #0A0A0A (czerń)
   =============================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E8E7E3;
  background: #0A0A0A;
  background-image:
    linear-gradient(#141414 1px, transparent 1px),
    linear-gradient(90deg, #141414 1px, transparent 1px);
  background-size: 105px 105px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #FF4D00; text-decoration: none; transition: color .2s; }
a:hover { color: #FF6B2B; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- TYPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: Impact, "Arial Narrow", "Helvetica Condensed", sans-serif;
  font-weight: normal;
  color: #F8F7F3;
  line-height: 1.1;
  letter-spacing: -.5px;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.75rem); text-transform: uppercase; letter-spacing: 0; }
h4 { font-size: clamp(1rem, 1.8vw, 1.3rem); text-transform: uppercase; letter-spacing: 1px; }
p { margin-bottom: 1em; max-width: 70ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #FF4D00;
  border-radius: 50%;
  flex-shrink: 0;
}
.eyebrow-line::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #FF4D00;
  margin-left: .5rem;
}

/* tekst akcentowany w nagłówku (orange box z czarnym Impact) */
.accent-box {
  display: inline-block;
  background: #FF4D00;
  color: #0A0A0A !important;
  padding: .05em .25em;
  margin: 0 -.05em;
}

.text-orange { color: #FF4D00 !important; }
.text-muted { color: #888; }
.text-small { font-size: .875rem; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 3rem 0; } }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- HEADER + NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #1A1A1A;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  color: #F8F7F3;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: normal;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.logo-accent { color: #FF4D00; }
.logo-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #FF4D00;
  margin-right: .5rem;
  transform: translateY(1px);
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  color: #E8E7E3;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .5rem 0;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover { color: #FF4D00; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.25rem;
  height: 2px;
  background: #FF4D00;
}

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #141414;
  border: 1px solid #2A2A2A;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-content a {
  display: block;
  padding: .75rem 1.25rem;
  letter-spacing: .5px;
}
.nav-dropdown-content a:hover { background: #1E1E1E; color: #FF4D00; }

/* mobile menu toggle */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: #F8F7F3;
  transition: transform .3s, opacity .3s, top .3s;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #0A0A0A;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #1A1A1A;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
  }
  .main-nav.open { max-height: 80vh; padding: 2rem 1.5rem; overflow-y: auto; }
  .main-nav a { width: 100%; padding: .75rem 0; border-bottom: 1px solid #1A1A1A; }
  .nav-dropdown-content {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; padding: 0 0 0 1rem; display: none;
  }
  .nav-dropdown.open .nav-dropdown-content { display: block; }
  .nav-dropdown > a::after { content: " ▾"; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, #FF4D00 100%);
  opacity: .12;
  transform: skew(-15deg);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 1.5rem;
}
.hero h1 span.accent-box { display: inline-block; margin-top: .5rem; }
.hero .lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #CCC;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
}
.hero-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .75rem;
  color: #F8F7F3;
  font-size: 1.05rem;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 10px; height: 10px;
  background: #FF4D00;
  border-radius: 1px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 2rem;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: normal;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform .15s, background .2s, box-shadow .2s;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: #FF4D00;
  color: #0A0A0A;
}
.btn-primary:hover {
  background: #FF6B2B;
  color: #0A0A0A;
  transform: translateX(2px);
  box-shadow: 6px 6px 0 #CC3D00;
}
.btn-secondary {
  background: transparent;
  color: #F8F7F3;
  border-color: #F8F7F3;
}
.btn-secondary:hover { background: #F8F7F3; color: #0A0A0A; }
.btn-ghost {
  color: #FF4D00;
  padding: .5rem 0;
  border-bottom: 2px solid #FF4D00;
  letter-spacing: 1px;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---------- BADGE BAR ---------- */
.badge-bar {
  background: #141414;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  padding: 2rem 0;
}
.badge-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 700px) { .badge-bar-inner { grid-template-columns: repeat(2, 1fr); } }
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.badge-icon {
  width: 48px; height: 48px;
  background: #FF4D00;
  display: grid; place-items: center;
  color: #0A0A0A;
  font-family: Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
}
.badge-label {
  font-size: .85rem;
  color: #F8F7F3;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ---------- CARDS (segments, USP) ---------- */
.card {
  background: #141414;
  border: 1px solid #2A2A2A;
  padding: 2rem;
  position: relative;
  transition: border-color .2s, transform .2s;
  height: 100%;
}
.card:hover {
  border-color: #FF4D00;
  transform: translateY(-4px);
}
.card-number {
  font-family: Impact, sans-serif;
  font-size: 3rem;
  color: #FF4D00;
  line-height: 1;
  margin-bottom: .5rem;
  opacity: .5;
}
.card h3 { margin-bottom: 1rem; }
.card ul {
  list-style: none;
  margin-top: 1rem;
}
.card ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .5rem;
  font-size: .95rem;
  color: #D0D0D0;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  background: #FF4D00;
  border-radius: 1px;
}
.card .card-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #FF4D00;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: 1.5px;
}
.card .card-link::after { content: " →"; transition: margin-left .2s; }
.card:hover .card-link::after { margin-left: .25rem; }

/* ---------- PROCESS STEPS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding-top: 4.5rem;
}
.step-number {
  position: absolute;
  top: 0; left: 0;
  font-family: Impact, sans-serif;
  font-size: 3.25rem;
  color: #FF4D00;
  line-height: 1;
  opacity: .85;
}
.step h4 { margin-bottom: .75rem; color: #F8F7F3; }
.step p { font-size: .95rem; color: #BBB; }

/* ---------- SECTION INTRO ---------- */
.section-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-intro.text-left { text-align: left; margin-left: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: #141414;
  border: 1px solid #2A2A2A;
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: "\201E";
  position: absolute;
  top: -1rem; left: 1rem;
  font-family: Impact, serif;
  font-size: 5rem;
  color: #FF4D00;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #D8D8D8;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  font-style: italic;
}
.testimonial-author {
  font-size: .9rem;
  color: #F8F7F3;
  font-weight: 600;
}
.testimonial-role {
  font-size: .8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .25rem;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: #141414;
  border: 1px solid #2A2A2A;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: #FF4D00;
  background: #151210;
}
.pricing-card.featured::before {
  content: "NAJCZĘŚCIEJ WYBIERANE";
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: #FF4D00;
  color: #0A0A0A;
  font-family: Impact, sans-serif;
  font-size: .75rem;
  letter-spacing: 2px;
  padding: .4rem 1rem;
}
.pricing-name {
  font-family: Impact, sans-serif;
  font-size: 1.75rem;
  color: #F8F7F3;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.pricing-price {
  font-family: Impact, sans-serif;
  font-size: 2.5rem;
  color: #FF4D00;
  line-height: 1;
  margin: 1rem 0;
}
.pricing-price small {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
}
.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}
.pricing-features li {
  padding: .5rem 0;
  border-bottom: 1px solid #2A2A2A;
  font-size: .95rem;
  color: #D0D0D0;
  position: relative;
  padding-left: 1.5rem;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF4D00;
  font-weight: normal;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #2A2A2A;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F8F7F3;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: #FF4D00; }
.faq-question::after {
  content: "+";
  font-family: Impact, sans-serif;
  font-size: 2rem;
  color: #FF4D00;
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: #BBB;
  line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-footer {
  background: linear-gradient(135deg, #FF4D00 0%, #CC3D00 100%);
  padding: 5rem 0;
  text-align: center;
  color: #0A0A0A;
  position: relative;
  overflow: hidden;
}
.cta-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-footer > .container { position: relative; z-index: 1; }
.cta-footer h2 { color: #0A0A0A; margin-bottom: 1rem; }
.cta-footer p { color: #0A0A0A; opacity: .8; max-width: 600px; margin: 0 auto 2rem; }
.cta-footer .btn-primary {
  background: #0A0A0A;
  color: #FF4D00;
}
.cta-footer .btn-primary:hover { background: #1A1A1A; box-shadow: 6px 6px 0 rgba(0,0,0,.3); }

/* ---------- FORMULARZ ---------- */
.form-wrapper {
  background: #141414;
  border: 1px solid #2A2A2A;
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 600px) { .form-wrapper { padding: 1.5rem; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: .85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: .5rem;
  font-weight: 600;
}
.form-field label .req { color: #FF4D00; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: #0A0A0A;
  border: 1px solid #2A2A2A;
  color: #F8F7F3;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #FF4D00;
}
.form-field textarea { resize: vertical; min-height: 120px; }
/* honeypot hidden */
.form-field-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-success {
  background: #143214;
  border: 1px solid #2D7A2D;
  color: #8EE88E;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.form-error {
  background: #321414;
  border: 1px solid #7A2D2D;
  color: #E88E8E;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: .95rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0A0A0A;
  border-top: 3px solid #FF4D00;
  padding: 4rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
  font-family: Impact, sans-serif;
  font-size: 1rem;
  color: #FF4D00;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col li {
  color: #A0A0A0;
  font-size: .9rem;
  line-height: 1.8;
}
.footer-col ul { list-style: none; }
.footer-col a { color: #A0A0A0; }
.footer-col a:hover { color: #FF4D00; }
.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: #8A8A8A;
}

/* ---------- COMPARISON TABLE (tor drewniany vs dmuchaniec) ---------- */
.comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: .95rem;
}
.comparison th, .comparison td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #2A2A2A;
}
.comparison th {
  background: #141414;
  color: #FF4D00;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  font-weight: 700;
}
.comparison td.good { color: #8EE88E; }
.comparison td.bad { color: #E88E8E; }

/* ---------- BLOG ---------- */
.blog-hero {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid #1A1A1A;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #141414;
  border: 1px solid #2A2A2A;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.blog-card:hover { border-color: #FF4D00; transform: translateY(-4px); }
.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #FF4D00 0%, #CC3D00 100%);
  position: relative;
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
}
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
  color: #F8F7F3;
  text-transform: none;
  letter-spacing: 0;
}
.blog-card p {
  font-size: .95rem;
  color: #BBB;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.blog-card-link {
  color: #FF4D00;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: 1.5px;
}

/* blog post single */
.post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.post-meta {
  display: flex;
  gap: 1rem;
  color: #888;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.post-article h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.post-article .lead {
  font-size: 1.2rem;
  color: #D0D0D0;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.post-article h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #FF4D00;
}
.post-article h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
  color: #F8F7F3;
  text-transform: none;
  letter-spacing: 0;
}
.post-article p { color: #D8D8D8; line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.05rem; }
.post-article ul, .post-article ol { margin: 1rem 0 1.5rem 1.5rem; color: #D8D8D8; }
.post-article li { margin-bottom: .5rem; line-height: 1.7; }
.post-article blockquote {
  border-left: 4px solid #FF4D00;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #141414;
  font-style: italic;
  color: #D8D8D8;
}
.post-article a { text-decoration: underline; }
.post-article strong { color: #F8F7F3; }
.post-article img { margin: 2rem 0; border: 1px solid #2A2A2A; }

/* ---------- DEKORACJE (orange corner brackets, divider) ---------- */
.corner-deco {
  position: absolute;
  width: 30px; height: 30px;
  pointer-events: none;
}
.corner-deco::before, .corner-deco::after {
  content: "";
  position: absolute;
  background: #FF4D00;
}
.corner-deco.top-left::before { top: 0; left: 0; width: 30px; height: 3px; }
.corner-deco.top-left::after { top: 0; left: 0; width: 3px; height: 30px; }

.section-divider {
  width: 80px;
  height: 3px;
  background: #FF4D00;
  margin: 0 0 2rem;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ---------- UTILS ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* lazy loading opacity */
img[loading="lazy"] { opacity: 0; transition: opacity .3s; }
img[loading="lazy"].loaded { opacity: 1; }

/* ===========================================================
   NOWE KOMPONENTY — REV 2026-04
   =========================================================== */

/* ---------- TICKER BAR (MARKETING HOOKS) ---------- */
.ticker-bar {
  background: #FF4D00;
  color: #0A0A0A;
  overflow: hidden;
  white-space: nowrap;
  padding: .75rem 0;
  border-top: 2px solid #FF4D00;
  border-bottom: 2px solid #FF4D00;
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}
.ticker-track span {
  display: inline-block;
  padding: 0 2.5rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Impact, "Arial Narrow", sans-serif;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; }
}

/* ---------- STAT BOX (skala eventu — OCR, festyny etc.) ---------- */
.stat-box {
  background: #0E0E0E;
  border: 1px solid #1F1F1F;
  border-top: 4px solid #FF4D00;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: transform .25s, border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.stat-box::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF4D00, transparent);
  opacity: 0;
  transition: opacity .25s;
}
.stat-box:hover {
  background: #141414;
  transform: translateY(-4px);
  border-top-color: #FF6B2B;
}
.stat-box:hover::after { opacity: .6; }
.stat-number {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: normal;
  line-height: 1;
  color: #F8F7F3;
  letter-spacing: -2px;
  margin-bottom: .75rem;
}
.stat-label {
  color: #AAA;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- SKALA — NEW STATS BLOCK ---------- */
.scale-block {
  background: #0A0A0A;
  padding: 6rem 0;
  border-top: 1px solid #1F1F1F;
  border-bottom: 1px solid #1F1F1F;
  position: relative;
}
.scale-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#141414 1px, transparent 1px),
    linear-gradient(90deg, #141414 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .6;
  pointer-events: none;
}
.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.scale-head h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  margin: 1.5rem 0 1.5rem;
}
.accent-box-inline {
  display: inline-block;
  background: #FF4D00;
  color: #0A0A0A;
  padding: 0 .3em;
  margin: 0 .1em;
  transform: skew(-6deg);
}
.scale-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1F1F1F;
  border: 1px solid #1F1F1F;
}
.scale-stat {
  background: #0E0E0E;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background .3s, transform .3s;
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scale-stat:hover {
  background: #161616;
  transform: translateY(-3px);
}
.scale-big {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: normal;
  color: #F8F7F3;
  line-height: 1;
  letter-spacing: -2px;
}
.scale-big .plus { color: #FF4D00; }
.scale-small {
  margin-top: .75rem;
  color: #888;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}
.scale-stat-cta {
  background: #FF4D00;
  padding: 0;
}
.scale-stat-cta:hover { background: #FF6B2B; transform: translateY(-3px); }
.scale-cta {
  color: #0A0A0A;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 1rem;
  transition: none;
}
.scale-cta:hover { color: #0A0A0A; }
@media (max-width: 900px) {
  .scale-grid { grid-template-columns: 1fr; gap: 3rem; }
  .scale-stats { grid-template-columns: repeat(2, 1fr); }
  .scale-stat { min-height: 150px; padding: 1.8rem 1rem; }
}

/* ---------- FORMULARZ — UPGRADE ---------- */
.form-card {
  background: #0E0E0E;
  border: 1px solid #222;
  border-left: 4px solid #FF4D00;
  padding: 3rem;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, #FF4D00 50%);
}
.form-card h2 {
  margin-bottom: .5rem;
}
.form-card .form-sub {
  color: #888;
  margin-bottom: 2rem;
  font-size: .95rem;
}

/* Trust row — nad formularzem */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background: #0A0A0A;
  border: 1px solid #1F1F1F;
  border-radius: 2px;
}
.trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: #E8E7E3;
  font-weight: 600;
}
.trust-row .trust-check {
  width: 24px;
  height: 24px;
  background: #FF4D00;
  color: #0A0A0A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-size: .9rem;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .trust-row { grid-template-columns: 1fr; gap: .75rem; padding: 1rem; }
  .form-card { padding: 2rem 1.5rem; }
  .form-card::before { width: 50px; height: 50px; }
}

/* Pretty inputs */
.form-card label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #CCC;
  font-weight: 700;
}
.form-card input[type="text"],
.form-card input[type="tel"],
.form-card input[type="email"],
.form-card select,
.form-card textarea {
  display: block;
  width: 100%;
  margin-top: .5rem;
  padding: 1rem 1.1rem;
  background: #050505;
  border: 1px solid #2A2A2A;
  color: #F8F7F3;
  font-size: 1.05rem;
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  border-radius: 0;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: #FF4D00;
  background: #0A0A0A;
  box-shadow: 0 0 0 2px rgba(255,77,0,.2);
}
.form-card input::placeholder,
.form-card textarea::placeholder { color: #888; }
.form-card textarea { resize: vertical; min-height: 120px; }
.form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .form-card .form-row { grid-template-columns: 1fr; }
}
.form-card .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  letter-spacing: 0;
  text-transform: none;
  color: #999;
  margin: 1.5rem 0;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.form-card .checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #FF4D00;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.form-card .form-note {
  color: #8A8A8A;
  font-size: .8rem;
  margin-top: 1rem;
  text-align: center;
}
.req-star { color: #FF4D00; margin-left: 3px; }

/* ---------- PLACEHOLDER NA ZDJĘCIE ---------- */
.img-placeholder {
  position: relative;
  background: #0A0A0A;
  border: 2px dashed #FF4D00;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: #8A8A8A;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#141414 1px, transparent 1px),
    linear-gradient(90deg, #141414 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .7;
  pointer-events: none;
}
.img-placeholder-icon {
  width: 48px;
  height: 48px;
  border: 3px solid #FF4D00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF4D00;
  font-family: Impact, sans-serif;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.img-placeholder-text {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  position: relative;
  z-index: 1;
}
.img-placeholder.square { aspect-ratio: 1 / 1; }
.img-placeholder.tall { aspect-ratio: 3 / 4; }
.img-placeholder-hero { aspect-ratio: 21 / 9; margin-bottom: 2rem; }
.img-placeholder > span:not(.img-placeholder-icon) {
  position: relative;
  z-index: 1;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
}

/* ---------- FB-LINK W FOOTERZE ---------- */
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* ---------- POPRAWKI LANDING ---------- */
.price-range {
  font-family: Impact, sans-serif;
  color: #FF4D00;
  font-size: 2.2rem;
  letter-spacing: -1px;
  line-height: 1;
  margin: .5rem 0 .3rem;
}
.price-range small { font-size: .95rem; color: #888; font-weight: 400; }

/* ---------- TIMELINE (Jak działamy) ---------- */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 3rem auto 0;
  padding-left: 3.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.75rem;
  width: 3px;
  background: linear-gradient(#FF4D00 0%, #FF4D00 50%, #FF4D0033 100%);
  z-index: 0;
}
.timeline-step {
  position: relative;
  padding: 1rem 0 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.75rem;
  top: .75rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #0A0A0A;
  border: 3px solid #FF4D00;
  color: #FF4D00;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  letter-spacing: -1px;
}
.timeline-body {
  background: #141414;
  border-left: 3px solid #FF4D00;
  padding: 1.25rem 1.5rem;
  flex: 1;
  position: relative;
}
.timeline-body::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 1.25rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #FF4D00;
}
.timeline-tag {
  display: inline-block;
  background: #FF4D00;
  color: #0A0A0A;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  margin-bottom: .5rem;
}
.timeline-body h4 {
  color: #F8F7F3;
  margin: .25rem 0 .5rem;
  font-size: 1.3rem;
}
.timeline-body p {
  color: #BBB;
  font-size: .95rem;
  margin: 0;
}
@media (max-width: 640px) {
  .timeline { padding-left: 2.5rem; }
  .timeline::before { left: 1.25rem; }
  .timeline-dot {
    left: -2.15rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.05rem;
  }
  .timeline-step { padding-left: 1rem; }
}

/* ---------- LEAD MAGNET (dla-samorzadu.html) ---------- */
.leadmag {
  background: #141414;
  border: 2px solid #FF4D00;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.leadmag-cover {
  aspect-ratio: 3 / 4;
  background: #0A0A0A;
  border: 2px dashed #FF4D00;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.leadmag-cover::before {
  content: "PDF";
  position: absolute;
  top: -14px;
  right: 1rem;
  background: #FF4D00;
  color: #0A0A0A;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: .9rem;
  padding: .2rem .6rem;
  letter-spacing: 2px;
}
.leadmag-cover-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #F8F7F3;
  text-transform: uppercase;
}
.leadmag-cover-sub {
  font-size: .75rem;
  color: #FF4D00;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.leadmag-form label {
  display: block;
  margin-bottom: .75rem;
  color: #BBB;
  font-size: .9rem;
}
.leadmag-form input[type="text"],
.leadmag-form input[type="email"] {
  width: 100%;
  padding: .8rem 1rem;
  background: #0A0A0A;
  border: 1px solid #333;
  color: #F8F7F3;
  font-size: 1rem;
  margin-top: .35rem;
}
.leadmag-form input:focus {
  outline: none;
  border-color: #FF4D00;
  box-shadow: 0 0 0 3px #FF4D0022;
}
.leadmag-form .checkbox-label {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .8rem;
  color: #888;
  margin: .8rem 0 1rem;
}
.leadmag h3 { color: #F8F7F3; margin-bottom: .25rem; }
.leadmag p { color: #BBB; margin-bottom: 1rem; }
.leadmag ul.hero-bullets { margin: 0 0 1.25rem; }
.leadmag ul.hero-bullets li { color: #DDD; padding-left: 1.5rem; }
@media (max-width: 720px) {
  .leadmag { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
  .leadmag-cover { max-width: 260px; margin: 0 auto; }
}

/* ---------- GRIDS (segments, realizations, testimonials, stats) ---------- */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .segments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .segments-grid { grid-template-columns: 1fr; } }
.segment-card {
  background: #141414;
  border: 1px solid #2A2A2A;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
  overflow: hidden;
}
.segment-card:hover { border-color: #FF4D00; transform: translateY(-4px); }
.segment-card h3 { padding: 1.25rem 1.5rem 0; margin-bottom: .75rem; }
.segment-card p { padding: 0 1.5rem 1.5rem; color: #D0D0D0; font-size: .92rem; line-height: 1.55; margin: 0; }
.segment-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0E0E0E;
  border-bottom: 2px solid #FF4D00;
  display: block;
  position: relative;
  overflow: hidden;
}
.segment-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.segment-card:hover .segment-icon img { transform: scale(1.04); }
.segment-icon:empty { aspect-ratio: 4 / 1; border-bottom: none; }

.realizations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .realizations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .realizations-grid { grid-template-columns: 1fr; } }
.realization-card {
  background: #141414;
  border: 1px solid #2A2A2A;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
  overflow: hidden;
}
.realization-card:hover { border-color: #FF4D00; transform: translateY(-4px); }
.realization-image {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}
.realization-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.realization-card:hover .realization-image img { transform: scale(1.04); }
.realization-image .img-placeholder { aspect-ratio: 16/10; }
.realization-body { padding: 1.5rem; }
.realization-body h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.realization-body p { font-size: .95rem; line-height: 1.55; }
.realization-body .eyebrow { margin-bottom: .75rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonials-grid .testimonial cite { color: #A0A0A0; font-size: .85rem; display: block; margin-top: 1rem; font-style: normal; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: #0E0E0E;
  border: 1px solid #1F1F1F;
  border-top: 4px solid #FF4D00;
  padding: 2rem 1.25rem;
  text-align: center;
}
.stat-num { font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: #F8F7F3; line-height: 1; letter-spacing: -1px; margin-bottom: .5rem; }
.stat-label { color: #AAA; font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }

/* ---------- PHOTO GALLERY (Tor w akcji) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0A0A0A;
  border: 1px solid #1F1F1F;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.gallery-item:hover { border-color: #FF4D00; transform: translateY(-2px); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s, opacity .3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: .5rem .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: #F8F7F3;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: translateY(0); }
.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
@media (max-width: 600px) { .gallery-feature { grid-column: span 2; grid-row: span 1; aspect-ratio: 1/1; } }

/* ---------- HERO PHOTO BANNER ---------- */
.hero-photo {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  border: 1px solid #2A2A2A;
  overflow: hidden;
}
.hero-photo img { width: 100%; height: auto; display: block; }
.hero-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
  color: #F8F7F3;
  font-size: .9rem;
  letter-spacing: .5px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; border: 1px solid #2A2A2A; }
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: #F8F7F3;
  font-size: 2rem;
  cursor: pointer;
  font-family: Impact, sans-serif;
  padding: .25rem .75rem;
}
.lightbox-close:hover { color: #FF4D00; }

/* ---------- PRINT ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .ticker-bar, .lightbox { display: none; }
  body { background: white; color: black; }
  h1, h2, h3, h4 { color: black; }
}
