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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn svg,
.btn i {
  font-size: 16px
}

.btn-green {
  color: #0c2018;
  background: var(--grad-lime);
  box-shadow: 0 10px 30px rgba(90, 184, 43, .45);
}

.btn-green:hover {
  box-shadow: 0 14px 38px rgba(90, 184, 43, .6)
}

.btn-outline-light {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .08)
}

.btn-outline-green {
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(88, 181, 49, .5);
}

.btn-outline-green:hover {
  box-shadow: var(--shadow-sm)
}

/* ================= HEADER ================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 104px;
}

.logo {
  display: flex;
  align-items: center;
  height: 46px
}

.logo img {
  max-width: 280px
}

.logo-text {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .5px;
  color: #fff
}

.footer-brand .logo-text {
  display: inline-block;
  margin-bottom: 20px
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 24px
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0
}

.main-nav li,
.mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0
}

.main-nav li::before,
.mobile-nav li::before,
.main-nav li::marker,
.mobile-nav li::marker {
  content: none
}

.main-nav a {
  color: #e7ecf5;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--green-lime)
}

.main-nav .caret {
  width: 12px;
  height: 12px;
  opacity: .8
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto
}

.header-contact .btn {
  white-space: nowrap
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e7ecf5;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: color .2s ease
}

.contact-item:hover {
  color: var(--green-lime)
}

.contact-item .contact-icon {
  transition: background .2s ease, border-color .2s ease
}

.contact-item:hover .contact-icon {
  background: rgba(156, 204, 46, .16);
  border-color: rgba(156, 204, 46, .45)
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.contact-icon {
  font-size: 16px;
  color: var(--green-lime)
}

.header-fb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background .2s ease, border-color .2s ease;
}

.header-fb:hover {
  background: rgba(24, 119, 242, .18);
  border-color: rgba(24, 119, 242, .5)
}

.header-fb svg {
  width: 20px;
  height: 20px;
  fill: #e7ecf5;
  transition: fill .2s ease
}

.header-fb:hover svg {
  fill: #1877F2
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  cursor: pointer;
  place-items: center
}

.nav-toggle {
  font-size: 20px;
  color: #e7ecf5
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: var(--navy-600);
  overflow: visible;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background:
    linear-gradient(90deg, #0a1535 0%, var(--navy-600) 34%, rgba(33, 50, 101, .55) 48%, rgba(33, 50, 101, 0) 62%),
    radial-gradient(1200px 600px at 78% 28%, rgba(120, 180, 255, .18), transparent 60%),
    var(--hero-bg-img, none);
  background-size: cover;
  background-position: right center;
}

/* concentric-circle ornament (echo logo PP) */
.ornament {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .55
}

.ornament svg {
  display: block;
  width: 100%;
  height: 100%
}

.ornament circle {
  fill: none;
  stroke: rgba(255, 255, 255, .10);
  stroke-width: 1
}

.ornament .ring-accent {
  stroke: rgba(156, 204, 46, .28)
}

.ornament-bleed circle {
  stroke: rgba(108, 181, 45, .32)
}

.ornament-bleed .ring-accent {
  stroke: rgba(156, 204, 46, .6)
}

.ornament-blue circle {
  stroke: rgba(125, 170, 255, .32)
}

.ornament-blue .ring-accent {
  stroke: rgba(150, 195, 255, .55)
}

.ornament-mix circle {
  stroke: rgba(108, 181, 45, .32)
}

.ornament-mix circle:nth-child(even) {
  stroke: rgba(125, 170, 255, .34)
}

.ornament-mix .ring-accent {
  stroke: rgba(156, 204, 46, .6)
}

.hero .ornament-left {
  top: -360px;
  left: -440px;
  width: 1500px;
  height: 1500px;
  opacity: .5
}

.hero .ornament-right {
  top: auto;
  bottom: -320px;
  right: -260px;
  width: 720px;
  height: 720px;
  opacity: .4
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 180px 0 90px
}

.hero-content {
  max-width: 760px
}

.hero h1 {
  font-size: 50px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 26px;
}

.hero h1 .lime {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 19px;
  color: #c3cde0;
  max-width: 560px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 64px
}

