/*
Theme Name: PW Grupa Remonty
Theme URI: https://pwgruparemonty.pl
Author: PW Grupa Remonty
Description: Profesjonalny szablon WordPress dla firmy remontowo-budowlanej
Version: 1.0.1
License: GNU General Public License v2 or later
Text Domain: pw-remonty
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --yellow: #F5C400;
  --yellow-dark: #D4A800;
  --yellow-hover: #FFD633;
  --black: #1A1A1A;
  --dark: #222222;
  --gray: #555555;
  --light-gray: #F5F5F5;
  --border: #E5E5E5;
  --white: #FFFFFF;
  --font-main: "Montserrat", sans-serif;
  --font-display: "Montserrat", sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 6px;
  --transition: all 0.25s ease;
}


.hero-image{
  display: none;
}
a.custom-logo-link img {
  max-height: 64px;
  width: auto;
}
a.site-logo {
  display: none;
}
.features-grid .animate-on-scroll.visible {
    box-shadow: 0 2px 20px #00000014;
    border: 1px solid #ebebeb;
}

.hero-section {
    background: #f2f2f4;
}
.hero-section .container .hero-inner {
    background-position: right;
    background-image: url(/wp-content/uploads/2026/03/wpgr-banner-min-scaled.png);
    background-repeat: no-repeat;
    box-sizing: border-box;
    background-size: cover;
}




@media (max-width: 768px) {
  .hero-section .container .hero-inner {
    background-position: 57% 0;
    padding: 0 30px;
  }
  .hero-section .container{
    padding: 0 !important;
  }
}


.entry-content p {
    padding: 0 0 25px 0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container { max-width: 1450px; margin: 0 auto; padding: 0 24px; }

.btn { display: inline-block; font-family: var(--font-main); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--radius); cursor: pointer; transition: var(--transition); border: none; text-align: center; }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,196,0,0.4); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* HEADER */
#site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 32px; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-pw { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--black); letter-spacing: 2px; }
.logo-sub { font-family: var(--font-display); font-weight: 600; font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.logo-remonty { color: var(--yellow); }

#main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a { font-weight: 500; font-size: 15px; color: var(--dark); position: relative; padding: 4px 0; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--yellow); transition: var(--transition); }
.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after { width: 100%; }
.nav-menu .current-menu-item > a { color: var(--black); font-weight: 700; }

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: var(--transition); border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* LANGUAGE SWITCHER */
.header-lang { display: flex; align-items: center; flex-shrink: 0; }
.lang-switcher { display: flex; align-items: center; gap: 6px; list-style: none; }
.lang-switcher .lang-item a,
.lang-switcher .lang-item span { display: flex; align-items: center; padding: 3px; border-radius: 3px; border: 2px solid transparent; transition: var(--transition); cursor: pointer; text-decoration: none; font-size: 0; }
.lang-switcher .lang-item a:hover { border-color: var(--yellow); }
.lang-switcher .lang-item img { width: 28px; height: 19px; object-fit: cover; border-radius: 2px; display: block; opacity: 0.4; transition: opacity 0.2s; }
.lang-switcher .lang-item.current-lang > span { border-color: var(--yellow); }
.lang-switcher .lang-item.current-lang img { opacity: 1; }
.lang-switcher .lang-item a:hover img { opacity: 1; }

/* HERO */
.hero-section { overflow: hidden; position: relative; min-height: 560px; display: flex; align-items: center; }
@media (max-width: 768px) {
  .hero-section { min-height: unset !important;}
}

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; min-height: 560px; width: 100%; }
.hero-content { padding: 80px 0; animation: fadeInUp 0.8s ease both; }
.hero-label { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #000; margin-bottom: 20px; }
.hero-label span { color: var(--yellow); }
.hero-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.1; color: var(--black); margin-bottom: 20px; }
.hero-title strong { font-weight: 800; }
.hero-subtitle { font-size: 17px; color: var(--gray); line-height: 1.6; margin-bottom: 36px; max-width: 400px; }
.hero-image { position: relative; height: 100%; min-height: 560px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, #F8F6F0 0%, transparent 30%); z-index: 1; }

/* FEATURES BAR */
.features-bar { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 24px 16px; border-radius: var(--radius); transition: var(--transition); }
.feature-item:hover { background: var(--light-gray); }
.feature-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: var(--yellow); }
.feature-icon svg { width: 48px; height: 48px; }
.feature-title { font-weight: 600; font-size: 15px; line-height: 1.35; color: var(--dark); }