/* scroll-down (pulsujące okręgi — motyw PP) */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-lime);
  color: #0c2018;
  box-shadow: 0 10px 30px rgba(90, 184, 43, .45);
  transition: box-shadow .2s ease;
}

.hero-scroll:hover {
  box-shadow: 0 14px 40px rgba(90, 184, 43, .6)
}

.hero-scroll i {
  position: relative;
  z-index: 2;
  font-size: 20px;
  animation: pp-scroll-bounce 1.8s ease-in-out infinite
}

.hero-scroll::before,
.hero-scroll::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green-lime);
  pointer-events: none;
  animation: pp-scroll-ring 2.4s cubic-bezier(.4, 0, .2, 1) infinite;
}

.hero-scroll::after {
  animation-delay: 1.2s
}

@keyframes pp-scroll-ring {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(2.4);
    opacity: 0
  }
}

@keyframes pp-scroll-bounce {

  0%,
  100% {
    transform: translateY(-3px)
  }

  50% {
    transform: translateY(3px)
  }
}

@media (prefers-reduced-motion:reduce) {

  .hero-scroll i,
  .hero-scroll::before,
  .hero-scroll::after {
    animation: none
  }
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  padding: 18px 26px;
  border-radius: 16px;
  margin: 0 0 30px;
}

.google-badge .g-logo {
  width: 40px;
  height: 40px;
  flex: none
}

.gb-rate {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.gb-rate .label {
  font-size: 14px;
  color: #c3cde0;
  font-weight: 500
}

.gb-score {
  display: flex;
  align-items: center;
  gap: 8px
}

.gb-score b {
  font-size: 22px;
  font-weight: 700
}

.stars {
  display: flex;
  gap: 3px;
  font-size: 15px;
  color: #FFC107
}

.gb-sep {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, .16)
}

.gb-meta {
  font-size: 13px;
  color: #c3cde0;
  font-weight: 500;
  line-height: 1.4
}

/* ================= SERVICE ================= */
.service {
  padding: 110px 0;
  position: relative
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--light)
}

.service>.container {
  position: relative;
  z-index: 2
}

.eyebrow {
  color: var(--green-bright);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.service-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.service-head h2 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  color: #16213a;
}

.service-head h2 .green {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 24px;
  max-width: 560px
}

.service-head .head-cta {
  justify-self: end
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.service-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #e6eaef;
  border-radius: var(--radius);
  padding: 38px 34px 30px;
  position: relative;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  cursor: pointer;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--green-bright);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card.active {
  border-color: var(--green-bright);
  box-shadow: var(--shadow-md)
}

.sc-icon {
  height: 64px;
  margin-bottom: 30px;
  display: flex;
  align-items: center
}

.sc-icon {
  font-size: 52px;
  color: #16213a
}

.service-card:hover .sc-icon {
  color: var(--green-bright)
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #16213a
}

.service-card p {
  color: var(--muted);
  font-size: 15px
}

.sc-arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e6eaef;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}

.sc-arrow {
  font-size: 16px;
  color: #16213a
}

.sc-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-card:hover .sc-arrow {
  background: var(--grad-lime);
  border-color: transparent
}

.service-card:hover .sc-arrow {
  color: #0c2018
}

/* ================= PORTFOLIO ================= */
.portfolio {
  position: relative;
  overflow: visible;
  color: #fff;
  padding: 110px 0
}

.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(270deg, #0a1535 0%, var(--navy-600) 34%, rgba(33, 50, 101, .55) 48%, rgba(33, 50, 101, 0) 62%),
    radial-gradient(1200px 600px at 18% 22%, rgba(120, 180, 255, .16), transparent 60%),
    var(--navy-600);
}

.portfolio .ornament-right {
  top: -380px;
  right: -440px;
  width: 1500px;
  height: 1500px;
  opacity: .45
}

.portfolio .ornament-left {
  bottom: -320px;
  left: -260px;
  width: 720px;
  height: 720px;
  opacity: .3
}

.portfolio>.container {
  position: relative;
  z-index: 2
}

.portfolio-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px
}

.portfolio-head .eyebrow {
  color: var(--green-lime)
}

.portfolio-head h2 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1
}

.portfolio-head h2 .lime {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.portfolio-head p {
  color: #9aa6bf;
  margin-top: 18px;
  font-size: 17px
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.pf-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: linear-gradient(160deg, #1c2740, #0e1729);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: flex-end;
  transition: transform .3s ease, box-shadow .3s ease;
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .5)
}

.pf-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.pf-card:hover .pf-img {
  transform: scale(1.06)
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 28, 0) 35%, rgba(8, 14, 28, .55) 70%, rgba(8, 14, 28, .92) 100%);
}

.pf-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pf-label span {
  font-weight: 600;
  font-size: 16px
}

.pf-tag {
  align-self: flex-start;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 21, 43, .6);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  color: var(--green-lime);
}

.pf-go {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  transition: background .2s ease;
}

.pf-go {
  font-size: 14px;
  color: #fff
}

.pf-card:hover .pf-go {
  background: var(--grad-lime)
}

.pf-card:hover .pf-go {
  color: #0c2018
}

.portfolio-foot {
  text-align: center;
  margin-top: 56px
}

/* ================= CTA ================= */
.cta {
  padding: 110px 0;
  position: relative
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--light)
}

.cta>.container {
  position: relative;
  z-index: 2
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(120deg, #0c5b48 0%, #1c8a52 48%, #6cb52d 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 64px;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--cta-bg-img, none) center left/cover no-repeat;
  opacity: .20;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 28%, transparent 70%);
  mask-image: linear-gradient(90deg, #000 0%, #000 28%, transparent 70%);
}

.cta-box .ornament-right {
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  opacity: .5
}

.cta-box .ornament circle {
  stroke: rgba(255, 255, 255, .16)
}

.cta-box .ornament .ring-accent {
  stroke: rgba(255, 255, 255, .32)
}

.cta-info {
  position: relative;
  z-index: 2;
  color: #fff;
  align-self: center
}

.cta-info .eyebrow {
  color: rgba(255, 255, 255, .85)
}

.cta-info h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px
}

.cta-info>p {
  font-size: 17px;
  color: rgba(255, 255, 255, .9);
  max-width: 440px;
  margin-bottom: 34px
}

.cta-list {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: #fff
}

.cta-list .ci {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
}

.cta-list .ci {
  font-size: 20px;
  color: #fff
}

.cta-list small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7)
}

.cta-form {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.cta-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px
}

.cta-form .sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 26px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.form-row::before,
.form-row::after,
.form-row-3::before,
.form-row-3::after {
  content: none;
  display: none;
}

.form-row>p:empty,
.form-row-3>p:empty,
.form-row>br,
.form-row-3>br {
  display: none;
}

.field-accept {
  margin: 8px 0 2px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5
}

.field-accept .wpcf7-list-item {
  margin: 0
}

.field-accept label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer
}

.field-accept input[type=checkbox] {
  margin-top: 3px;
  flex: none;
  width: 16px;
  height: 16px;
  accent-color: var(--green-bright)
}

.field-accept a {
  color: var(--green-bright);
  text-decoration: underline
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 7px
}

.field input,
.field textarea,
.cta-form input.wpcf7-form-control:not([type=submit]),
.cta-form textarea.wpcf7-form-control {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid #e2e7ee;
  border-radius: 12px;
  background: #f8fafc;
  transition: border-color .2s ease, background .2s ease;
}

.field textarea,
.cta-form textarea.wpcf7-form-control {
  resize: vertical;
  max-height: 104px
}

.field input:focus,
.field textarea:focus,
.cta-form input.wpcf7-form-control:focus,
.cta-form textarea.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--green-bright);
  background: #fff
}

.cta-form .btn-green,
.cta-form input.wpcf7-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  color: #0c2018;
  background: var(--grad-lime);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(90, 184, 43, .45)
}

/* ---------- Contact Form 7 — reguły bazowe dla każdego formularza ---------- */
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 17px 34px;
  border: none;
  border-radius: 999px;
  color: #0c2018;
  background: var(--grad-lime);
  box-shadow: 0 10px 30px rgba(90, 184, 43, .4);
  cursor: pointer;
  transition: box-shadow .25s ease;
}

.wpcf7-submit:hover {
  box-shadow: 0 14px 38px rgba(90, 184, 43, .58);
}