/* SERVICES */
.services-section { padding: 80px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.5vw, 42px); color: var(--black); margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.service-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); background: var(--white); cursor: pointer; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img { height: 180px; overflow: hidden; background: var(--light-gray); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #e8e0d0, #d4c9b0); color: var(--gray); font-size: 13px; text-align: center; padding: 16px; }
.service-body { padding: 18px 20px 20px; }
.service-name { font-weight: 600; font-size: 16px; line-height: 1.3; color: var(--black); }
.services-cta { text-align: center; margin-top: 8px; }

/* REALIZACJE BANNER */
.realizacje-banner { background: var(--light-gray); border-top: 1px solid var(--border); padding: 28px 0; }
.realizacje-inner { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; color: var(--dark); }
.realizacje-inner a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.realizacje-inner a:hover { color: var(--yellow-dark); }

/* ABOUT */
.about-section { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.section-label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 16px; }
.about-text { color: var(--gray); font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.stat-number { font-family: var(--font-display); font-weight: 800; font-size: 42px; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }

/* REALIZACJE */
.realizacje-section { padding: 80px 0; background: var(--light-gray); }
.realizacje-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.realizacja-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.realizacja-card:hover .realizacja-overlay { opacity: 1; }
.realizacja-img { height: 240px; background: var(--border); }
.realizacja-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.realizacja-overlay { position: absolute; inset: 0; background: rgba(245,196,0,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.realizacja-overlay span { font-weight: 700; font-size: 16px; color: var(--black); }

/* CONTACT */
.contact-section { padding: 80px 0; background: var(--black); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-title { font-family: var(--font-display); font-weight: 700; font-size: 38px; margin-bottom: 8px; line-height: 1; display: flex; gap: 10px; }
.contact-title span { color: var(--yellow); }
.contact-subtitle { font-size: 16px; color: #aaa; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 40px; height: 40px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--black); }
.contact-icon svg { width: 18px; height: 18px; }
.contact-label { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-size: 16px; font-weight: 600; margin-top: 2px; }
.contact-value a { color: var(--white); }
.contact-value a:hover { color: var(--yellow); }

/* FORM */
.contact-form-title { font-weight: 700; font-size: 22px; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: #aaa; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 13px 16px; color: var(--white); font-family: var(--font-main); font-size: 15px; outline: none; transition: var(--transition); width: 100%; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--yellow); background: rgba(255,255,255,0.12); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #666; }
.form-group textarea { min-height: 120px; resize: vertical; }

/* CF7 override */
.wpcf7 { width: 100%; }
.wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.wpcf7-form p { margin: 0; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 13px 16px; color: var(--white); font-family: var(--font-main); font-size: 15px; outline: none; transition: var(--transition); width: 100%; }
.wpcf7-form input[type="text"]:focus, .wpcf7-form input[type="email"]:focus, .wpcf7-form input[type="tel"]:focus, .wpcf7-form textarea:focus { border-color: var(--yellow); }
.wpcf7-form input[type="submit"] { background: var(--yellow); color: var(--black); font-weight: 700; font-size: 15px; padding: 14px 28px; border: none; border-radius: var(--radius); cursor: pointer; transition: var(--transition); }
.wpcf7-form input[type="submit"]:hover { background: var(--yellow-hover); }

/* FOOTER */
#site-footer { background: #111; color: #aaa; padding: 48px 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-heading { font-weight: 700; font-size: 14px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; font-size: 14px !important;}
.footer-links a { font-size: 14px; color: #999; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #666; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--yellow); }

/* PAGE */
.page-hero { background: var(--black); color: var(--white); padding: 64px 0; text-align: center; }
.page-hero {
    padding: 15px 0;
    text-align: left;
}
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-bottom: 2px; }
.breadcrumb { font-size: 12px; color: #999; font-weight: 500;}
.breadcrumb a { color: var(--yellow); }
.page-content { padding: 80px 0; }
.page-content h1, .entry-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 48px); margin-bottom: 24px; }
.page-content h2 { font-family: var(--font-display); font-weight: 700; font-size: 28px; margin: 40px 0 16px; }
.page-content p { margin-bottom: 16px; line-height: 1.75; color: var(--gray); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* WP */
.screen-reader-text { position: absolute; left: -9999px; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { display: block; margin: 0 auto; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .realizacje-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  #main-navigation { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; justify-content: flex-start; padding: 40px 24px; z-index: 999; overflow-y: auto; }
  #main-navigation.mobile-open { display: flex; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-menu a { display: block; padding: 16px 0; font-size: 18px; }
  .nav-menu a::after { display: none; }
  .header-cta .btn { display: none; }
@media (max-width: 1300px) {
  .header-cta .btn { display: none; }
}
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 0 32px; }
  .hero-image { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .realizacje-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

.pw-oferta .uslugi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 48px;
}
.pw-oferta .usluga-card {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}
.pw-oferta .usluga-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.pw-oferta .usluga-card.full {
  grid-column: span 2;
  background: #1A1A1A;
  color: #fff;
}
.pw-oferta .usluga-nr {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 3px;
  color: #F5C400;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pw-oferta .usluga-card.full .usluga-nr { color: #F5C400; }
.pw-oferta .usluga-tytul {
  font-weight: 700;
  font-size: 26px;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1.15;
}
.pw-oferta .usluga-card.full .usluga-tytul { color: #fff; }
.pw-oferta .usluga-opis {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 18px;
}
.pw-oferta .usluga-card.full .usluga-opis { color: #bbb; }
.pw-oferta .usluga-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pw-oferta .usluga-lista li {
  font-size: 14px;
  color: #444;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pw-oferta .usluga-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 2px;
  background: #F5C400;
  border-radius: 2px;
}
.pw-oferta .usluga-card.full .usluga-lista li { color: #ccc; }
.pw-oferta .usluga-card.full .usluga-lista li::before { background: #F5C400; }

.pw-oferta .b2b-box {
  background: #F5F5F5;
  border-left: 4px solid #F5C400;
  border-radius: 6px;
  padding: 36px 40px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.pw-oferta .b2b-left { flex: 1; }
.pw-oferta .b2b-right { flex: 1; }
.pw-oferta .b2b-tytul {
  font-weight: 700;
  font-size: 30px;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.pw-oferta .b2b-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}
.pw-oferta .b2b-badge {
  display: inline-block;
  background: #F5C400;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pw-oferta .cta-bar {
  background: #1A1A1A;
  border-radius: 6px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  gap: 24px;
}
.pw-oferta .cta-bar h3 {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin: 0 0 4px;
}
.pw-oferta .cta-bar p {
  color: #aaa;
  font-size: 15px;
  margin: 0;
}
.pw-oferta .cta-btn {
  display: inline-block;
  background: #F5C400;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.pw-oferta .cta-btn:hover { background: #FFD633; }

@media (max-width: 768px) {
  .pw-oferta .uslugi-grid { grid-template-columns: 1fr; }
  .pw-oferta .usluga-card.full { grid-column: span 1; }
  .pw-oferta .b2b-box { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .pw-oferta .cta-bar { flex-direction: column; text-align: center; padding: 32px 24px; }
}



.pw-onas .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.pw-onas .intro-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  /* color: #D4A800; */
  margin-bottom: 16px;
}
.pw-onas .intro-tytul {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
  color: #1A1A1A;
  margin-bottom: 24px;
}
.pw-onas .intro-tytul span { color: #F5C400; }
.pw-onas .intro-tekst {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.pw-onas .intro-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
  background: #e8e0d0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pw-onas .intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Wartości */
.pw-onas .wartosci-section {
  background: #1A1A1A;
  border-radius: 6px;
  padding: 56px 64px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pw-onas .wartosci-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5C400;
  margin-bottom: 12px;
}
.pw-onas .wartosci-tytul {
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pw-onas .wartosci-sub {
  font-size: 15px;
  color: #999;
  line-height: 1.65;
  margin: 0;
}
.pw-onas .wartosci-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pw-onas .wartosci-lista li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.pw-onas .wartosci-lista li::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: #F5C400;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Statystyki */
.pw-onas .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  border-radius: 6px;
  overflow: hidden;
}
.pw-onas .stat-box {
  background: #F5F5F5;
  padding: 36px 28px;
  text-align: center;
}
.pw-onas .stat-box:first-child { background: #F5C400; }
.pw-onas .stat-number {
  font-weight: 800;
  font-size: 52px;
  color: #1A1A1A;
  line-height: 1;
  margin-bottom: 6px;
}
.pw-onas .stat-box:first-child .stat-number { color: #1A1A1A; }
.pw-onas .stat-label {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}
.pw-onas .stat-box:first-child .stat-label { color: #333; }

/* CTA */
.pw-onas .cta-bar {
  background: #1A1A1A;
  border-radius: 6px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pw-onas .cta-bar h3 {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin: 0 0 4px;
}
.pw-onas .cta-bar p { color: #aaa; font-size: 15px; margin: 0; }
.pw-onas .cta-btn {
  display: inline-block;
  background: #F5C400;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.pw-onas .cta-btn:hover { background: #FFD633; }

@media (max-width: 768px) {
  .pw-onas .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .pw-onas .intro-img { display: none; }
  .pw-onas .wartosci-section { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .pw-onas .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-onas .cta-bar { flex-direction: column; text-align: center; padding: 32px 24px; }
}