.wpcf7-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.wpcf7-spinner {
  margin: 0 0 0 12px;
}

.wpcf7-not-valid-tip {
  font-size: 13.5px;
  color: #d4463c;
  margin-top: 7px;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: #d4463c;
}

.wpcf7-response-output {
  margin: 18px 0 0;
  border: 1px solid rgba(90, 184, 43, .38);
  border-radius: 14px;
  background: rgba(156, 204, 46, .12);
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  border-color: rgba(212, 70, 60, .3);
  background: rgba(212, 70, 60, .06);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center
}

/* ================= RECOMMENDATIONS ================= */
.reco {
  padding: 110px 0;
  position: relative
}

.reco::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--light)
}

.reco>.container {
  position: relative;
  z-index: 2
}

.reco-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px
}

.reco-head h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #16213a;
  line-height: 1.1
}

.reco-head h2 .green {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.reco-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 17px
}

.reco-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch
}

.reco-google {
  border-radius: var(--radius);
  padding: 34px 30px;
  color: #fff;
  background: linear-gradient(150deg, #15213f 0%, #213265 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reco-google .g-logo {
  width: 46px;
  height: 46px;
  margin-bottom: 18px
}

.reco-google .big {
  font-size: 46px;
  font-weight: 800;
  line-height: 1
}

.reco-google .stars {
  margin: 12px 0 6px;
  font-size: 19px
}

.reco-google p {
  color: #c3cde0;
  font-size: 14px;
  margin-bottom: 22px
}

.reco-google .btn {
  justify-content: center
}

.reco-card {
  background: #fff;
  border: 1.5px solid #e6eaef;
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.reco-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.reco-card .stars {
  display: flex;
  gap: 3px;
  font-size: 16px
}

.reco-card .quote {
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
  flex: 1
}

.reco-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px
}

.reco-author .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  background: var(--grad-green);
}

.reco-author b {
  font-size: 15px;
  color: #16213a;
  display: block;
  line-height: 1.2
}

.reco-author small {
  font-size: 13px;
  color: var(--muted)
}

/* ================= PARTNERS ================= */
.partners {
  padding: 70px 0;
  border-top: 1px solid #eef1f4;
  position: relative
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff
}

.partners>.container {
  position: relative;
  z-index: 2
}

.partners .lead {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: center
}

.partner {
  height: 64px;
  border: 1.5px solid #eef1f4;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  filter: grayscale(1);
  opacity: .6;
  transition: opacity .2s ease, filter .2s ease, border-color .2s ease;
}

.partner:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: #e0e6ec
}

.partner svg {
  height: 26px;
  width: auto
}

.partner img {
  max-height: 34px;
  width: auto
}

.partner span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #16213a
}

/* ================= FOOTER ================= */
.footer {
  background: var(--navy-900);
  color: #9aa6bf;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--footer-bg-img, none) center/cover no-repeat;
  filter: grayscale(1);
  opacity: .08;
}

.footer .ornament-right {
  top: auto;
  bottom: -309px;
  right: -428px;
  width: 1200px;
  height: 1200px;
  opacity: .28
}

.footer>.container {
  position: relative;
  z-index: 2
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 54px;
}

.fc-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--grad-green);
  border-radius: 16px;
  padding: 20px 24px;
}

.fc-item .ci {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .2)
}

.fc-item .ci {
  font-size: 22px;
  color: #fff
}

.fc-item small {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 4px
}

.fc-item b {
  font-size: 19px;
  color: #fff;
  font-weight: 700
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr 1fr auto;
  gap: 40px;
  padding: 54px 0
}

.footer-brand img {
  max-width: 220px;
  margin-bottom: 20px
}

.footer-brand p {
  font-size: 15px;
  color: #8c99b3;
  max-width: 340px
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-social a {
  display: grid;
  place-items: center;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px)
}

.footer-social svg {
  width: 24px;
  height: 24px
}

.footer-social .s-fb {
  fill: #1877F2
}

.footer-social .s-ig {
  fill: #E4405F
}

.footer-social .s-in {
  fill: #0A66C2
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-col li,
.footer-col a {
  color: #8c99b3;
  font-size: 15px
}

.footer-col a {
  transition: color .2s ease
}

.footer-col a:hover {
  color: var(--green-lime)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: #7c879f;
}

.footer-bottom .brand-link {
  color: #fff;
  font-weight: 700
}

.footer-bottom .brand-link:hover {
  color: var(--green-lime)
}

.scroll-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #cdd6e6;
  font-weight: 600;
  cursor: pointer
}

.scroll-top .st-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-lime);
  transition: transform .2s ease
}

.scroll-top:hover .st-ic {
  transform: translateY(-3px)
}

.scroll-top .st-ic {
  font-size: 13px;
  color: #0c2018
}

/* ================= FOOTER (mini) ================= */
.mini-footer {
  background: var(--navy-900);
  color: #7c879f;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
  font-size: 14px
}

/* ================= PAGE (podstrony) ================= */
.page-title {
  position: relative;
  overflow: visible;
  color: #fff;
  z-index: 2;
  background:
    linear-gradient(90deg, #0a1535 0%, var(--navy-600) 42%, rgba(33, 50, 101, .85) 100%),
    var(--navy-600);
  padding: 170px 0 70px;
}

/* okręgi zielonkawe — wychodzą z page-title na page-wrapper (przełamanie sekcji) */
.page-title .ornament-right {
  top: auto;
  bottom: -280px;
  right: -60px;
  width: 760px;
  height: 760px;
  opacity: .55;
  z-index: 1
}

.page-title .ornament circle {
  stroke: rgba(108, 181, 45, .34)
}

.page-title .ornament circle:nth-child(even) {
  stroke: rgba(156, 204, 46, .22)
}

.page-title .ornament .ring-accent {
  stroke: rgba(156, 204, 46, .7)
}

.page-title>.container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap
}

.page-title h1 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff
}

.breadcrumb {
  font-size: 14px;
  color: #9aa6bf;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center
}

.breadcrumb a {
  color: #c3cde0;
  transition: color .2s ease
}

.breadcrumb a:hover {
  color: var(--green-lime)
}

.breadcrumb .separator,
.breadcrumb span {
  color: #5b6577
}

.page-wrapper {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  background: var(--white)
}

.entry-page {
  max-width: 1240px;
  margin-inline: auto
}

/* ---------- Typografia treści ---------- */
.entry-content {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75
}

.entry-content>*+* {
  margin-top: 22px
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  color: #16213a;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.3px;
}

.entry-content h2 {
  font-size: 34px;
  margin-top: 48px
}

.entry-content h3 {
  font-size: 27px;
  margin-top: 40px
}

.entry-content h4 {
  font-size: 22px;
  margin-top: 32px
}

.entry-content h5 {
  font-size: 18px;
  margin-top: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-bright)
}

.entry-content p {
  margin-top: 18px
}

.entry-content a:not(.btn) {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px
}

.entry-content a:not(.btn):hover {
  color: var(--green-teal)
}

.entry-content strong {
  color: #16213a
}

.entry-content blockquote {
  border-left: 4px solid var(--green-bright);
  background: var(--light);
  border-radius: 0 14px 14px 0;
  padding: 20px 26px;
  margin: 32px 0;
  color: #334155;
  font-style: italic;
}

/* listy z zieloną kropką */
.entry-content ul {
  margin-top: 18px
}

.entry-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  list-style: none
}

.entry-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad-lime);
}

.entry-content ol {
  margin-top: 18px;
  padding-left: 22px
}

.entry-content ol li {
  margin-bottom: 12px;
  padding-left: 6px
}

.entry-content ol li::marker {
  color: var(--green-bright);
  font-weight: 700
}

/* ---------- Gutenberg — obrazy ---------- */
.entry-content img {
  border-radius: var(--radius)
}

.entry-content figure {
  margin-top: 26px
}

.entry-content .wp-block-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.entry-content figcaption {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px
}

.entry-content .wp-block-image a {
  cursor: zoom-in
}

/* ---------- Gutenberg — galeria ---------- */
.entry-content .wp-block-gallery,
.entry-content .wp-block-gallery.has-nested-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.entry-content .wp-block-gallery.columns-1 {
  grid-template-columns: minmax(0, 1fr);
}

.entry-content .wp-block-gallery.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-content .wp-block-gallery.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.entry-content .wp-block-gallery.columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.entry-content .wp-block-gallery.columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.entry-content .wp-block-gallery .wp-block-image,
.entry-content .wp-block-gallery .blocks-gallery-item,
.entry-content .wp-block-gallery.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  flex: none;
  margin: 0;
}

.entry-content .wp-block-gallery img,
.entry-content .wp-block-gallery .blocks-gallery-item img,
.entry-content .wp-block-gallery.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: transform .3s ease, box-shadow .3s ease;
}

.entry-content .wp-block-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.entry-content .wp-block-gallery figcaption,
.entry-content .wp-block-gallery.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) figcaption {
  position: static;
  background: none;
  max-height: none;
  margin: 0;
  padding: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
  text-align: left;
}

/* ---------- Lightbox (galeria / obrazy treści) ---------- */
.pp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(8, 12, 24, .92);
}

.pp-lightbox.open {
  display: flex
}

.pp-lb-fig {
  margin: 0;
  max-width: 90vw;
  max-height: 88vh
}

.pp-lb-fig img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55)
}

.pp-lb-close,
.pp-lb-prev,
.pp-lb-next {
  position: absolute;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.pp-lb-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 26px
}

.pp-lb-prev,
.pp-lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 24px
}

.pp-lb-prev {
  left: 24px
}

.pp-lb-next {
  right: 24px
}

.pp-lb-close:hover,
.pp-lb-prev:hover,
.pp-lb-next:hover {
  background: var(--grad-lime);
  color: #0c2018;
  border-color: transparent
}

/* ================= ARCHIVE / CATEGORY / SEARCH ================= */
/* kafle są zawsze ciemne — wymuś biały tekst niezależnie od sekcji */
.pf-card {
  color: #fff
}

.archive-desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px
}

.archive-desc strong {
  color: #16213a
}

.archive-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px
}

/* lista wpisów (wpisy blogowe / wyniki wyszukiwania) */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 900px;
  margin-inline: auto
}

.archive-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1.5px solid #e6eaef;
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.archive-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.archive-item-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden
}

.archive-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/11
}

.archive-item-title {
  font-size: 22px;
  font-weight: 800;
  color: #16213a;
  line-height: 1.25;
  margin-bottom: 10px
}

.archive-item-title a {
  transition: color .2s ease
}

.archive-item-title a:hover {
  color: var(--green-bright)
}

.archive-item-excerpt {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch
}

.search-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #e6eaef;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease
}

.search-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.search-card-thumb {
  display: block;
  overflow: hidden
}

.search-card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/11;
  transition: transform .35s ease
}

.search-card:hover .search-card-thumb img {
  transform: scale(1.04)
}

.search-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px
}

.search-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #16213a;
  line-height: 1.3;
  margin-bottom: 10px
}

.search-card-title a {
  transition: color .2s ease
}

.search-card-title a:hover {
  color: var(--green-bright)
}

.search-card-excerpt {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px
}

.search-card .btn {
  margin-top: auto;
  align-self: flex-start
}

.archive-empty {
  color: var(--muted);
  font-size: 17px;
  text-align: center;
  padding: 40px 0
}

/* paginacja */
.pp-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center
}

.pp-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center
}

.pp-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1.5px solid #e6eaef;
  color: #16213a;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.pp-pagination a.page-numbers:hover {
  border-color: var(--green-bright);
  color: var(--green-bright)
}

.pp-pagination .page-numbers.current {
  background: var(--grad-lime);
  border-color: transparent;
  color: #0c2018
}

.pp-pagination .page-numbers.dots {
  border: none
}

/* ================= SINGLE (wpis / realizacja) ================= */
.single-thumb {
  margin-bottom: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.single-thumb img {
  width: 100%;
  height: auto;
  display: block
}

.entry-page>.eyebrow {
  margin-bottom: 14px
}

.single-foot {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #eef1f4
}

.single-related {
  max-width: 1240px;
  margin: 64px auto 0;
}

.single-related h2 {
  font-size: 26px;
  font-weight: 700;
  color: #16213a;
  margin-bottom: 24px;
}